Question: 1
A special kind of firmware that runs programs strictly to start up the computer is called the:
motherboard
BIOS
CPU
GPU

Answers

Answer 1

Answer:

BIOS, it is the only type of firmware that is there.


Related Questions

Order the steps for accessing the junk email options in Outlook 2016
Select Junk Email Options
Click the Junk button
Select a message
Choose one of the protection levels
Locate the Delete group on the ribbon​

Answers

Answer:

To access the the junk email options in Outlook 2016, follow the following steps.

1. Click the Junk Button

This will take you to the Junk messages that you have.

2. Select a message

Select a junk message from the list.

3. Locate the Delete group on the ribbon

The Junk email options is located in the 'Delete' group on the ribbon in the Home tab.

4. Select Junk Email Options

Click on the Junk email options button and a popup window will appear.

5. Choose one of the protection levels

Select the protection level you want from the various options listed including low, high, automatic etc.

Answer:

select a message, locate the Delete group on the ribbon, click the junk button, select junk email options, choose one of the protection levels.

Explanation:

Which is better, in most situations, a bumper switch or a limit switch, and why?

Answers

Answer:

limit switch because why not

Explanation:

Can someone help me?

Answers

the one you have selected!! good job (:

what does this mean??

Answers

Answer:??????????????

Explanation:

Answer:

what the heck maybe you have to call apple

Explanation:

Write an algorithm for a program which inputs the lengths a, b and c of the three sides of a triangle. The program then determines whether the triangle is right-angled and prints out a message to say whether or not the triangle is right angled. You may assume that a is the longest side.

Answers

Answer:

Algorithm:

Step 1: Start

Step 2: Declare variables a,b,c

Step 3: Input a,b,c

Step 4: If a^2 == b^2 + c^2

                  Display "The triangle is right angled"

            Else

                  Display "The triangle is not right angled"

Step 5: Stop

Explanation:

A triangle is right angled if the square of the largest side equals the sum of the square of the other two sides

The algorithm will be based on the above analysis.

This indicated the start of the algorithm

Step 1: Start

This declares required variables

Step 2: Declare variables a,b,c

This gets values for the declared variables

Step 3: Input a,b,c

This checks for the condition to determine right angled triangle

Step 4: If a^2 == b^2 + c^2

If true, this message that states the triangle is right angled is printed

                  Display "The triangle is right angled"

If otherwise

            Else

This message that states the triangle is not right angled is printed

                  Display "The triangle is not right angled"

This indicates the end of the algorithm

Step 5: Stop

The algorithm when implemented in Python is as follows:

a = float(input("a: "))

b = float(input("b: "))

c = float(input("c: "))

if a**2 == b**2 + c**2:

   print("The triangle is right angled")

else:

   print("The triangle is not right angled")

It follows the same explanation as the algorithm

the contents in cells are A1 through A6 are 6,3,4,7,9 and 7. What function would return the answer 6?​

Answers

Answer:

The formula =AVERAGE(A1:A6) would return the average of those numbers which is '6'.

Explanation:

The content in cells is A1 through A6 are 6,3,4,7,9 and 7.

As the average of 6,3,4,7,9 and 7 is 6.

If the range A1:A6 contains numbers, the formula =AVERAGE(A1:A6) would return the average of those numbers.

Therefore, the formula =AVERAGE(A1:A6) would return the average of those numbers which is '6'.

The complete process for learning through repetition is to read, write, say, rest and revisit the information. Please select the best answer from the choices provided T F

Answers

Answer:

True.

Explanation:

The complete process for learning through repetition is to read, write, say, rest and revisit the information.

This ultimately implies that, when an individual indulge in learning through repetition, he or she would is strengthening the single memory trace and as such enhancing the learning process.

Hence, learning through repetition such as reading, writing, saying, resting and revisiting the information is very effective because it engages and activates the visual, auditory, tactile and kinesthetic neural pathways to the brain.

Additionally, it is advisable to wait for about ten (10) minutes in between the repetition process when learning through repetition.

Answer:

True

Explanation:

Just took the quiz.

Do you know how to change your grades on a printer???????????

Answers

Answer:

To change ur grade make sure to do it on the website first by right clicking your mouse and clicking inspect element and once done changing x out and it will save

Explanation:

In 3 sentence explain what is a spreadsheets.

Answers

Answer:

A spreadsheet is a computer application for organization, analysis and storage of data in tabular form. Spreadsheets were developed as computerized analogs of paper accounting worksheets. The program operates on data entered in cells of a table.

Hope this helped, have a good day

Choose the term that makes the sentence true.

Distros are used to distribute different versions of the _______ operating system.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer is Linux.

So, the complete sentence would be:

Distros are used to distribute different versions of the Linux operating system.

The distros are the distribution of the different versions of the Linux operating system. Unlike Windows operating system, distros developed by different software collection that is based upon Linux kernel.

Such as Ubuntu is a distro of the Linux operating system. Linux user usually downloads Linux distro operating system for their systems such as ubuntu etc.

Answer:

Linux.

Explanation:

What is GIGO ?
plz answer me​

Answers

Answer:

Garbage in, garbage out

Explanation:

In computer science, garbage in, garbage out is the concept that flawed, or nonsense input data produces nonsense output or garbage

The meaning of docile can be determined by the... context clue. synonym atonym or explanation

Answers

Answer:

Synonym

Explanation:

I'm pretty sure it's either synonym or explanation, but if there isn't an explanation, it's almost always synonym... so... synonym is correct.

Answer:

it is explanation

Explanation:

trust me

what important advice to include about spyware, viruses and other types of malware

Answers

Answer:

You should probably include the fact that most of these things will disguise themselves as fake downloads and that will most of the time claim to allow you to download something that costs money for free.

Explanation:

thats all i could come up with

The best antivirus that you need to stay safe from viruses, malware, and spyware is just common sense. Don't click suspicious links to places you don't know. Get a good antivirus. Don't click links with weird names at the end like .co or .it unless you are sure it is a safe website. Don't download weird stuff. Common sense my guys!

if i need help do i just type it here?

Answers

Answer:

yea you just ask your question and hopefully, someone will answer it like i just did haha

Explanation:

Yeah don’t worry you just ask a question and someone responds :)

