. What type of device is a computer? Where does it use?​

Answers

Answer 1

Answer:

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

Explanation:

Computer is an electronic and digital device. Computer can be used everywhere in our daily life. You can use a computer to search for something over the internet related to your study etc.

The following fields where you can see the use of computers.

EducationBusinessHospitalBanking sectorHomeMarketingGovernment officesetc

You can see the use of computers everywhere in our daily life.


Related Questions

What will be the output of the following code?int p = 3,ch = 2;switch(ch){case 1: System. Out. Println("The square is: " + p*p);break;case 2: System. Out. Println("The cube is: " + p*p*p);break;default: System. Out. Println("No Output Value");}

Answers

“The cube is: 27”
or p^3
The switch function uses the ch int and identifies a matching case. Because ch is 2
We use case 2
Thus the following line at the top is printed.
Then automatically breaks the function, so we don’t continue.

4 atvantage of a computer

Answers

Answer: High Speed. One of the reasons for improvement in the quality of life is personal computer's speed.

Accuracy. Human make errors.

Automation. A lot of tasks can be automated saving a lot of time.

Ease of Access.

Explanation:

A feature that allows you to quickly apply the contents of one cell to another cell or range of cells selected.

O auto fill

O auto sum

O fill down

O fill right

Answers

Answer:

Auto fill

Explanation:

I took the test!

1. An auto repair shop charges as follows. Inspecting the vehicle costs $75. If no work needs to be done,
there is no further charge. Otherwise, the charge is $75 per hour for labour plus the cost of parts, with a
minimum charge of S120. If any work is done, there is no charge for inspecting the vehicle. Write a program
to read values for hours worked and cost of parts (cither of which could be 0) and print the charge for the job. ​

Answers

Answer:

charge = 0

hours_worked = int(input("Enter the hours worked: "))

cost_of_parts = float(input("Enter the cost of parts: "))

if hours_worked == 0:

   charge = 75

else:

   charge = 120 + (75 * hours_worked) + cost_of_parts

   

print("The charge is $" + str(charge))

Explanation:

*The code is in Python.

Initialize the charge as 0

Ask the user to enter the hours_worked and cost_of_parts

Check the hours_worked. If it is 0, that means there is no inspecting. Set the charge to 75

Otherwise, (That means there is an inspecting) set the charge to 120, minimum charge, + (hours_worked * 75) + cost_of_parts

Print the charge

What are the components of intel motherboard
List many

Answers

Answer:

1. Mouse & keyboard : There are two types of keyboard and mouse connectors. ...

2. USB (Universal serial bus) : USB is Universal 3. 4. serial bus.

5. Parallel port : ...

6. CPU Chip : ...

7. RAM slots : ...

8. Floppy controller : ...

9. IDE controller : ...

10. PCI slot :

_____ is typically used to temporarily hold small units of program instructions and data immediately before, during, and after execution by the central processing unit (CPU).
a) The motherboard
b) The control unit
c) Main memory

Answers

Answer:

A register

Explanation:

Registers are small memory used to store data or values and supply them to the processor as and when needed. These register hold the data temporarily and hold small units of program instructions. So whenever the CPU wants to work on data they have to be made available through the registers. Even after a arithmetic operation the registers serve as buckets for holding the value.

There are different types of registers such as register A, B, C etc and these registers lie in close proximity to the CPU so that we could provide the data immediately and much faster when asked by the CPU.

Therefore we can say that registers are used to temporarily hold small units of program instructions and data immediately before, during, and after execution by the central processing unit (CPU).

Which of the following activities Best describes the use of marketing as a form of digital communication
OA An online discount clothing company sends an email about its upcoming sale,
OB. A teacher posts a list of assignments online for students to access
OG A doctor's office emails a patient to remind them about an upcoming appointment
OD. A friend downloads a new song by her favorite artist to her phone.
Reset
Next

Answers

hello!

the answer for this question is:

OA. An online discount clothing company sends an email about its upcoming sale.

