what dose a bios system do?

Answers

Answer 1
BIOS instructs the computer on how to preform basic functions such as booting and keyboard control. It is also used to identify and configure the hardware in a computer
Answer 2
Bios tells computer how to do basic functions

Related Questions

what is the 3rd streak fun fact from brainly

Answers

Answer:

it is something like you life time saliva can fill up two swimming pools i think

Answer:

During your lifetime, you will produce enough saliva

Which of the following are safety rules when using household chemicals?
A. Never mix household products together B. Keep chemicals in their original bottles C. Turn on a fan or open windows when using household chemicals. D. All of the above

Answers

Answer:

D. All of the above.

Explanation:

Answer:

all of the above

Explanation:

js took the test

What is Hypertext Transfer Protocol?

Answers

Answer:

an application layer protocol for distributed, collaborative, hypermedia information systems.

Explanation:

In a business environment, in which situation would email be more appropriate for communicating than texting?
А
Sending a message to your supervisor for not able to attend social gathering
00
Sending a contract to your supervisor for her review and advice
C с
Sending a message to a friend about meeting at the ballgame later that evening
D
Sending a message to a co-worker about a special delivery at the front desk

Answers

Answer:

The answer to this question would be the second one.

Explanation:

The reason for this is because all of the other answers are not as work-related as the second one.

Jack follows the steps below.
Step 1: He clicks the Design tab on the ribbon.
Step 2: He navigates to the Document Formatting command group.
Step 3: He clicks the Themes icon.
Step 4: He clicks the Office Theme option in the themes gallery.

Which task is Jack trying to do?
A. He is sharing the Office theme with others.
B. He is creating a new theme for his document.
C. He is saving an existing theme to the themes gallery.
D. He is applying an existing theme to his document.

Answers

Answer:

D is my answer to this question.

Answer:

D, He is applying an existing theme to his document.

Explanation:

got the answer correct on edge.

"Currency" is a field data type ,it represents Date or time values
True or false tho?

Answers

Answer:

true

Explanation:

Help please I’m on a time limit

Answers

Answer:

4, Im pretty sure. but not 100%

Explanation:

um can anyone who is really into science and physics answer this question

Answers

Answer:

What question?

Explanation:

4.5 Code Practice


Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:

#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:

All done. __ words entered.

Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.

Answers

In python 3:

i = 0

while True:

   word = input("Please enter the next word: ")

   if word == "STOP":

       break

   i += 1

   print("#{}: You entered {}".format(i, word))

print("All done. {} word(s) entered.".format(i))

I hope this helps!

The program is an illustration of loops.

Loops are used to perform repetitive operations.

The program in Python, where comments are used to explain each line is as follows:

#This gets input for the first word

word = input("Please enter the next word: ")

#This initializes count to 0

count = 0

#The following iteration is repeated until the user enters "STOP"

while word != "STOP":

   #This prints the word entered

   print("You entered",word)

   #This increments count by 1

   count += 1

   #This gets input for the next words

   word = input("Please enter the next word: ")

   

   

#This prints the count of all words

print("All",count,"words entered!")

At the end of the program, the number of valid inputs is printed.

Read more about similar programs at:

https://brainly.com/question/18283451

A family member who hasnít worked with computers before has decided to change jobs. Youíve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: ìWhy so many different things? Why canít there just be one software that you could use for everything?î How would you answer?

Answers

There are too many diverse forms of media. For all of them to be suited under one program would make every server monotonous and pretty much the same. With different programs, different forms of diverse media are created.

Why can't you test a program for run-time errors when it has compile-time (syntax) errors

Answers

Answer:

your computer will not allow it

Explanation:

because it is not one of the main dyonostics

A folder is one icon considered a short cut true or false

Answers

Answer:

True

Explanation:

A shortcut can be an icon that points to a certain app or website.

Computer hardware is best described as

Answers

Computer hardware is best described as any physical component of a computer system that contains ICs, Circuit boards , or any other type of electronic.

would a interactive book be considered a game?

Answers

[tex]\huge\bold\red{Answer:-}[/tex]

✮With its anthology of Interactive Fiction, Studio Oleomingus creates an interplay of text and built environments.

✮The readers/viewers are given the freedom to tailor the story according to their own sensibilities.

FOLLOW ME ♥️

Answer:

No i wouldn’t say so

