1. Which software is used mostly for typing text? a) Word b) Excel O c) PowerPoint o d) Paint​

Answers

Answer 1

Answer:

a. Word

Explanation:

Microsoft Word is the most widely used word processing software according to a user tracking system built into the software.

Answer 2

Answer: a) Word

Explanation: Microsoft Word is the most widely used word processing software.


Related Questions

You have two identical print devices that are set up in a work room. Currently, the Windows print server has two printers configured-one for each print device. Some of your users have one printer configured on their computer and other users have the other printer configured. You have found that users are often waiting for their print job to start because another print job is running on the same print device while the other print device sits idle. You want to maximize usage of both printers and avoid having users wait. What should you configure

Answers

Since you want to maximize the usage of both identical print devices (printers) and avoid having users wait, you should configure: printer pooling.

A printer can be defined as an electronic output device that is typically designed and developed to be used for printing paper documents containing textual information and images.

In this scenario, you want the two (2) identical print devices (printers) to print concurrently, so as to prevent users from waiting for their print job to start while the other print device sits idle.

Hence, you should configure printer pooling on both print devices (printers) because this feature would allow the two (2) identical print devices (printers) to share the same name and function as a single printer.

In conclusion, load balancing of print jobs can be achieved by configuring printer pooling on two or more printers.

Read more: https://brainly.com/question/17100575

How to square a number in java.

Answers

Answer:

num**2

Explanation:

To square a number in Java, you just take the number and use two asterisks (**) to denote an exponent, and then connect a 2 to it.

For example, if your number is 5:

5**2 in Java means 5^2, which is 25.

Just like how 5**3 in Java means 5^3.

Hope this helps.

What are web protocols.

Answers

Answer:

Web protocols are a set of standards used to exchange information. It ensures that code can be modular and portable.

Answer:

The standard network protocol of the Internet, TCP/IP, stands for Transmission Control Protocol/Internet Protocol. The Internet Protocol part of the standard refers to the addressing of data message packets. Additional protocols that operate within the TCP/IP framework include UDP, HTTP and FTP. Each has different functions and purposes that ultimately work together to provide assorted capabilities through what's currently known as the World Wide Web.

Explanation:     i hope this helps

What are this Chinese logo map

Answers

Answer:

hope it's helpful to you

For questions 1-3, consider the following code: x = int (input ("Enter a number: ")) if (x != 8): print ("A") if (x >= 10): print ("B") if (x < 10): print ("C") if (x % 2 == 1): print ("D") What is output if the user types in 13?

Answers

Answer:

ABD

Explanation:

13 not equal 8, greater than 10 and odd. Ifs will be executed step-by-step

THE BONUS QUESTION PART FOUR:

what is the most popular game that's lived for soo long

Answers

Answer:

Senet

Explanation:

Which option is used to apply formatting to multiple objects on a single slide while still maintaining the ability to manage these objects independently if desired?

it was B. Grouping feature edg21

Answers

Answer:

b. Grouping feature

Explanation:post protected

Which action must take place inside a procedure to reserve space on the stack for two doubleword local variables

Answers


after MOV EBP,ESP, subtract 8 from the stack pointer (ESP)

we are unable to process your request at this time. if you continue to receive this error, please contact cardholder services by calling the number on the back of your card.

Answers

Answer:

is this a sim chip card replacement card for Electronics ?

Explanation:

True or False: You can insert a part into an assembly by dragging the part file from Windows Explorer into the Onshape window and dropping it in your assembly.

Answers

The Onshape software is a Computer - Aided - Design (CAD) apllication which is used to create various engineering components and simulation.

The program has several functionality which is extremely useful and similar to other CAD software packages such as SOLIDWORKS and AUTOCAD.

There are several ways of adding a required component to an assembly, which also includes dragging a supported file from explorer into the application window.

Hence, the Statememt is True.

Learn more : https://brainly.com/question/25702248

shang chi Critique (6-8 sentences)

Answers

Explanation:

.......................

If you used D*n as the criterion in a Short Text field called FirstName, what would appear in that field in the query results

Answers

When querying a list or table, the use of wildcard symbols maybe used to optimize the search result. The words D*n will return First names which starts with D and ends with n.

The (*) denotes that the search returns any values or alphabets inbetween D and n.

Names such as Dean, Don, Drezn and other rated names would be included in the returned query.

Therefore, the returned query would include names starting with the letter D and ends with the letter n.

Learn more : https://brainly.com/question/25586700

The type of software used in soa architecture is often referred to as what?.

Answers

Answer:

software-as-a-service

Explanation:

i will give brainliest to the best answer. what is a good screen recorder

Answers

Answer:

If your on windows there is an x-box screen recorder installed on it. thats a new windows 11 update. If not, i used to use x-split broadcaster

Explanation:

If your on windows there is an x-box screen recorder installed on it. thats a new windows 11 update. If not, i used to use x-split broadcaster

mark me Brainliest

Chapter 20 reading and vocab review

Explain the subtractive and additive approaches to editing.

Answers

Answer:

Essentially additive editing and stringing “the good stuff” together, whereas subtractive is more about stringing all your raw footage together and “removing the bad stuff”