hope this helps you!

If the user, when asked for his/her date of birth, enters a date in the future, this error should be caught by a ________ check.

Answers

Answer:

The answer is reasonableness.

Your answer is Reasonableness check

Explanation:

Hope this helps! Please let me know if you need more help, or if you think my answer is incorrect. Brainliest would be MUCH appreciated. Have a wonderful day!

>>> password = "sdf345"
>>> password.isalpha()
>>>

Answers

Answer:

False

Explanation:

just took this on edge. have a good one!

Answer:

The answer is False because the first number isn't capitalized.

Explanation:

Have a great day today, and be safe

for jhoantm please don't answer

Answers

I had to answer lol, I’m curious who Jhoantm is?

Answer:

its been a month, i dont think hes going to answer

Explanation:

Which student is demonstrating the most effective time-management skills?

Answers

could you please elaborate? i’m not sure what you’re trying to ask!

Answer:

Carlo sticks to a regular study schedule.

Explanation:

I did this already.

40 points!!! Which of the following is a disadvantage of outsourcing?

A) The contracting company may not be able to preform the task.

B) Outsourcing does not allow business to focus on important tasks.

C) Outsourcing has higher costs.

D) It is harder to communicate with an outside company

Answers

Answer:

C.

Explanation:

All the other options are obtainable.

That which can be considered as a disadvantage of outsourcing is;  D) It is harder to communicate with an outside company

What is Outsourcing?

Outsourcing refers to the act of assigning work to contracted employees. This is a very good measure that can be used to help the business save costs and focus on more important tasks.

The money that would have been used in maintaining the staff is used to pay the outsourced company for an agreed period of time.

Usually, the contracted company is specialized in the aspect of the business for which they receive the contract.

The option that qualifies as a disadvantage of outsourcing is that it is harder to communicate with outside companies.

Linguistics with foreign organizations might not be as smooth as with employees.

Learn more about outsourcing here:

https://brainly.com/question/4456416

You recently created a new network segment for the development department. Because the hosts are now on a different network segment, they can no longer contact the DHCP server. Both network segments are connected via a Cisco router.
Which of the following would be the best action to take in order to fix the problem?
a. Install and configure a new DHCP server on the development network segment.
b. Configure the router to forward broadcast messages.
c. Implement an IP helper address on the router.
d. Move the DHCP server to the new network segment.

Answers

The option that would be the best action to take in order to fix the problem is to Implement an IP helper address on the router.

What is DHCP server?

A DHCP Server is known to be a network server that is said to quickly gives and appoints IP addresses, default gateways and other network parameters to client devices.

The Internet Protocol Helper (IP Helper) is said to help network administration of the local computer by helping the applications to get back information based on the network configuration of the local computer, and thus it is good to implement it.

Learn more about  DHCP server from

https://brainly.com/question/14407739

An exception thrown from outside a try block:_________. a. will cause the program to terminate execution b. will be caught outside the catch block c. will be caught inside the catch block d. will remain inside the throw block None of these

Answers

Answer: A, It will cause the program to terminate execution.

Explanation: If an exception is thrown **inside** of a try block then it will be caught inside of the catch block but in this instance it’s asking what happens if the exception is thrown on the **outside** the try block so because the error cannot be caught in the catch block it leads to the program terminating.

A storeowner rents movies to customers. How can a database help the store owner?

Answers

The database can help the store owner as it will help them to monitor  the movies, customers, orders, and movie suppliers for their single movie rental store.

What is database?

A database is known to be a kind of organized composition of structured information, or data, that are said to be stored electronically in a computer system.

Conclusively, An example are MySQL, SQL Server, MongoDB, etc. These modern databases are managed by DBMS.

Learn more about database from

https://brainly.com/question/518894

The Linux operating system is an example of Group of answer choices free-market software. open-source software. pirated software. proprietary software. unreliable software.

Answers