Explanation:

types of computer that we use in our daily life​

Answers

Answer:

all coumputers

Explanation:

i just like coumputers

The answer would be all computers
Hope this helps :)

What process should be followed while giving a reference?
sam

Answers

Keep the information factual. Avoid opinions about issues such as personal conflicts
Qualify what you say. For example, “It was our experience or “In this situation
Make your praise specific. ...
Refer to specific tasks or projects
Avoid examples that highlight a candidate's weaknesses.

Write a program that prompts the user to enter the number of students and each student's name and score, and finally displays the student with the highest score (display the student's name and score). Also calculate the average score and indicate by how much the highest score differs from the average. Use a while loop.

Answers

Answer:

Follows are the code to this question:

#include <iostream>//defining header file

using namespace std;

int main()//defining main method

{

int n,s=0,j,number,h=-1;//defining integer variables

string name, nh;//defining string variable

float avg;//defining float variable

cout<<"Enter the number of students: ";//print message

cin>>n;//input value in n

while (j< n) //defining loop for input value

{

getline(cin, name);//use getline method to input value

cout<<"Enter the student name: ";//print message

getline(cin, name);//use getline method to input value

cout<<"Enter the score: ";//print message

cin>>number;//input number value

s+= number;//add numbers into s variable

if(h<number)//defining if block that checks h is greater then number

{

nh= name;//use string variable nh to store name value

h= number;//use integer variable h to store name value

}

j++;//increment j value by 1

}

cout<<name<<endl;//print highest name value

cout<<"score: "<<h<<endl;//print highest score value

avg = (float)s/(float)n;//calculate the average value

cout<<"Average is: "<<avg<<endl;//print average value

cout<<"Difference: "<<(h-avg)<<endl;//print average difference

return 0;

}

Output:

please find attached file.

Explanation:

In the above code, inside the main method four integer variable "n,s,j, number, and h", two string variable "name and nh" and one float variable "avg" is defined.

In the next step, n is defined that is used for the input value. and Inside the main method, a while loop is defined, which uses the "getline" method to the input value, and use s variable to add all numbers.

In the next step, if a block is defined that checks "h" is greater than the number value if the condition is true, it will print the highest value of the input variable and its average difference.

Maria has designed an app for a shopping mall. She is planning to use Google’s cloud testing facility. What will this facility do?
A.
It will offer actionable insights about users.
B.
It will enable her to manage a staged rollout.
C.
It will test the app on a wide range of physical devices.
D.
It will help her acquire new users.

Answers

Answer:

C I think

Explanation:

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Select the statements that describe working with text in presentation programs.

Working with text in presentation programs requires learning a new set of rules.
Working with text in presentation programs is similar to working with text in other applications.
The alignment of text in placeholders cannot be changed.
Font size and font color can be changed in presentations.
Audience size influences font size.

Answers

Answer:

Your answer is 1, 3, and 4.. Working with text in presentation programs requires learning a new set of rules, The alignment of text in placeholders cannot be changed, and Font sizes and color can be changed in presentations... Hope this helps!

Explanation:

Write any four "Change Case" options available in OpenOffice writter

Answers

Answer:

please mark me as a brainliest

Answer:

In OpenOffice Writer you can change any text to sentence case, lowercase, uppercase, capitalize every word, or toggle case by following the steps below.

Highlight the text you want to change.

Once highlighted click Format and then Change Case.

Within Change Case select the type of capitalization you want.

If the grade is 60, which action will be executed?

Answers

Answer:

Study with tutor

Explanation:

Edgenuity

Complete the sentence.
use only apps acquired from app stores.
PLEASE HELP

Answers

Answer:

that's a hard one maybe u should email ur teacher bc the punctuation on that is fine and it's not an incomplete sentence

Ccccccccccccccccccccccc


You can enter more than one element of data in the same field. *

True
False

Answers

Answer:

true

Explanation:

im smart

Software as a Service refers to

software that you put on your computer.

software you can access using any device.

a server.

a web browser.

Answers

Answer:a,b,d,e

Explanation: The other top ones are right but it's a multiple choice answer

How is computer programming useful in real life? Help me

Answers

It can help you with technology and can help you become a computer programmer if you like technology hope this works I’m sorry if it doesn’t

If you can’t see the Assets panel, which of these three buttons do you press?