Additive editing feels confident and concerned with the pursuit of a specific, existing vision. And it’s faster. Subtractive editing feels like a deeper listening to what the footage is saying, and holding on to many potential permutations.

Explanation:

Addictive editing -  creating a program from raw footage by starting by starting with nothing and adding selected components

Subtraction editing  - creating a program by removing redundant or poor quality material from the original footage

HELP ME PLZ

A computer system has 16 GB of RAM and 8 MB of cache which is faster than
RAM
Explain why the computer system does not have 16 GB of cache.

Answers

Answer:

inorder to be close to the processor..the cache memory should be much smaller than the main memory...to increase processing speed.

Consider the following instance variables and method from a class: private String descriptor; public String makeSentence(int quant, boolean sign) { String s = "Object is "; if (!sign) { s += "not "; } for (int i = 0; i < quant; i++) { s += "very "; } return s + descriptor; } Suppose an object of this class is initialized so the value of descriptor is "regular". What would be returned by the call makeSentence(3, false) made on this object?

Answers

The call makeSentence(3, false) will return

"Object is not very very very regular"

The program fragment is:

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

private String descriptor;

public String makeSentence(int quant, boolean sign) {

   String s = "Object is ";

   if (! sign) {

       s += "not ";

    }

   for (int i = 0; i < quant; i++) {

       s += "very ";

   }

   return s + descriptor;

}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

descriptor is an instance field of the class. When makeSentence(3, false) is called, it does the following;

Initializes a local variable s with "Object is "

s now contains "Object is "

Since sign== false, the if block executes

s now contains "Object is not "

The for loop will execute 3 times to append "very " to s

s now contains "Object is not very very very "

Finally the return statement returns a concatenation of the contents of descriptor (descriptor=="regular") and s

s now contains "Object is not very very very regular"

Learn more about programs here: https://brainly.com/question/19625875

______ focuses on filtering data as it enters the system to determine which data to keep and which to discard.

Answers

The answer is Stream processing

Bootmgr starts and reads data from a(n) ________ file that contains information about the various operating systems installed on the system.

Answers

BCD file. Boot Configuration Data (BCD) files provide a store that is used to describe boot applications and boot application settings.

Do you think should give credit to people who invented viral dances?

Answers

Answer:

michal jackson i think who credit to people invented viral dances.

Answer:

Yes

Explanation:

Well, they added some taste to life.

In object-oriented programming, a data member plays the role of _________. a. an attribute b. a behavior c. either a or b d. neither a nor b

Answers

In object-oriented programming, the object consist of both the data and the functions that operate on the data. In object-oriented programming, a data member plays the role of neither A nor B.

Objects are the product of abstract data types that has inside of it both data and function altogether.

A data member often has different classes. They can be private or public.

Object-oriented programming (OOP) is simply known as a computer programming model that put together software design around data, or objects.

Learn more from

https://brainly.com/question/12342989

Question 10 of 10
Your company emphasizes the important of conserving (not wasting)
resources. How can you support that value when you print an 8-page report
you were asked to bring to your department's monthly meeting?
O A. Use the Print option for two-sided printing.
OB. Use the Print option to create extra copies.
C. Post the report online before printing it.
O D. Use the Save option to choose a format readers can open.

Answers

D, because it will save paper and not go to waste

What type of loop allows you to indicate the starting value for the loop control variable, the test condition that controls loop entry, and the expression that alters the loop control variable, all in one convenient place

Answers

Answer:

I think it's a for loop.

A for loop looks like:

for (starting statement; condition that is true; condition applied to iteration)

Explanation:

if you want to build a smart-glove that responds based on the direction and speed a user moves their hand, what sensor should you use

Answers

The Smart glove is known to be a very common hardware. The sensor that an individual can use, is the Inertial Measurement Unit (IMU) sensors.

Inertial Measurement Unit (IMU) sensors is a type of sensor that capture alltogether the motion of hand and wrist movements.

It is known to contain some bending sensors that is used to detect bending in one direction or another.

All the sensors are often linked to a computer system that put together the amount of individual finger movement of the patient.

Learn more from

https://brainly.com/question/20591341

A computer game allows a player to repeat a level until they run out of lives. Which two of the following loops would work correctly?

Answers

Answer:

c.

Explanation:

because this is the right syntax for the following loops

the correct banner marking for a commingled document

Answers

Answer:

The correct banner marking for a commingled document is Headers and footers are mandatory and must be identical All sections or portions must be marked or portion marked CUI markings and Limited Dissemination Control markings appear after all classified marking in both Banner Lines and Portion Markings

Hope this helps :D

Please Mark Brainliest :D

What is the quickest option for adding internet images to a PowerPoint presentation?

*it's b. use the online pictures option....

Answers

Answer:

b. Use the Online Pictures option to perform a search of web-based images to insert.

Explanation:is correct. post protected

The _____ database structure is more flexible and stores data as well as instructions to manipulate the data.

Answers

Answer:

Databace

Explanation:

When it comes to game mechanics, what is the most universal mechanic that is present in virtually every computer game that you can think of?