Linux is one of the most prominent examples of free and open-source software collaboration. The source code may be used, modified and distributed commercially or non-commercially by anyone under the terms of its respective licenses, such as the GNU General Public License.

Your file, pets.txt, contains the type of pet, weight, and age on each line. An example line is below: dog, 30, 6 Finish the code to read the file and print the contents. import csv inFile = open('pets.txt','r') myReader = for item in myReader: print(item)

Answers

The Python program is an illustration of the file manipulation process

How to complete the program?

From the code segment in the question, we have the following parameters:

The program is written in PythonThe second line of the program is incomplete

The program written in Python where comments are used to explain each action is as follows:

#This imports the csv packacge

import csv

#This opens the file for a read operation

inFile = open('pets.txt','r')

#This prints the file line by line

print(inFile.read())

Read more about Python programs at:

https://brainly.com/question/24833629

Identify the different trends in ICT and use them to their advantage​

Answers

Answer:

The primary new technologies of this decade – Artificial Intelligence (AI), cloud, mobile/5G, cybersecurity, blockchain and the Internet of Things (IoT) – are even more significant and impactful than we may realise.

Using computer technology to harm another person is known as pharming. cyber-bullying. hacking. vishing.

Answers

Answer:

It is B and C.

But what are these, really?

Cyber bullying is when you use your form of technology to harm another person. It can harm them mentally and sometimes is so bad that it can cause depression.

Hacking is to mess with a server which can cause complicated errors and even breakage of code.

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

I hope this answered your question! Have a wonderful day.

Katia wants to listen to online radio on her home computer while she works. What is the best option she should use to get connected to the internet

Answers

The  best option that Katie should use to get connected to the internet is to use broadband.

What is Broadband?

Broadband is known to be a type of telecommunications technology that is created so as to give man a high-speed Internet access through the use of multiple channels of similar digital signals.

Note that  Broadband can help transmit on a wired connection through the use of  coaxial, fiber optic, wirelessly on a cellular network and this can help Katie a lot with her internet connection.

Learn more about internet from

https://brainly.com/question/2780939

When a client PC is booted, it broadcasts a __________________________ message over the network to locate DHCP servers on the same subnet.

Answers

When a client PC is booted, it broadcasts a Dhcpdiscover message over the network to locate DHCP servers on the same subnet.

What is a Dhcpdiscover message?

The Dhcpdiscover message is known too be a message that has a kind of an identifier that is specific  to a client (such as the MAC address).

This message is one that also has some other requests, such as:

Requested options e.g  subnet mask, domain name server, etc.

Note that if client PC is booted, it shares a Dhcpdiscover message over the network to locate DHCP servers on the same subnet.

Learn more about network from

https://brainly.com/question/1167985

Commands under menu bar in a computer

Answers

Answer:

File, Edit, and View

Explanation:

These are the standard ones that come with the software.

Leslie’s parents put a big dry-erase board on the refrigerator and let the kids write suggestions for how to organize and assign household chores. Which step of problem solving does this situation illustrate?

A. Define the problem
B. Evaluate the solution
C. Determine possible solutions
D. State and check assumptions

Answers

Answer

determine possible solutions

Explanation:

im assuming

ty for the thanks

Which of the following is an example of self-awareness?

Answers

Are you sure this is the right subject
5 Examples Of Self-Awareness In Everyday Life

1.) Knowing and accepting your preferences. I am not a morning person. ...

2.) Checking in with your body. Most people don't really notice that their bodies are working for them until they aren't working for them. ...

3.) Choosing to be disciplined (or not). ...

4.) Recapping a conversation. ...

5.) Taking in some beauty.

The telephone, invented in 1876, converted acoustic sound to electric signals. However, the audio production industry began using the electrical recording system only in 1925. Why was there a delay in using this technology in audio production? The missing piece of technology that prevented the audio production industry from using the electrical recording system earlier was a device that could the electric signal. The device that made this possible was the .

Answers

Answer:

