Answer:
Intune is a software that helps windows patching and upgrades. once the computer is connected to the internet/network. Intune will download updates to a particular computer that is targeted.
Explanation:
Solution
Intune is software that provides windows patching by discovering the PC’s connected to the network, pushing latest upgrades to the PC’s and detecting their current patch level.
Intune will make the updates download in the PC targeted when the PC’s are connected to the internet. Once they are downloaded it will wait until the PC gets restarted. If not it will give a popup that updates needs to be downloaded and will provide a timeline like two hours after which the PC by itself will auto restart.
All these can automatically be managed or done by the software. only it is required to be configured in a way that the PC’s should will be updated within 1 day, and Intune will use its algorithm to calculate the restart time and do the rest work on it's own.
Which of the below are examples of control structures?
(1) if
(II) if/else
(III) while
(IV) for
I only
I and II only
III and I only
I, II, III, and IV
Answer: (I) if, (II) if/else, (III) while, (IV) for
D. I, II, III, and IV
May I have brainliest please?
Differences between the function and structure of computer architecture
Answer:
The primary difference between a computer structure and a computer function is that the computer structure defines the overall look of the system while the function is used to define how the computer system works in a practical environment.
The computer structure primarily deals with the hardware components, while the computer function deal with computer software.
A computer structure is a mechanical component such as a hard disk. A computer function is an action such as processing data.
Explanation:
if it helped u please mark me a brainliest :))
Drag each tile to the correct box. Match each decimal number to an equivalent number in a different number system. 6910 22810 4210 2710
Explanation:
you can do that with calculator only
You are working for a company that is responsible for determining the winner of a prestigious international event, Men’s Synchronized Swimming. Scoring is done by eleven (11) international judges. They each submit a score in the range from 0 to 100. The highest and lowest scores are not counted. The remaining nine (9) scores are averaged and the median value is also determined. The participating team with the highest average score wins. In case of a tie, the highest median score, among the teams that are tied for first place, determines the winner.
Scoring data is be provided in the form of a text file. The scoring data for each team consists of two lines; the first line contains the team name; the second line contains the eleven (11) scores. You will not know ahead of time how many teams will participant. Your program will:
Prompt the user for the name and location of the scoring data file.
Process the sets of records in the file.
Read and store the team name in a string variable.
Read and store the scores in an array.
Display the team name followed by the complete set of scores on the next line.
Calculate and display to two decimal places the average of the nine qualifying scores, dropping the lowest and highest scores.
Determine and display the median value among the qualifying scores.
Display the count of the number of participating teams.
Display the winning team name and their average score. Indicate if they won by breaking a tie with a higher median score value.
A sample data file has been provided to allow you to test your program before submitting your work. Records in the sample data file look like this:
Sea Turtles
11 34 76 58 32 98 43.5 87 43 23 22
Tiger Sharks
85 55 10 99 35 5 65 75 8 95 22
The Angry Piranhas
30 10 80 0 100 40 60 50 20 90 70
The average score for the Sea Turtles was 46.5. The Angry Piranhas and the Tiger Sharks both had an average score of 50.0. The tiger sharks had a median value of 55.0, making them the winners of the competition.
You will define and use at least one function in your solution. As a suggestion, you should consider calling a function that sorts the array of judge’s score values into ascending order (lowest to highest). The advantage of doing this is that after being sorted, the lowest value is the first entry in your array and the highest value is the last entry in your array.
The average or arithmetic mean is a measure of central tendency. It is a single value that is intended to represent the collection of values. For this problem, you will only use nine of the values to determine the average. You will not include the highest score and the lowest score.
The median is another measure of central tendency. The median is often referred to as the middle value. In a set of values, half the values are less than the median and the other half are greater than the median. In a sorted array of five elements, the median is the third element. There are two values that are less then it and there are two values that are greater than it. In a sorted array of six values, the median is the simple average of the third and fourth values. In some cases, the median is a better representative value than the average.
You are encouraged to read the article entitled "Mixing getline with cin".
To receive full credit for this programming assignment, you must:
Use the correct file name.
Submit a program that executes correctly.
Interact effectively with the user.
Grading Guideline:
Correctly name the file submitted.
Create a comment containing the student’s full name.
Document the program with other meaningful comments.
Prompt the user for a file name and location.
Open, read, and process all the data in the input file.
Store the judge’s scores in an array.
Correctly display the team name and all scores.
Calculate and display the average score correctly.
Calculate and display the median score correctly.
Correctly count and display the number of competing teams.
Correctly determine and display the winning team and score.
Answer:
my sql
Explanation:
try with mysql
and database build
why ROM is called non volatila Memory?
Answer:
Explanation:
ROMs that are read only memory are called non volatile because all of the data that are inside it happens to not get erased after shutting down the system or computer and starting it all over again. The opposite is this phenomenon is RAM. In RAM, they are being called volatile because all of the data that are inside it happens to get erased once shutting down of the system or computer occurs and it is being restarted.
This is telling us that ROM irrespective, stores data while it is on and also while it is off, it doesn't matter. It never forgets data, unless of course, in a situation whereby it is erased.
Volatile memory stores data as long as it is powered. ROM, which stands for read-only memory, is called non-volatile memory because of they do not lose memory when power is removed. Data stored in ROM cannot be electronically modified after the manufacture of the memory device.
HOPE IT HELPS
PLEASE MARK ME BRAINLIEST ☺️
Write a split_check function that returns the amount that each diner must pay to cover the cost of the meal. The function has 4 parameters: bill: The amount of the bill. people: The number of diners to split the bill between. tax_percentage: The extra tax percentage to add to the bill. tip_percentage: The extra tip percentage to add to the bill.
Answer:
def split_check(bill, people, tax_percentage, tip_percentage):
tax = bill * tax_percentage
tip = bill * tip_percentage
total_bill = bill + tax + tip
return total_bill / people
Explanation:
Create a function called split_check that takes four parameters, bill, people, tax_percentage, and tip_percentage
Inside the function, calculate the tax, multiply bill by tax_percentage. Calculate the tip, multiply bill by tip_percentage. Calculate the total_bill, sum bill, tax, and tip. Finally, return the total_bill / people which gives the amount each diner needs to pay.
While multiple objects of the same class can exist, in a given program there can be only one version of each class. a) True b) False
Answer:
A) True
Explanation:
In which category would Jamal most likely find an appropriate template for his report?
Designs
Diagrams
Education
Personal
Answer:
Education
Explanation:
you want to ensure that a query recordset is read-only and cannot modify the underlying data tables it references. How can you do that?
To guarantee that a query's recordset cannot make any changes to the original data tables, the "read-only" attribute can be assigned to the query.
What is the effective method?An effective method to accomplish this is to utilize the "SELECT" statement along with the "FOR READ ONLY" condition. The instruction signifies to the database engine that the query's sole purpose is to retrieve data and not alter it.
The SQL Code
SELECT column1, column2, ...
FROM table1
WHERE condition
FOR READ ONLY;
Read more about SQL here:
https://brainly.com/question/25694408
#SPJ1
what is the main difference between boot sector virus and program virus.
Write the SQL to create a Product table with the following columns:
ID - Unsigned integer
Name - Variable-length string with maximum 40 characters
ProductType - Fixed-length string with maximum 3 characters
OriginDate - Year, month, and day
Weight - Decimal number with six significant digits and one digit after the decimal point
Place your CREATE TABLE statement before the INSERT and SELECT statements. Run your solution and verify the result table contains the three inserted rows.
-- Write your CREATE TABLE statement here:
INSERT INTO Product (ID, Name, ProductType, OriginDate, Weight) VALUES
(100, 'Tricorder', 'COM', '2020-08-11', 2.4),
(200, 'Food replicator', 'FOD', '2020-09-21', 54.2),
(300, 'Cloaking device', 'SPA', '2019-02-04', 177.9);
SELECT *
FROM Product;
The SQL to create a Product table with the following columns is written below.
What is SQL?Structured Query Language (SQL) is a computer language that is used to manage relational databases and execute various operations on the data contained inside them.
Error 1 : comma was not applied after Date column
Error 2 : Unsigned keyword should be after integer
Product Type CHA-R(3),
originate DATE,
Weight DECIMAL (6, 1)
Product Type CHA-R(3),
originate DATE,
Weight DECIMAL (6, 1)
Query 1 :
CREATE TABLE Product(
ID int,
);
Query 2 :
CREATE TABLE Product(
ID in-t unsigned,
Therefore, the errors and queries in SQL are written above.
To learn more about SQL, refer to the link:
https://brainly.com/question/24180759
#SPJ1
Which of these ports listed is the fastest? IEEE 1394 USB2.0 FIREWIRE ESATA
The port which is the fastest is ESATA.
What is ESATA?eSATA can be described as the SATA connector which can be access from outside the computer and it help to give the necessary signal connection that is needed for external storage devices.
The eSATA serves as a version of the eSATA port which is been regarded as the External SATA port, therefore, The port which is the fastest is ESATA.
Read more on the port here:
https://brainly.com/question/16397886
#SPJ1
The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn−1 + Fn−2 for n > 1.
In other words, each number is the sum of the two previous numbers in the sequence. Thus the first several Fibonacci numbers are 1, 1, 2, 3, 5, and 8. Interestingly, certain population growth rates are characterized by the Fibonacci numbers. If a population has no deaths, then the series gives the size of the poulation after each time period.
Assume that a population of green crud grows at a rate described by the Fibonacci numbers and has a time period of 5 days. Hence, if a green crud population starts out as 10 pounds of crud, then after 5 days, there is still 10 pounds of crud; in 10 days, there is 20 pounds of crud; in 15 days, 30 pounds of crud; in 20 days, 50 pounds of crud, and so on.
Write a program that takes both the initial size of a green crud population (in pounds) and some number of days as input from the keyboard, and computes from that information the size of the population (in pounds) after the specified number of days. Assume that the population size is the same for four days and then increases every fifth day. The program must allow the user to repeat this calculation as long as desired.
Please note that zero is a valid number of days for the crud to grow in which case it would remain at its initial value.
You should make good use of functions to make your code easy to read. Please use at least one user-defined function (besides the clearKeyboardBuffer function) to write your program.
basically I've done all the steps required except the equation in how to get the final population after a certain period of time (days). if someone would help me with this, I'll really appreciate it.
In Python, it can be expressed as follows. Using the recursive function type, we find the sum of the previous term and the sum of the two previous terms.
Python:x=int(input("Initial size: "))
y=int(input("Enter days: "))
mod=int(y/5)-1
def calc(n):
gen_term = [x,2*x]
for i in range(2, n+1):
gen_term.append(gen_term[i-1] + gen_term[i-2])
return gen_term[n]
if(mod==0):
print("After",y,"days, the population is",x)
else:
print("After",y,"days, the population is",calc(mod))
If you were going to use a picture or video of a person, should you get their permission to use their likeness before including it on your Website? Why or why not?
Answer:
Yes
Explanation:
You should always ask the person your using for the video/photo before posting it on your website. It might cause some ruckus if you don't and if you don't inform the person and they find the website they can sue you for using the picture/video
What are some characteristics of pseudocode? Check all that apply. Pseudocode is an informal way of expressing ideas and algorithms during the development process. Pseudocode uses simple and concise words and symbols to represent the different operations of the code. Pseudocode can be used to express both complex and simple processes. Pseudocode can be executed as a software program.
Answer:
all but the last one
The pseudocode have the characteristics of expressing ideas and algorithms in the developmental process, uses simple and concise words for varying code operations, and express both complex and simple processes. Thus, options A, B, and C are correct.
What is a pseudocode?A pseudocode in computer science can be given as the language description of the steps that are used in algorithm. They are comprised with the text based and are straightforward.
The characteristics of pseudocode are:
Pseudocode is an informal way of expressing ideas and algorithms during the development process.Pseudocode uses simple and concise words and symbols to represent the different operations of the code.Pseudocode can be used to express both complex and simple processesThus, options A, B, and C are correct.
Learn more about pseudocode, here:
https://brainly.com/question/13208346
#SPJ2
This code is giving no error but is not printing my "goal." Which is to print a year of highschool when a number is input. Instead the code is only printing "Not in High School" every time, every number. Can someone please explain to me what I did wrong?
grade_number = input("What year of high school are you in? ")
if grade_number == 9:
print("Freshman")
elif grade_number == 10:
print("Sophomore")
elif grade_number == 11:
print("Junior")
elif grade_number == 12:
print("Senior")
else:
print("Not in High School")
Answer:
You must convert your input to an integer before the if statements.
Explanation:
input() returns a string, which should be converted to your desired type, OR you should compare against string literals.
See below for working code.
Which term means the push that makes electrons move in a wire?
Answer:
I think it is electromotive force, EMF, or voltage (most likely voltage)
Explanation:
If anybody goes through K through 12 can you please help me by putting the code for the 2.3.4 word definitions for coding
Answer: if it helps there is a tutorial on YT that gives the answers if you just search 2.3.4 word definitions
Explanation:
The operating system called Windows 7 is typically used for _____ a. Laptop computers b. Super computer c. All of the options d. Desktop computers
Answer:
all of these
Explanation:
,,,,,,,,,,,,,,,,
The operating system called Windows 7 is typically used for C All of these.
An operating system simply means a collection of programs that is vital for coordinating the operations of the computer software and hardware.
It should be noted that the operating system called Windows 7 is typically used for laptop computers, super computer, and desktop computers.
Therefore, the correct option is All of these.
Read related link on:
https://brainly.com/question/17252990
1. Trust can be built in a relationship if:
A. There is transparency, both parties feel listened to and understood, communication is
approached with a "win-win" mentality, and all parties assume their due responsibility for
problems and issues
B. There is transparency, and it is established as soon as possible which party is right
C. O All parties feel heard and understood, and the dominant party gets their way
D. O Communication is approached with a "win-win" mentality, as long as all parties get their
point across
Answer:
A
Explanation:
because if both parties feel safe communicating and feel understood by the other party they feel safe trusting the other person and it develops a trust worthy relationship
Trust can be built in a relationship if there is transparency, both parties feel listened to and understood, communication is approached with a "win-win" mentality, and all parties assume their due responsibility for problems and issues. Thus, option (a) is correct.
What is relationship?
The term relationship was to maintain of the person. The relationship was the measure of the one parties to the another parties. The relationship was the included of the two members. The friends and the family are the included of the relationship. The relationship was the necessary.
The two participants in the relationship-building process were transparent with one another. They experience being heard and understood. They are explained to the people who are approached with a "win-win" perspective. All of the parties involved's concerns and difficulties fall under their proper jurisdiction.
Therefore, option (a) is correct.
Learn more about on relationship, here:
https://brainly.com/question/23752761
#SPJ2
Draw a flowchart and write the pseudo code that describes how to prepare a cup of coffee
The pseudo-code for preparing a cup of coffee is given below:
The Pseudocode1. Gather materials: coffee beans, grinder, coffee maker, water, mug
2. Grind coffee beans to desired consistency
3. Fill coffee maker with water to desired amount
4. Place ground coffee into coffee maker
5. Turn on coffee maker
6. Wait for brewing to finish
7. Pour brewed coffee into mug
8. Add desired amount of cream and sugar, if desired
9. Enjoy your cup of coffee!
Read more about pseudocode here:
https://brainly.com/question/24953880
#SPJ1
Write a program that prompts the user to enter a positive integer and displays all its smallest factors in decreasing order.
Answer:
<fact>[ZRjKt9sw6V(gh6E)ehNM3]<zip>
Explanation:
Use the drop-down menus to complete statements about how to use the database documenter
options for 2: Home crate external data database tools
options for 3: reports analyze relationships documentation
options for 5: end finish ok run
To use the database documenter, follow these steps -
2: Select "Database Tools" from the dropdown menu.3: Choose "Analyze" from the dropdown menu.5: Click on "OK" to run the documenter and generate the desired reports and documentation.How is this so?This is the suggested sequence of steps to use the database documenter based on the given options.
By selecting "Database Tools" (2), choosing "Analyze" (3), and clicking on "OK" (5), you can initiate the documenter and generate the desired reports and documentation. Following these steps will help you utilize the database documenter effectively and efficiently.
Learn more about database documenter at:
https://brainly.com/question/31450253
#SPJ1
In a balanced budget, the amount is the amount
In a balanced budget, the Income amount is same as the expense amount.
What is a balanced budget?A balanced budget is one in which the revenues match the expenditures. As a result, neither a fiscal deficit nor a fiscal surplus exist. In general, it is a budget that does not have a budget deficit but may have a budget surplus.
Planning a balanced budget assists governments in avoiding excessive spending and focuses cash on regions and services that are most in need.
Hence the above statement is correct.
Learn more about Budget:
https://brainly.com/question/15683430
#SPJ1
Which of the following behaviors is considered ethical?
copying another user’s password without permission
hacking software to test and improve its efficiency
using a limited access public computer to watch movies
deleting other user’s files from a public computer
Answer:
using a limited access public computer to watch movies
Explanation:
Cause it doesn't involve you performing any illegal actions.
Answer:
C. using a limited access public computer to watch movies
Explanation:
IM A DIFFERENT BREEED!!
PLUS NOTHING ELSE MAKES SENSE LOL!
Which of the following files is an Excel file?
O A. budget.pdf
O B. budget.mp4
O C. budget.xlsx
O D. budget.mp3
O E. budget.docx
OF. budget.jpeg
O G. budget.pptx
The total number of AC cycles completed in one second is the current’s A.timing B.phase
C.frequency
D. Alterations
The total number of AC cycles completed in one second is referred to as the current's frequency. Therefore, the correct answer is frequency. (option c)
Define AC current: Explain that AC (alternating current) is a type of electrical current in which the direction of the electric charge periodically changes, oscillating back and forth.
Understand cycles: Describe that a cycle represents one complete oscillation of the AC waveform, starting from zero, reaching a positive peak, returning to zero, and then reaching a negative peak.
Introduce frequency: Define frequency as the measurement of how often a cycle is completed in a given time period, specifically, the number of cycles completed in one second.
Unit of measurement: Explain that the unit of measurement for frequency is hertz (Hz), named after Heinrich Hertz, a German physicist. One hertz represents one cycle per second.
Relate frequency to AC current: Clarify that the total number of AC cycles completed in one second is directly related to the frequency of the AC current.
Importance of frequency: Discuss the significance of frequency in electrical engineering and power systems. Mention that it affects the behavior of electrical devices, the design of power transmission systems, and the synchronization of different AC sources.
Frequency measurement: Explain that specialized instruments like frequency meters or digital multimeters with frequency measurement capabilities are used to accurately measure the frequency of an AC current.
Emphasize the correct answer: Reiterate that the current's frequency represents the total number of AC cycles completed in one second and is the appropriate choice from the given options.
By understanding the relationship between AC cycles and frequency, we can recognize that the total number of AC cycles completed in one second is referred to as the current's frequency. This knowledge is crucial for various aspects of electrical engineering and power systems. Therefore, the correct answer is frequency. (option c)
For more such questions on AC cycles, click on:
https://brainly.com/question/15850980
#SPJ8
Using the Impress program, you can add multimedia files, including audio, image, and video files, to the presentation
by using
the Insert menu.
the Media menu.
the Edit menu.
the Add menu.
Mark this and return
Answer:
A. The Insert Menu
Explanation:
:)
Answer:
Edit menu
Explanation:
Write a method called min that takes three integers as parameters and returns the smallest of the three values, such that a call of min(3, -2, 7) would return -2, and a call of min(19, 27, 6) would return 6. Use Math.min to write your solution.
Answer:
public class Main
{
public static void main(String[] args) {
System.out.println(min(3, -2, 7));
}
public static int min(int n1, int n2, int n3){
int smallest = Math.min(Math.min(n1, n2), n3);
return smallest;
}
}
Explanation:
*The code is in Java.
Create a method named min that takes three parameters, n1, n2, and n3
Inside the method:
Call the method Math.min() to find the smallest among n1 and n2. Then, pass the result of this method to Math.min() again with n3 to find the min among three of them and return it. Note that Math.min() returns the smallest number among two parameters.
In the main:
Call the method with parameters given in the example and print the result
Methods are named program statements that are executed when called/invoked.
The method in Python, where comments are used to explain each line is as follows:
#This defines the method
def mmin(a,b,c):
#This calculates the smallest of the three values using math.min
minNum = min(a,b,c)
#This prints the smallest value
return minNum
Read more about methods at:
https://brainly.com/question/14284563
1) What is the first compartment of the 3 Sink Setup filled with?
O Multi-purpose detergent solution and water at least 110°F/37°C
O Baking soda solution and water at least 110°F/37°C
Isopropyl alcohol solution and water at least 110°F/37°C
Sanitizer solution and water at least 110°F/37°
The first compartment of the 3 Sink Setup is typically filled with option D: a Sanitizer solution and water at least 110°F/37°
What is the first compartment of the 3 Sink Setup filled with?The first part of the 3 Sink Setup is for cleaning and getting rid of germs. People often call it the spot where you sanitize things. In this compartment, we mix a special cleaning liquid with water to make a sanitizer solution. We suggest keeping the water in this area at least as warm as 110°F/37°C.
Sanitizer is used to get rid of germs on things like dishes and kitchen surfaces. It stops germs from spreading and makes sure food is safe.
Learn more about Sanitizer solution from
https://brainly.com/question/29551400
#SPJ1