The Quick Access tool bar allows you to customize the actions or commands you frequently use.

True
False

Answers

I believe its true.

PLEASE HURRY!!
Look at the image below

Answers

Answer:

Second part:

answer = multiply(8, 2)

First part:

def multiply(numA, numB):

 return numA * numB

Third part:

print(answer)

Explanation:

When creating a function, we always start with def function_name(): so the code for the first line is:

def multiply(numA, numB):

 return numA * numB ( * symbol refers to multiplication)

We are now left with two pieces of code: answer = multiply(8, 2) and print(answer). Since we need to always define a variable before using it, answer = multiply(8, 2) will come before print(answer).

Resulting Code:

def multiply(numA, numB):  <- first part

 return numA * numB

answer = multiply(8, 2)  <- second part

print(answer)  <- third part

Hope this helps :)

a new column is created in table by pressing tab key​

Answers

That is correct
Explanation:

who invite computer ?​

Answers

Answer:

Charles Babbage, an English mechanical engineer and polymath, originated the concept of a programmable computer. Considered the "father of the computer", he conceptualized and invented the first mechanical computer in the early 19th century.

If you meant who ‘invented’ computers, it was Charles Babbage.
Hope this helps!

Which online article citation is correctly formatted according to MLA standards?

A) Oh, Inae. "Dude Who Fell Asleep During Yankees Game Sung MLB, ESPN For $10 Million." The Hillington Post.
The Huffington Post.com, 12 July 2014. Web. 7 July 2014.

B) Oh, Inae. "Dude Who Fell Asleep During Yankees Game Suing MLB, ESPN For S10 Million," The Huthington Post, 7
July 2014. Web. 12 July 2014
C) Oh, Inae. "Dude Who Fel Asleep During Yankees Game Suing MLB, ESPN For $10 Million." The Huffington Post
The Huffington Post.com. 7 July 2014. Web. 12 July 2014.

D) "Dude Who Fell Asleep During Yankees Game Suing MLB, ESPN For $10 Million" The Huffington Post. The
Huffington Post.com, 7 July 2014. Web. 12 July 2014

Answers

Answer:

A is the answer

Explanation:

Hope this helps!! Please consider marking brainliest!!!

Answer: Its C

Explanation:

Sorry Im late :/

what is mainframe computer​

Answers

Answer:

Explanation:

