Answer: both B. and D.
Explanation:
Answer:
The answer is D) Learn the consequences of speeding
Explanation:
I took the quiz and got this one right.
Design a program that asks the User to enter a series of 5 numbers. The program should store the numbers in a list then display the following data: 1. The lowest number in the list 2. The highest number in the list 3. The total of the numbers in the list 4. The average of the numbers in the list
Answer:
The program in Python is as follows:
numbers = []
total = 0
for i in range(5):
num = float(input(": "))
numbers.append(num)
total+=num
print("Lowest: ",min(numbers))
print("Highest: ",max(numbers))
print("Total: ",total)
print("Average: ",total/5)
Explanation:
The program uses list to answer the question
This initializes an empty list
numbers = []
This initializes total to 0
total = 0
The following loop is repeated 5 times
for i in range(5):
This gets each input
num = float(input(": "))
This appends each input to the list
numbers.append(num)
This adds up each input
total+=num
This prints the lowest using min() function
print("Lowest: ",min(numbers))
This prints the highest using max() function
print("Highest: ",max(numbers))
This prints the total
print("Total: ",total)
This calculates and prints the average
print("Average: ",total/5)
Help me with this ……..
Answer:
So is this talking about this pic?
Select the correct answer.
Hari has purchased a new computer. Which software will start running the moment he turns on his system?
O A. word processor
О в. disk cleaner
O C. operating system
O D. data recovery utility
Answer:
I think operating system
Explanation:
C++ Integer variables totalFlowers and numFlowers are read from input. A bouquet consists of numFlowers flowers, and the number of flowers is given by totalFlowers. Assign remainingFlowers with the remaining flowers after making as many bouquets as possible.
Ex: If the input is 13 4, then the output is: Remaining flowers: 1
Answer:
To assign remainingFlowers with the remaining flowers after making as many bouquets as possible, you can use the following code:
remainingFlowers = numFlowers - totalFlowers;
Explanation:
Given the list my_list containing integers, create a list consisting of all the even elements of my_list. Associate the new list with the variable new_list.
In python:
new_list = [x for x in my_list if x % 2 == 0]
The list consisting of all the even elements of my_list is given in explanation part.
What is list?A list is a series of different variables that are all gathered under one common name. You can specify a single variable x instead of developing a program with numerous variables like x0, x1, x2, etc.
Lists are used to group objects together that typically include components from several data types. Another essential element that collects several instances of the same data type is an array.
Another programming method that will be helpful to our algorithm development is the use of lists because many algorithms need the manipulation of collections of data.
Similar to a variable, a list which is also referred to as an array that is a tool for storing data.
It can be defined as:
new_list = []
for i in my_list:
if i % 2 == 0:
new_list.append(i)
Thus, this can be the code for the given scenario.
For more details regarding programming, visit:
https://brainly.com/question/11023419
#SPJ5
You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.
Answer:
Explanation:
Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)
static void sortingMethod(int arr[], int n)
{
int x, y, temp;
boolean swapped;
for (x = 0; x < n - 1; x++)
{
swapped = false;
for (y = 0; y < n - x - 1; y++)
{
if (arr[y] > arr[y + 1])
{
temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
swapped = true;
}
}
if (swapped == false)
break;
}
}
What will be the different if the syringes and tube are filled with air instead of water?Explain your answer
Answer:
If the syringes and tubes are filled with air instead of water, the difference would be mainly due to the difference in the properties of air and water. Air is a compressible gas, while water is an incompressible liquid. This would result in a different behavior of the fluid when being pushed through the system.
When the syringe plunger is pushed to force air through the tube, the air molecules will begin to compress, decreasing the distance between them. This will cause an increase in pressure within the tube that can be measured using the pressure gauge. However, this pressure will not remain constant as the air continues to compress, making the measured pressure unreliable.
On the other hand, when the syringe plunger is pushed to force water through the tube, the water molecules will not compress. Therefore, the increase in pressure within the tube will be directly proportional to the force applied to the syringe plunger, resulting in an accurate measurement of pressure.
In summary, if the syringes and tube are filled with air instead of water, the difference would be that the measured pressure would not be reliable due to the compressibility of air.
Planned value:
How is it calculated?
what are two features accessible Through the Windows 10 operating system
Answer:
New Start Menu. Microsoft has brought back the Start Menu. ...
Cortana Integration. ...
Microsoft Edge Web Browser. ...
Virtual Desktops. ...
Universal Apps.
Explanation:
The most recent version of Windows is called Windows 10. One of Microsoft's most widely used operating systems is this one.
What is operating system?The most crucial piece of software that runs on a computer is the operating system.
It controls the memory, operations, software, and hardware of the computer. You can converse with the computer using this method even if you don't understand its language.
Windows 10 is the most recent iteration of the operating system. This is one of Microsoft's most popular operating systems.
The Windows Store is included with Windows 10. There are millions of applications in that. Additionally, Windows 10 has a brand-new notification panel and a fresh user interface.
Thus, these are the features accessible through the Windows 10 operating system.
For more details regarding operating system, visit:
https://brainly.com/question/6689423
#SPJ1
find the volume removed when a circular hole of radiusa < bis bored symmetrically through the center of a sphereof radiusb
The volume removed from a sphere with radius b when a circular hole of radius a is bored through its center is calculated as:\((4/3)*\pi *b^{3} -(4/3)*\pi *a^{3}\).
The volume removed from a sphere when a hole is bored through its center can be calculated using the formula for the volume of a sphere and subtracting the volume of the smaller sphere that represents the hole.
This is the equation for a sphere's volume:
V = \((4/3)*\pi *r^{3}\), where r is the radius of the sphere.
The volume of the smaller sphere (the hole) is calculated in the same way, with its own radius, a.
The final volume removed is the difference between the two:
V_removed = \((4/3)*\pi *b^{3}-(4/3)*\pi *a^{3}\)
where b is the radius of the original sphere, and a is the radius of the circular hole.
Learn more about radius here:
https://brainly.com/question/9936001
#SPJ4
FILL IN THE BLANK. a __ area network is a type of wireless network that works within your immediate surroundings to connect cell phones to headsets, controllers to game systems, and so on.
A personal area network (PAN) is a type of wireless network that works within your immediate surroundings to connect cell phones to headsets, controllers to game systems, and so on.
A personal area network (PAN) is a type of wireless network that provides connectivity between devices in close proximity to each other, typically within a range of 10-meters. PANs are typically used for personal, non-commercial purposes and connect devices such as cell phones, headsets, personal digital assistants (PDAs), game controllers, and other small, portable devices.
PANs typically use low-power, short-range technologies such as Bluetooth, Infrared Data Association (IrDA), or Zigbee to establish connectivity. These technologies allow devices to communicate with each other wirelessly, eliminating the need for cords and cables and making it easier to connect and use the devices.
One of the main benefits of PANs is their simplicity and convenience. They allow you to quickly and easily connect devices in close proximity, eliminating the need for manual configuration or setup. Additionally, they use very low power, making them ideal for use with battery-powered devices.
Overall, PAN are a useful technology for individuals and small groups who need to connect their devices in close proximity for personal, non-commercial purposes.
Learn more about personal area network (PAN) here:
https://brainly.com/question/14704303
#SPJ4
assume your using a three button mouse. to access the short cut menus you would
Credible sites contain___________information,
a.
Accurate
c.
Reliable
b.
Familiar
d.
All of the above
Please select the best answer from the choices provided
A
B
C
D
Answer:
C: Reliable
Explanation:
Credible sites are not always accurate. Credible sites are sites you trust and usually have a resume of being correct.
For example, if you like a news website that you trust and are usually correct, you could say that's a Reliable source.
Credible sites contain "accurate, reliable and familiar" information. this makes the correct answer D: All of the above.
What are Credible sites contain?A Credible sites includes the date of any information, cite the source of the information presented, are well designed and professional.
Some example of credible site are; the site of an university , while a non-credible site is a site that wants to sell you something by sending you repeated email.
A Credible sites are not always accurate
Also, Credible sites are sites you trust and usually have a resume of being correct.
Hence Credible sites contain "accurate, reliable and familiar" information. this makes the correct answer D: All of the above.
Learn more about the similar question;
https://brainly.com/question/3235225
#SPJ2
For our homework we have to listen__ a podcast
Answer:
For our homework we have to listen to a podcast
What are the values that the variable num contains through the iterations of the following for loop? for num in range(2, 9, 2)
The values that has the variable num contains through the iterations of the following for loop for num in range(2, 9, 2) is 2, 4, 6, 8.
What does the word "iteration" mean?The term Iteration is seen or explained as most recent incarnation of the operating system. It is seen also as an iterative or repetitive activity or process, such as. a process in which there is a kind of a repeating of a series of steps leads to results that are progressively closer to the desired outcome.
A loop is seen as a a set of instructions that are repeatedly carried out until a specific condition is met in computer programming.
Typically, a certain action is taken, such as receiving and modifying a piece of data, and then a condition is verified, such as determining whether a counter has reached a predetermined value.
Therefore, The values that has the variable num contains through the iterations of the following for loop for num in range(2, 9, 2) is 2, 4, 6, 8.
Learn more about iterations from
https://brainly.com/question/25754804
#SPJ1
A new, empty workbook that contains three worksheets (sheets).
a.Clear Worksheet
b.Blank Worksheet
c.Standard Worksheet
d.Unformatted Worksheet
A string literal holds what type of data?
text
integers
decimal numbers
numbers
A string literal holds textual data. It represents a sequence of characters enclosed within quotation marks, such as single quotes ('') or double quotes (""). Strings are used to store and manipulate text-based information in programming languages.
How to explain the informationIn programming, a string literal is a specific type of data that represents textual information. It is a sequence of characters, such as letters, numbers, symbols, or spaces, that are enclosed within quotation marks.
String literals can be written using single quotes ('') or double quotes (""). For example:
Single quotes: 'Hello, world!'
Double quotes: "Hello, world!"
The choice between single or double quotes is usually a matter of preference, but it's important to be consistent within your codebase.
String literals can hold any combination of characters, including letters, digits, special characters, and whitespace.
Learn more about data on
https://brainly.com/question/26711803
#SPJ1
In the context of a resume, which of the following statements most effectively features the skill being described?
A: Programming skills
B: Applied programming skills during internship
C: Reprogrammed operating systems during freshman internship
D: Reprogrammed operating systems
Option C, "Reprogrammed operating systems during freshman internship," most effectively features the skill of programming.
Why is option C correct?This statement not only mentions the skill of programming but also specifies the application of the skill and the level of proficiency achieved (i.e., reprogramming operating systems).
This provides more context and detail compared to option A, which is too general, and options B and D, which are less specific and don't provide as much detail about the applicant's level of proficiency.
Read more about resumes here:
https://brainly.com/question/30208587
#SPJ1
in the situation above, what ict trend andy used to connect with his friends and relatives
The ICT trend that Andy can use to connect with his friends and relatives such that they can maintain face-to-face communication is video Conferencing.
What are ICT trends?ICT trends refer to those innovations that allow us to communicate and interact with people on a wide scale. There are different situations that would require a person to use ICT trends for interactions.
If Andy has family and friends abroad and wants to keep in touch with them, video conferencing would give him the desired effect.
Learn more about ICT trends here:
https://brainly.com/question/13724249
#SPJ1
true or false. Two of the main differences between storage and memory is that storage is usually very expensive, but very fast to access.
Answer:
False. in fact, the two main differences would have to be that memory is violate, meaning that data is lost when the power is turned off and also memory is faster to access than storage.
Why do people create web pages?
Answer:
To grab peoples attention
Explanation:
Answer:
People create web pages to share their passion for whatever they do. People create them to sell buisness products too.
Explanation:
I hoped this helped.
Design and implement an application that reads a string from the user then determines and prints how many of eachlowercase vowel (a,e,i,o,and u) appear in the entire string.
Explain the paging concept and main disadvantages of pipelined
approaches? Compare the superscalar and super pipelined approaches
with block diagram?
Answer:
PAGINACIÓN En la gestión de memoria con intercambio, cuando ... Debido a que es posible separar los módulos, se hace más fácil la modificación de los mismos. ... Ventajas y Desventajas de la segmentación paginada
Explanation:
What enables image processing, speech recognition & complex gameplay in ai
Deep learning, a subset of artificial intelligence, enables image processing, speech recognition, and complex gameplay through its ability to learn and extract meaningful patterns from large amounts of data.
Image processing, speech recognition, and complex gameplay in AI are enabled by various underlying technologies and techniques.
Image Processing: Convolutional Neural Networks (CNNs) are commonly used in AI for image processing tasks. These networks are trained on vast amounts of labeled images, allowing them to learn features and patterns present in images and perform tasks like object detection, image classification, and image generation.Speech Recognition: Recurrent Neural Networks (RNNs) and their variants, such as Long Short-Term Memory (LSTM) networks, are often employed for speech recognition. These networks can process sequential data, making them suitable for converting audio signals into text by modeling the temporal dependencies in speech.Complex Gameplay: Reinforcement Learning (RL) algorithms, combined with deep neural networks, enable AI agents to learn and improve their gameplay in complex environments. Through trial and error, RL agents receive rewards or penalties based on their actions, allowing them to optimize strategies and achieve high levels of performance in games.By leveraging these technologies, AI systems can achieve impressive capabilities in image processing, speech recognition, and gameplay, enabling a wide range of applications across various domains.
For more such question on artificial intelligence
https://brainly.com/question/30073417
#SPJ8
Select the examples of common Arts, A/V Technology, and Communication employers. Check all that apply.
publications
o telecommunications companies
O high schools
the government
O movie studios
car companies
O television networks
Following are the calculation to the given question:
The air traffic control computer that air traffic controllers are using to track airplanes is known as common art. The software system is used to automate the air traffic controller's job by meaningfully correlating all various radar and person inputs.Audio/Video Technologies is concerned with the presentation of audio, video, or data to people in a range of locations such as board rooms, hotels, conference centers, classrooms, theme parks, stadiums, or museums. It enables communication workers to use their ideas and talents just in the workplace.Employee communications are frequently characterized as the information exchange and thoughts between being an organization's management and staff, or vise - versa.Therefore, the final choices are " publications, telecommunications companies,movie studios, and television networks".
Learn more:
brainly.com/question/18649296
Answer:
1,2,5, and 7
Explanation: I just did this instruction assignment
You are a knowledge engineer and have been assigned the task of developing a knowledge base for an expert system to advise on mortgage loan applications. What are some sample questions you would ask the loan manager at a bank?
As a knowledge engineer, it should be noted that some of the questions that should be asked include:
What do you expect in the loan application process?How is the loan going to be processed?What do you expect from the applicant to fund the loan?A knowledge engineer simply means an engineer that's engaged in the science of building advanced logic into the computer systems.
Since the knowledge engineer has been assigned the task of developing a knowledge base for an expert system to advise on mortgage loan applications, he should asks questions that will be vital for the loan process.
Learn more about engineers on:
https://brainly.com/question/4231170
Fiona is creating a presentation with PowerPoint Online about how pencils are made. She would like to type an explanation about each slide to remind her what she wants to say when she is presenting. How can Fiona do this? Put everything she wants to say on the slide in her presentation. Remove the bullet points and type a paragraph on the slide for her audience to read. Select Add Notes under the slide she wants to type an explanation for. Select the New Note command in the Insert ribbon.
WHO EVER GETS THE ANSWER RIGHT WILL GET BRAINLYEST
Answer:
The answer is A
Explanation:
i was doing the test and one i used A it was correct
Fiona can type an explanation about each slide to remind her what she wants to say when she is presenting by: A. Put everything she wants to say on the slide in her presentation.
What is slide view?Slide view is also referred to as Normal view and it can be defined as the main working window of a presentation when using Microsoft PowerPoint.
A presentation application is a type of computer application which is designed and developed to avail its end users an ability to create various slides that contains both textual and multimedia information, which are typically used during a presentation.
In conclusion, we can reasonably infer that Fiona should place everything she wants to say on the slide in her presentation.
Read more on slides and Master view here: brainly.com/question/25931136
#SPJ6
FELLING GENEROUS GIVING AWAY POINTS:)
Who plays Lol btw (league of legends)
ADD me ign : Davidoxkiller (euw server)
Answer:
thanksssssssss
Use the drop-down menus to explain what happens when a manager assigns a task in Outlook.
1. Managers can assign tasks to other users within_______ .
2. Once the task is assigned, Outlook__________ the assignment to that user.
3. The user must_______ the task to have it placed in their_________ .
Answer:
1. an organization
2. emails
3. accept
4. to-do list
Explanation: edge
Answer:Use the drop-down menus to complete statements about assigning tasks in Outlook.
A Task Request form is an interactive way to assign tasks to
✔ Outlook users
and report updates on the status of an assigned task.
An assigned task sends
✔ an email
request for the user to accept or decline and sends
✔ an automated response message
to the assigner.
Explanation:
Which one of the following is NOT advisable when viewing online information?
• Check the credibility and qualifications of the author/publisher
• Evaluate the credibility of the website as a whole
• Accept information that has not been updated for several years
• Check all references to ensure the sources used are valid
Answer:
Accept information that has not been updated for several years
This is because if the info is from several years, the same may lack info on the article or exempt.
Explanation:
• Check the credibility and qualifications of the author/publisher
• Evaluate the credibility of the website as a whole
•Accept information that has not been updated for several years
• Check all references to ensure the sources used are valid