The missing piece of technology that prevented the audio production industry from using the electrical recording system earlier was a device that could amplify the electric signal. The device that made this possible was the Audion valve

Explanation:

The telephone system in the passage is able to convert sound to electronic signals in a crude manner, without amplification. The electrical recording system, whereby a microphone converted sound into amplified electrical signals  was, made possible by the invention of the electronic valve, known as the Audion triode vacuum tube by Lee De Forest in 1906. Electrical sound systems were built based on the Audion tube before transistor-based audio equipment became commercially available in the 1950s.

Can someone buy me eddie van der tabs???

Answers

Answer:

No

Explanation:

U cannot exploit people like that

Where are all my smart ppl at? Help me out!!!
A formula =A1+B2 is in cell D8. If you copy that formula to cell D9, what is the new formula in cell D9?

A.) '=A1+B2
B.) '=A2+B3
C.) '=A2+B2
D.) '=B1+C2

Answers

Answer:

ANSWER IS A2+B3

Explanation:

i am shmart.

Answer:

Most def B.

Explanation:

Hope this helped

The presentation programs' basic commands are found in ____.

Answers

Answer:

taskplane

Explanation:

Which of the following least illustrates inequity caused by the digital divide?

Answers

The head of government is in the prime Minister

Which file format cannot be added to a word document.

Answers

Answer:

MP4

Explanation:

Other Questions
The largest expanse of time on the geologic time scale is the. What was the main issue of concern in the 1800s between the federal and state governments? Question 1 options:Ownership of land in the westNational verse State BanksControl over slavery Trade between statesplease only answer correctly, thank you The stray cat stalked down the street. Her walk was proud--she barely flinched when a car on the corner backfired. She reached the end of the street and made one majestic leap to the top of an open trash can, where, with great dignity, she settled over a meal of broken bones, a back alley Cleopatra. Which detail from the text contains an allusion? Plz help me Read the poem "The Winds Visit" by Emily Dickinson.The wind tapped like a tired man,And like a host, "Come in,"I boldly answered; entered thenMy residence within A rapid, footless guest,To offer whom a chairWere as impossible as handA sofa to the air. No bone had he to bind him,His speech was like the pushOf numerous humming-birds at onceFrom a superior bush.His countenance a billow,His fingers, if he pass,Let go a music, as of tunesBlown tremulous in glass. He visited, still flitting;Then, like a timid man,Again he tapped't was flurriedlyAnd I became alone.Dickinson uses a simile in the first stanza of this poem todescribe the doorway of the house.give the wind humanlike characteristics.emphasize the destructive power of the wind.describe the speaker of the poem. what the algebraic rule for a dilation with a scale factor of 3 Which important figure from the French Revolution was responsible for the assassination of Jacobin leader,Jean-Paul Marat?A. Charlotte CordayB. Marie AntoinetteC. George DantonD. Marquis de Lafayette Which respiratory process is impaired the most by emphysema. What to email teacher saying absent for long time because of flu how does the story end? The 6 games Kelly's team played took a total of 7 hours. How many minutes total did they play softball? Write an informative essay that explains how life in the late 1800s was different from the way it is today. Work out the size of angle x.6545 2. Using the given pictures below, fill in the table on the next page Can you use Chicano english if you aren't Chicano? or is it offensive?Don't answer this if you AREN'T Mexican/Chicano. If the demand increases, the curve moves to the ? if the demand decreases the curve moves to the? WEDDING There were a total of 180guests at a wedding. Of those guests,37 ordered fish and 60 orderedchicken. If the remainder of theguests ordered steak, how manyordered steak? what factors your family makes it difficult for a person to achieve certain goals What do you understand by skilled human resources?(only in english) I BET NO ONE KNOWS THIS QUESTION. Jade skips going to dinner with friends to babysit her younger brother. Jade's opportunity cost is the:A. time spent with her brother.B. time she could have spent with her friends.C. money she earns babysitting.D. money she saves by eating at home. give answer in decimal to the nearest tenth of a cm