quests and goals
movement
catch-up
turns

Answers

I have no Clow but I wanted to answer because you cute

Explanation:

none

When a mobile user connects to a main office using a standard Internet connection, a ____ provides the mobile user with a secure connection to the company network server.

Answers

A virtual private network (VPN) is an encrypted connection using a standard Internet connection to connect a device to a network.

A virtual private network (VPN) is used to connect a private network to a public network. It enables users have access to the private network thereby enabling them to send and receive data across public networks.

A virtual private network (VPN) is an encrypted connection using a standard Internet connection to connect a device to a network.

Find out more at: https://brainly.com/question/25234505

Other Questions
If F(x) = x-7 and G(x) = x, what is G(F(x))? InstructionsRead Psalm 22 and Isaiah 53 paying close attention to the verses below.Research the verses in the chart below to determine which New Testament verses fulfill the prophecy found in the Old Testament (they are not in order).Using the list above, write a 250-word essay on how each Old Testament prophecy meets one or all of those guidelines.Remember to use proper grammar, punctuation, and spelling when typing your essay.Old Testament Prophecy New Testament FulfillmentPsalm 22:6-7 Romans 5:6-8Psalm 22:15-16 Matthew 27:39-40Psalm 22:18 Matthew 27:57-60Isaiah 53:4-6 Luke 23:33-34Isaiah 53:8-9 John 19:33-35Isaiah 53:12 Matthew 27:35Guidelines of Biblical prophecy include:Prophecy is a declaration of knowledge which belongs exclusively to the omniscience of God.Prophecy is revelation of the supernatural light of God.Prophecy is explained by God in Deuteronomy 18:18-22, which gives points concerning prophecy:God put the words in their mouths.The prophet spoke "only" what God commanded.People are to pay strict attention to words of God's prophet.If a prophecy is from God, then the test is that the prophecy will happen exactly as spoken.Real prophecy is a vital part of the Bible: Biblical prophecy is deeply buried throughout the Old Testament and was also a means of establishing the Old Testament.Prophecy pervades the entire Bible.Prophecy, in many cases, is very specific.Prophecy often deals with events remote in time and with people or kingdoms that do not exist yet.Fulfillment of prophecy is clear. Fulfilled prophecy constitutes a supernatural act. huipiles are _____.. only made of light material . only made of heavy material . one-of-a-kind. ordinary HELP a please please help Consider the expression 8ab +3b + 16 - 4a How many terms are there ? How many factors are in the term (identify them ) Which term is a constant ? I need help on this please once a bill has been debated it then must be ____ on PLEASE HELP ME, THIS IS THE LAST QUESTION AND IM DONE Please help me with this! The question on the image Option A charges $500 for the year and $65 each time she visits the doctor. Option B charges only $300 for the year but $95 for each doctor's visit. How many visits will she have to make in a year for Option A to be the better deal? What is infrared energy? simplify it If the environment gets cold, humans will often respond involuntarily by shivering in order to:a. keep body temperature the same as the external temperatureb. increase body temperatureC. decrease body temperatured. regulate blood pressure Ive Made a account im user kgru863 How do you know whether two quantities x and y are proportional? What is the value of the expression?-olur1 53 656Enter your answer in simplest form. Which of the following would most likely be true of a map of Africa made in 2009?AIt would not show the country of Nigeria.BIt would not show the Nile.CIt would not show the country of South Sudan.DIt would not show the Sahara Desert. A backyard swimming pool has two fill pipes and a drain pipe. The pool fills in 9 hours with the first fill pipe. Draining the pool with the drain pipe takes 1 hour longer than filling the pool with the second fill pipe. If all three pipes are open at once, the pool can be filled in 8 hours. How many hours would draining the pool take with the two fill pipes closed? which best represents the number of moles in exactly 130 grams of potassium metal? Read the excerpt from Benjamin Banneker Writes to Thomas Jefferson.Sir, suffer me to recall to your mind that time, in which the arms and tyranny of the British crown were exerted, with every powerful effort, in order to reduce you to a state of servitude: look back, I entreat you, on the variety of dangers to which you were exposed; reflect on that time, in which every human aid appeared unavailable, and in which even hope and fortitude wore the aspect of inability to the conflict, and you cannot but be led to a serious and grateful sense of your miraculous and providential preservation; you cannot but acknowledge, that the present freedom and tranquility which you enjoy you have mercifully received, and that it is the peculiar blessing of Heaven. How does the excerpt contribute to the power of Bannekers message to Jefferson?Select the two correct answers.By comparing the unfair treatment of American Colonists under British rule to that of enslaved persons, Banneker appeals to Jeffersons sense of empathy.Banneker reminds Jefferson of the intolerable conditions that led to the Declaration of Independence and separation from British rule.By using words like suffer me and entreat, Banneker acknowledges that he is asking a great deal of Jefferson.Banneker chooses words like miraculous, providential, and blessing of Heaven to demonstrate he shares Jeffersons religious views. Juan wants to buy a video game for $63. He saves $12 every Friday. Part A. Create an equation to represent Juan's total savings, y, in dollars, after x Fridays. y