What is the purpose of a computer toolbar?

A. To alphabetize programs
B. To hold frequently used icons
C. To organize files
D. To view all files in the computer

Answers

Answer 1

Answer:

B

Explanation:

In computer interface design, a toolbar (originally known as ribbon) is a graphical control element on which on-screen buttons, icons, menus, or other input or output elements are placed. Toolbars are seen in many types of software such as office suites, graphics editors and web browsers.

Answer 2

The purpose of a computer toolbar is to hold frequently used icons. The correct option is B.

What is toolbar?

A Toolbar is a group of buttons or icons which are the integral part of the window or any software program's interface. Toolbar of the software program's interface has all commands under the menu bar.

In the computer interface, a toolbar has on-screen buttons, icons, menus. Toolbars are available in office suites, graphics editors and web browsers.

Thus, the purpose of a computer toolbar is to hold frequently used icons. The correct option is B.

Learn more about toolbar.

https://brainly.com/question/11496721

#SPJ2


Related Questions

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

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:

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.

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

Answers

Answer:

test condition

Explanation:

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

What is Hypertext Transfer Protocol?

Answers

Answer:

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

Explanation:

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

Answers

Answer:

true

Explanation:

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

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

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.

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

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

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

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

Answers

Answer:

Study with tutor

Explanation:

Edgenuity

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

Answers

Answer:

What question?

Explanation:

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

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.

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.

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


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

True
False

Answers

Answer:

true

Explanation:

im smart

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.

+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

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.

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.

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 :)

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:

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.

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:

Help please I’m on a time limit

Answers

Answer:

4, Im pretty sure. but not 100%

Explanation:

Other Questions
Find the value of x.2x x please answer 60 points worth What does the phrase "grew thick and dense like riverweed" suggest about the port town? Answer choices for the above question The town population is increasing. The town is foggy and difficult to see. The riverweed has spread to the town. The townspeople have built many new buildings. Web developers work part time true or false What makes soil smell musty?O A.clayOB. decayed plant matterO C. inadequate nutrientsOD. lack of moisture what does the 9th amendment limit? The number of free spng to download is determined by usomg a ratio. When you purchase 40 songs, you get 24 free song download. How many songs must you purchase in order to get 6 free song downloads? Which indefinite article would be used for the following word? polloGroup of answer choicesunounosunaunFlag this QuestionQuestion 21 ptsWhich of the following would be used for saying He likes?Group of answer choicesgustarle gustate gustame gustaFlag this QuestionQuestion 31 ptsWhich of the following is used for playing instruments?Group of answer choicestocarbailarjugarmontarFlag this QuestionQuestion 41 ptsWhich of the following means and?Group of answer choicesyoperosFlag this QuestionQuestion 51 ptsWhich definite article would be used for the following word? pizzaGroup of answer choiceslasloslaelFlag this QuestionQuestion 61 ptsWhich of the following would be used to say the desk?Group of answer choiceselunalaunFlag this QuestionQuestion 71 ptsWhich of the following is used to say some? Group of answer choiceslosunaunounosFlag this QuestionQuestion 81 ptsWhich would be true for conjugation?Group of answer choicesThey are the root form of the verbThey typically end in -arThey match with the subject of the verbThere are normally two forms for each verbFlag this QuestionQuestion 91 ptsWhich of the following verbs would be conjugated?Group of answer choicesandarholabailobailarFlag this QuestionQuestion 101 ptsWhich of the following would be used in response to the following question? Te gusta montar en bicicleta?Group of answer choiceste gustame gustamontogustarFlag this QuestionQuestion 111 ptsWhich of the following would be a cognate?Group of answer choicesbailarholaactornadasFlag this QuestionQuestion 121 ptsWhich of the following would be an infinitive?Group of answer choicescafnadarproductonado Find the slope on the graph? What is the equation of the line that passes through the points (4,-4) and has a slope of -3/4 Use illustrate in a sentence Jacques designs and produces blankets. The selling price for each blanket is $25. Jacques spends $7.50 on the wool and thread to produce each blanket. For each blanket that Jacques produces, he pays himself $10.What is the added value for Jacques blankets?please help Describe an incident that you can never forget!-You should write between 150-200 words!-Your essay should include three distinctive parts an introduction, two three body paragrap and a conclusion - Your essay should have a thesis statement and each paragraph should include a topic sentence Please need help in the examines 1. Inferring This activity incorporates information from Chapters 12and 13. How are these two chapters related? Which shows associative property?3(ab) = (3a)b(3 + a) + b = 3 + (a + b) Drag the operator to the correct location on the image. Which operation results in a trinomial? Directions: Copy sentences in the active and passive voice from the textbelow and write them in the corresponding column in the table providedbelow)SUSPICIOUS BOXLast Friday, it was around 12:30 in the afternoon when a suspicious box was found byMiss Mendez on her table. The suspicious box wasn't opened by the teacher at that momentbecause she was afraid to see what's inside and who gave it because it doesn't even have ashort note. The box was wrapped in a red silk paper, a little bit heavy, having a yellow ribbonand tied properly.The box was taken to the faculty room by Miss Mendez and showed it to her co-teachers. When they're about to open the box, loud and big voices were heard outside thefaculty room and greeted her... "Happy Birthday Miss Mendez!" When she took a lookaround, it was her students in the 7th grade. They brought balloons, flowers and cake for herbirthday. In great surprise, she gladly embraced them. She cried tears of joy when they sanghappy birthday. When she opened her gift, she saw her photo turned into a sketch and kept ina shimmering frame. A series of messages too were written by her thoughtful students.Meanwhile as she randomly reads the messages, one of her bright students in class, Pio,the guitarist, started to play his instrument while the rest of his classmates started to sing asong. Not just a song but it was their teacher's favorite song entitled "A Smile in YourHeart. It is a song sung by his favorite singer of all time. Absolutely, having those ideas andplans tickled the bones of their adviser for it all worked out.As they finished the song, Miss Mendez blew her cake, made a wish, and thankedeveryone for the surprise they had prepared. In the end, a meaningful message was deliveredby her for her wonderful birthday surprise. According to Miss Mendez, it was her mostremarkable birthday celebration with unforgettable people.We hope you understand the passage. Now it's your turn to do the task. Good luck!Active Voice:________,________,________,________Passive Voice:________,____ ____,____________ What is -2(x - 5)- 11 in simplest form? Mike is purchasing fabric for a school project. He needs to cut out circles with an area of 314 square inches. The fabric at the store is precut into squares, each of which has a whole number of inches for the length of its side. What is the smallest square piece of fabric Mike can purchase to use to cut out one of the circles? Consider a sequence given by the formula a n = a n -1 5, where a1 = 12 and n 2.Create an explicit formula of the sequence. Use the explicit formula to find of thesequence. Give your answer in the answer space.a100