it's a computer that is used by large companies for applications. For example, a census taker might use a mainframe computer. It's mainly used for bulk data processing .

- What is a good strategy for making sure that you don't participate in cyber bullying?
Ignore the rules and expectations of any online community.
Look out for groupthink and try to avoid it wherever you can.
Always side with the least popular person or opinion in an argument.
Behave exactly as you would in real life.

Answers

Answer:

Look out for groupthink and try to avoid it wherever you can

Explanation:

By participating in large groups, bullying may be more likely to occur. These "keyboard warrior" target people that are not agreed with, and the bullying may flower into death threats.

Behaving as you would in real life may not be helpful, as some people are not nice in real life.

Mary Grossman has been selling cupcakes for the past few years. She keeps meticulous record of every cupcake that she has ever made and sold. She has also kept records of customers’ comments on all her cupcakes. These have been entered into a computerized accounting information system that her accountant refers to as a "data warehouse." Mary is considering rebranding her cupcake business and has asked her accountant to identify the top-selling cupcakes for the past few years. Mary wants her accountant to engage in:______.

Answers

Answer:

Data mining

Explanation:

Based on the information given we were told that she is considering the rebranding of her cupcake business in which she asked her accountant to help her identify her top selling cupcakes for the past few years which means Mary want to make use of the large information recorded into the Data warehouse to improve her business.

Hence we can say that she wants her accountant to engage in DATA MINING.

DATA MINING can be defined as the process of making use of information collected or data collected to help know business lapses for the sole aim of improving the business and to help use the data collected to make goods business choices.

Therefore Mary wants her accountant to engage in DATA MINING

WHERE DO I GO TO DO THIS AND WHAT DO I WRITE?????
Write a pseudocode plan for your program.
Write the code for your program.
Test your program. Run it at least three times with different inputs.
Save your program as a .txt file for you cannot upload a .py file.
Evaluate your project using this rubric.
What to Submit
Submit the .txt file holding your program.

Answers

You can just look up "python ide online" on google and paste this code:

n = -1

count = 0

while n < 0:

   n = int(input("We're checking to see if a number is prime or not! Enter a positive number: "))

if n % 2 == 0:

   if n == 2:

       print("{} is a prime number".format(n))

   else:

       print("{} is not a prime number".format(n))

else:

   for x in range(n, 1, -1):

       if n % x == 0:

           count += 1

   if count > 1 or n == 1:

       print("{} is not a prime number".format(n))

   else:

       print("{} is a prime number".format(n))

I've written some code that checks to see if a number entered by the user is a prime number or not.

Sorry, but I'm not too good with pseudocode plans and all that. I hope this helps.

Answer:

import math

print("Let's solve ax² + bx + c = 0")

a = int(float(input('Enter a value for a: ')))

b = int(float(input('Enter a value for b: ')))

c = int(float(input('Enter a value for c: ')))

D = b*b-4*a*c

if (D<0):

   print("Sorry, this equation has no solutions.")

elif (a == 0):

   if (b == 0):

       if (c == 0):

           print("Every value of x is a solution")

       else:

           print("Sorry, this equation has no solutions")

   else:

       x = -c/b

   print("The one solution is x={:.3g}".format(x))

elif (D==0):

   x = (-b + math.sqrt(D)) / (2*a)

   print("The one solution is x={:.3g}".format(x))

else:

   x1 = (-b + math.sqrt(D)) / (2*a)

   x2 = (-b - math.sqrt(D)) / (2*a)

   print("This equation has two solutions: x={:.3g} or x={:.3g}".format(x1, x2))

Explanation:

Above is another little program to use the quadratic formula.

Four common types of distractions are

Answers

Visual Driving Distraction

what is the appeal of using the internet

Answers

Answer:

becuase they want us be a bad genaration

Answer:

Either trying to figure something out or just to find funny memes.

PLEASE HURRY

If a flowchart has a diamond with the words "yes" and "no" to the sides of it, then it is representing a program that is a sequence O True O False​

Answers

Answer:

its true

Explanation:

What sorts of changes have you been observing in your society in your society in comparison in last 3 years​

Answers

People care less about their own opinions an more abt others

Can someone answer the first question for me please I will give brainliest

Answers

Answer:

wired because if its wireless the the CONNECTION could break up and people would make people mad and it will be a better result in the long run