A) Plugins
B) Assets
c) Layers

Answers

Answer: B

Explanation:

The answer is B


Explanation

I did it

In a non-linear control structure, the statements are executed depending upon the

Answers

Answer:

test condition

Explanation:

+20 POINTS!!!~~~~~When adding delegates to his mailbox, which role should Joel use if he would like the user to be able to read and create items in a particular folder?

Editor
Publishing Editor
Author
Manager

Answers

Answer:

B) Publishing Editor

Explanation:

Joel should use the publishing editor tool. The correct option is B.

What is a mailbox?

A mailbox is where electronic mail messages found on a remote server or downloaded to the user's hard drive are stored.

In this scenario, the role he should assign to the delegates is the publishing editor. This role grants them the ability to create, read, modify, and delete all items within a given folder, as well as create subfolders.

The other options listed either do not grant access to create/modify existing files or simply grant all of these rights to files created by the user but not to files already present in the folder. As a result, this would be the most appropriate role for Joel's goals.

To know more about mailbox follow

https://brainly.com/question/13276817

#SPJ6

Tim is trying to explain to his aunt how her computer works, but she does not understand what a CPU does. Which description will most likely help Tim’s aunt understand the CPU’s role?

Answers

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

Explanation:

Answer:

The CPU processes commands from software.

Explanation:

Learned on edge

pls go to my account and answer my question

Answers

Answer:ok I couldn’t find the question do you mind maybe copy pasting it and asking it.

Explanation:

Answer:

ok

Explanation:

Other Questions
what is 9999x9999 hahhahahahhahahahahaha Gail Martinez is employed at My Best Books. She has family medical coverage through the group medical plan that My Best Books provides for its employees. The annual cost of Martinez's family membership is $3,900. The company pays 50% of the cost. How much does she pay annually for medical insurance? * Ask a question in response to each statement about Camille and Lola's new apartment. **Use qu'est-ce que or que.MODLE: Nous visitons le logement de Camille et Lola. -Qu'est-ce que vous visitez? (ou Que visitez-vous?)Please help?! HELP FAST !!! plzzzzz you are about to go to school when your mother asked you to stay at home and take care of your baby brother/ sister 8 times a number squared I am actually dumb just help me please Which statment below best decribes this quotation from the way to wealth HELP ME PLS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Compare the data shown in the table. What reasonable conclusion can be made from the information given? pls help ASAP i got only 5 minuts left Why was the triangufar tradeimportant to the southern colonies? what was the importance of the siege of savannah? reflection of availability of freshwater to human use HELP ME PLZ ILL GIVE YOU EXTRA POINTS IF U GET IT RIGHT Eight-month-old Kimberly responds to her first plum by rolling it around her high chair tray as if it were her red rubber ball. This demonstrates the Piagetian process of: Which of the following best describes the Alamo?a.It became a battle cry for the Texans who wanted revenge for the death of 180 of the peopleb.It was a victory for the Texans and ended the warc.It was a psychological victory for the Mexicans because it showed them they could defeat Texansd.It was a massacre of 180 Texan defenders, which led to the defeat of the Texan army Look at this particle model, what state of matter does it represent? * Question 7 of 10Read this excerpt from a campaign speech:My opponent in this race for the governor's office claimsthat I am corrupt. He dares to suggest that I acceptedfavors from business owners in exchange for putting themin contact with state legislators who lowered businesstaxes. This is an absurd claim. Moreover, I find it ironic thathe, of all people, wants to point fingers and talk aboutcorruption. Isn't it interesting that he accepts so manycampaign donations from the oil industry and is single-handedly responsible for sponsoring state laws that easeenvironmental regulations? Dear friends, remember onElection Day who the real honest politician is in this race,It's certainly not the man on the other side of the aisletrying to distract us from his own bad character.Which statement best describes the speaker's point of view? Ecrivez cinq questions a demander un(e) camarade de classe avec les verbes suivants: rentrer, rester, aider, preparer, apporter, acheter, porter, gagner, retrouverWrite five information questions in the present tense with the theme of school life. Use five different interrogatives(who, what, when, where, etc). Only use the question words that we have learned/reviewed in class for credit. Do NOT use a translator. You may use inversion, but it is not required. These questions will be used for future written assessments and speaking assessments. Soyez creatifs! Be creative!! Which calculation shows how to convert to a decimal?