Be as visible as possible from all other animals.

True or False

Answers

Answer:

true

Explanation:

I need help pleaseeee

Answers

Answer:

The Answer is C. Hope you get it right, Good Luck!!!

Answer:

The answer is B

Explanation:

To create a list, paragraph, or unordered list, you should use HTML code, whereas in CSS coding, you can change the overall font size of a tag using the font-size=(number) tag.

Other Questions
Why are ocean currents important to coastal regions? John and gary are playing a game. john spins a spinner numbered with integers from 1 to 20. gary then writes a list of all of the positive factors of the number spun except for the number itself. gary then creates a new spinner with all of the numbers on his list. john then spins this spinner, and the process continues. the game is over when the spinner has no numbers on it. if john spins a 20 on his first spin, what is the maximum number of total spins (including the one he already made) that john can make before the game is over? Which phrase best describes the dorsal nerve cord?A. A group of interconnected neurons that enables response to stimuliB. A group of similar nerve cell bodies grouped togetherC. A stiff, nonconducting rod that develops down the back of all chordate embryosD. A thick grouping of nerves that runs down the back of the embryo ale min queridas, n ta aima vides la vim t verts seryent, ie tenen ejercicios y acam dedan, y hoy vamos tar wtra prenilijere e den verten, tagwn lo ejerl shajey ealquler dada ntar en m e tar de act . It hetKlige In forma correcta de ser,1 Maria y vo Estos alimentoslan primenaspara los necesitadosPuedo ir a tu casa a la dieta de la noche ola hermana de RaulCartonmi profesorElige la forma correcta de estarmuy tarde1. 2 El enfermo muy cansado, deberian dormir um poco mejor3. Las sabanas ya 4. En qu mesplanchadas5. Yo em la ciudad de MxicoEscribe la forma correcta de ser o estar en presente. Observa el contexto.1. Esa peluqueria2 Nosotros3. Esas joyas4 Esos peinados5. No se a qu hora6 Por que no vosotros)nueva en el barrioen el cine.de mi abuelade modacl ventode acuerdo con el contrato?7. Aunque todavia no verano, ya hace mucho calor8. Cunto cuesta el men? 30 euros por personaencantada con mis nuevos vecinos10. Los articulosmaanamuy simpticosescritos por los redactores a primera hora de laConjugue los verbos SER o ESTAR de acuerdo con el sujeto y el contexto de cadasentenciaa) Yoen mi ciudad.b) Maria y Juan buenos amigosc) T un gran cocinero.d) Vosotros muy contentos con mi llegada.c) Pablo me dijo quede Uruguay.Yo y mi hermana de vacaciones g) T no deberias trabajar hoy,h) Yoespaola.muy cansado.Por hoy es solo, gracias y hasta nuestra On what day did Texans sign their Declaration of Independence? What is 2.0993+1.256 rounded to the tenths place? A kangaroo can jump at a speed of 40 miles per hour. Which representation shows the distance a kangaroo can jump at this rate? During the War of 1812, Fort Astoria was taken over by theRussians.British.Americans.Spanish. Please help me its due today at 11:00pm will mark the brainiest please really need help a summary of the catcher in the rye. Formulas should follow the___last cell usedsignsorder of operationscall of operations What is formed by the hydrolysis of Starch? which layer hosts most marine wildlife?please help me :/ WILL MARK BRAINLIST!!!Can you complete the graph but in a way a 7th grader would write it? Thank you so much it will help a lot! How much does a 3.0 kg bag of bolts weigh?A) 7.2 NB) 14.4 NC) 22.8 ND) 29.4 NE) 58.8 N The x-intercept shows that you can buy short-sleeve shirts and long-sleeve shirts. The y-intercept shows that you can buy long-sleeve shirts and short-sleeve shirts. Blackstone's Commentaries on the Law is most well know for explaining what How many senators does each state send to the Senate?162determined by population 01:44:12Considering the temperature vs. time graph below, how does the temperature at the beginning of a change of statecompare with the temperature at the end of the change?Temperature vs. Time140410080Temperature (C)33040202020Time (min)The temperature is always lowerThe temperature is always the sameThe temperature is usually lowerThe temperature is usually higher How might the carrying capacity of a coastal ecosystem change as the result of a tsunami? Explain using one or more examples