Identify one technology tool used for work​

Answers

Answer 1

Answer:

a computer is used for lots of things so are phones aswell as calculators and printers just think of an office and it will help


Related Questions

1. Which of the following is NOT a characteristic of a computer? * DO O Speed O Intelligence O Accuracy O Storage​

Answers

Answer:

Intelligence.    It's only as smart as the programmer.

Explanation:

Intelligence

Most likely the answer will be intelligence, because a computer characteristics are speed storage accuary.

What would be the result of running these three lines of code? snacks = ["pizza", "popcorn", "soda", "burgers"] snacks.append("ice cream") print(snacks) [‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’] [‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’, ‘ice cream’] [‘ice cream’, ‘pizza’, ‘popcorn’, ‘soda’, ‘burgers’] [‘ice cream’]

Answers

Answer:

option b

Pizza popcorn soda burger ice-cream

1. What does a computer
network allow computers to
share?
*
Resources
Mice
Electricity
Screen​

Answers

Answer:

Resources

Explanation:

::::::::::::::::::::::

Answer:

Resources I'm pretty sure

Explanation:

idontknow

Robyn needs to ensure that a command she frequently uses is added to the Quick Access toolbar. This command is not found in the available options under the More button for the Quick Access toolbar. What should Robyn do?

Access Outlook options in Backstage view.
Access Outlook options from the Home tab.
Access Quick Access commands using the More button.
This cannot be done.

Answers

Answer: Access Quick Access commands using the More button

Explanation:

In order for Robyn to ensure that a command she frequently uses is added to the Quick Access toolbar, then she needs to Access Quick Access commands using the More button.

This can be done by clicking on Customize Quick Access Toolbar. Then, Robyn will then click More Commands then he'll click on file tab in the Choose commands from the list. The command will then be chosen and then click on Ok and it'll be added.

39 POINTS !
Okay so basically I have a 60 percent keyboard, and it’s LED perfect in shape jkeyboard okay.
I try connecting it to my ps4 and it’s detected but it won’t light up nor will any of the keys respond.
I have tried resetting my ps4
Iv’e tried unplugging and replacing in
I’ve tried holding FN and N to disable the n rollkey
I be tried plugging it into a pc
But nothing wors does anyone know how to fix it?

Answers

Answer:

Contact a service center electronics management

Answer:

take it back to the store with your the receipt and get a new one

What do you suggest for Father's Day?​

Answers

A gift or maybe something homemade that means something special to you and or you dad

Match each with the correct answer.
1. Practice 4.2
Match the CPU part to its definition.
1. ________ arithmetic logic unit. (ALU)
2. ________ bus unit.
3. ________ cache.
4. ________ control unit.
5. ________ decode unit.
6. ________ regular unit.

-options
A. Decodes instructions and data and transmits the data to other areas in an understandable format.

B. Contains many separate, smaller storage units.

C. Connects all the other major components together, accepts data, and sends data through the input and output bus sections.

D. Control of the overall operations of the CPU.

E. Performs mathematical functions on data stored in the register area.

F. Small temporary memory area that separates and stores income data and instructions.

Answers

Answer:

1. E

2. C

3. F

4. D

5. A

6. B

Explanation:

CPU: this is known as the central processing unit and it is considered to be the brain of a computer system. It is the system unit where all of the processing and logical control of a computer system takes place.

A. Decode unit: decodes instructions and data and transmits the data to other areas in an understandable format.

B. Register unit: contains many separate, smaller storage units. Modern CPUs need only a few nanoseconds to execute an instruction when all operands are in its registers.

C. Bus unit: it is used to connect all the other major components together, accepts data, and sends data through the input and output bus sections.

D. Control unit: control of the overall operations of the CPU. The component of the central processing unit (CPU) that controls the overall operation of a computer is the control unit. It comprises of circuitry that makes use of electrical signals to direct the operations of all parts of the computer system. Also, it instructs the input and output device (I/O devices) and the arithmetic logic unit how to respond to informations sent to the processor.

E. Arithmetic logic unit (ALU): performs mathematical functions on data stored in the register area.

F. Cache: small temporary memory area that separates and stores income data and instructions.

5.What is returned by the call go(30)?
public static String go ( int x)
{
String s = "";
for (int n = x; n > 0; n = n - 5)
S = S + x +
return s;}

Answers

Answer:

The string returned is: 303030303030

Explanation:

Given

The above method

Required

The returned string

The method returns a string that is repeated x/5 times.

Take for instance;

x = 30

The method will return a string that contains x in 30/5 (i.e. 6) times

Hence, the result of go(30) is 303030303030

Write a loop that displays your name 10 times. 2. Write a loop that displays all the odd numbers from 1 through 49. 3. Write a loop that displays every fifth number from 0 through 100. 4. Write a code sample that uses a loop to write the numbers from 1 through 10 to a file. 5. Assume that a file named People.txt contains a list of names. Write a code sample that uses a while loop to read the file and display its contents in a ListBox control.

Answers

Answer:

Kindly check explanation

Explanation:

(1.)

n = 0

While n < 10 :

n+=1

print('fichoh')

# initiate counter n = 0 ; set condition, while n is not equal to 10 ; it print 'fichoh' and counter is increased by 1. This terminates once it reaches 10.

(2.)

for number in range(1,50):

if number%2 != 0 :

print(number)

#An odd number won't have a remainder of 0 when Divided by 2 ; so, for numbers 1 to 49 using the range function, if the number is divided by 2 and leaves a remainder other Than 0, such number is displayed

(3.)

for number in range(0,101,5):

print(number)

# Using the range function, starting from 0 to 100; it is number in the for loop is incremented by 5 and displayed.

(4.)

outfile = open('my_file.txt', 'w')

for n in range(0,11):

outfile.write(str(n))

outfile.close()

#open, 'w' creates a text file, my_text.txt and writes into it ; using the range function, numbers 0 to 10 is written into the created file.

5.)

name_file = open('People.txt', 'r')

While name_file:

out_file = name_file.readline()

if out_file = ' ' :

break

name_file.close()

names = name

#Open, 'r' ; opens and read from the file People.txt ;

#readline reads the content of the opened text file into a list out_file ; using the if ' ', the loop terminates once an empty content is read.

(Occurrence of max numbers) Write a program that reads integers, finds the largest of them, and counts its occurrences. Assume that the input ends with number 0. Suppose that you entered 3 5 2 5 5 5 0; the program finds that the largest is 5 and the occurrence count for 5 is 4. Hint: Maintain two variables, max and count. max stores the current max number and count stores its occurrences. Initially, assign the first number to max and 1 to count. Compare each subsequent number with max. If the number is greater than max, assign it to max and reset count to 1. If the number is equal to max, increment count by 1. Sample Run 1 Enter an integer (0: for end of input): 3 Enter an integer (0: for end of input): 5 Enter an integer (0: for end of input): 2 Enter an integer (0: for end of input): 5 Enter an integer (0: for end of input): 5 Enter an integer (0: for end of input): 5 Enter an integer (0: for end of input): 0 The largest number is 5 The occurrence count of the largest number is 4 Sample Run 2 Enter an integer (0: for end of input): 0 No numbers are entered except 0 Class Name: Exercise05_41

Answers

Answer:

Following are the code to the given question:

#include <iostream>//header file

using namespace std;

int main() //main method

{

int n=0,a[1000],c=0,val=10,ma=0;//defining integer variable

cin>>val;//input value

while(val!=0)//defining while loop that checks val is not equal to 0

{

a[n++]=val;//add value in array

cout<<"Enter an integer (0: for end of input):";//print message

cin>>val;//input value

}

for(int i=0;i<n;i++)//loop for finding the maximum in the array.

{

   ma=max(a[i],ma);//holding max value in ma variable

}

for(int i=0;i<n;i++)//loop for counting the occurence of maximum.

{

   if(a[i]==ma)//use if to check maximum value in array

   c++;//incrementing count value

}

cout<<"The maximum value is "<<ma<<" The count of maximum value is "<<c<<endl;//print result

return 0;

}

output:

Please find the attachment file.

Explanation:

In this code inside the main method, an integer variable is declared that input values and use while loop to check first input if the value is true it will accept value from the user and adds in the array.

In the next step, two for loop is declared that checks the max value and in the next loop it will count the number of maximum value which is occurring.

why is this code giving me syntax errors on the colons and on print
print("Press enter to start program")
mark = input()
speed = int(input(Enter Mark")
if mark = >60+
print("Passed")
elif 1 <= mark >= 40:
print (“FAILED")

Answers

Answer:

Explanation:

You did not give double quotations in Enter Mark part

you did not give colon in if mark = > 60 :

Searching for Venom !!

help me find him lol​

Answers

Answer:

Venom is widely distributed taxonomically, being found in both invertebrates and vertebrates; in aquatic and terrestrial animals; and among both predators and prey.

Explanation:

[tex] \red{hope \: u \: find \: venom \: asap}[/tex]

Explanation:

[tex]are \: you \: searching \: for \: me \: [/tex]

Identify the error and write correct HTML program 5
Cyber Bullying Tips<\head>
Don’t Respond Talk to a trusted adult
<|html>

Answers

Answer:

1. <BODY background = ‘‘red”>

2. <FONT type =‘‘arial ”>

Explanation:

Answer:

<html>

<head> Cyber Bullying Tips </head>

<body>

Don't Respond, Talk to a trusted adult

</body>

</html>

Hope this helps!

You have been asked to install a WLAN for a small business. You centrally locate the WAP in a large room that contains about 15 cubicles where employees work with their mobile devices. You test connectivity from all locations and find that signal strength is good throughout the room. Several months later, you are called to troubleshoot connectivity problems at the site. You find that the large room was divided into two smaller rooms by a floor to ceiling wall with metal studs. What is the most likely reason for the connectivity problems

Answers

Answer:

interference

Explanation:

The most likely reason for the connectivity problems is interference. This interference can be caused by many factors but in this scenario the most likely factor would be the metal studs and all the metal used to create the ceiling/floor. Metal is a huge interference when it comes to wifi signals. Depending on the type of metal and the amount it can greatly diminish the signal strength or even completely prevent the signal from passing to it's destination, regardless of how close the destination device is located.

supondo que um usuario pretende montar um rede em sua casa com varios computadores.Que classificaçao essa rede se enquadraria?

Answers

Answer:

Intranet.

Explanation:

Una intranet es una red de área local que está aislada para que la utilice un grupo específico. Por lo general, una intranet se refiere a la red de área local de una organización que se utiliza para las comunicaciones y las actividades informáticas dentro de la comunidad. Una intranet también se conoce como un servicio interno en línea limitado al uso del personal de la organización.

Tradicionalmente, el uso principal de las intranets ha sido la creación de repositorios que puedan actualizarse rápidamente cuando la situación así lo requiera. Los contenidos típicos de la intranet incluyen, por ejemplo, catálogos de productos, manuales de empleados, directorios telefónicos e información de personal. En el siglo XXI, las organizaciones utilizan intranets para compartir información, intercambiar ideas y trabajar en proyectos conjuntos, independientemente de la ubicación física de los empleados.

Outline the dangers arising as a result of using computers​

Answers

Answer:

Visual impairment

Physical Health problem

Explanation:

The benefits of computers are so numerous a d has been an essential business and educational tool every organization must possess for one purpose or the other. Such is how immense its importance is. However, the computer also comes with it's own risk, which may include :

Visual impairment is a major problem most computer users face or will likely encounter in the future due to prolonged exposure of the eyes to the light emanating from the screen. This visual challenge is populary called the. Computer Vision Syndrome.

Similarly, related health related issues affecting the physical body such as the back, hip, neck pains which result from postural position when using the computer.

a DVD looks just like a CD, but it holds less information​ true or false

Answers

Answer:

False

Explanation:

A DVD can hold more information because it is basically a double sided CD where it gets information on both sides whereas on a CD, you only read one side. On CDs, people can put stuff like stickers or whatever on one side while the important side is uncovered.

Question 3
There was a thunderstorm in your area and the power went out.
The traffic lights are not functioning.
• What is the first thing the law requires you to do when you arrive at an intersection?
Explain what you should do if there is an officer directing traffic.
.

Answers

The Answer Should Be:

The first thing for you to do when you arrive at an intersection is to stop at the traffic light. Your going to want to listen to the instructions or signals of the traffic Police.

I Hope This Helps? :)

the computer that communicate with each other are called ______please ask the answer in 15 minutes after 1 p.m. ​

Answers

The computers that communicate with each other are called [tex]\sf\purple{transmission \:control\: protocol\: (TCP)}[/tex].

[tex]\large\mathfrak{{\pmb{\underline{\orange{Happy\:learning }}{\orange{!}}}}}[/tex]

Type the correct answer in each box. Spell all words correctly. What is the name of the process of checking the client's production environment to ensure software and hardware compatibility with new products? The process of checking the client's production environment to ensure software and hardware compatibility with new products, is known as .

Answers

Answer: Software testing

Explanation:

Software testing refers to testing for the compatibility of the client's device with the software or hardware product being offered.

In order for the client to be able to use the software, it needs to be compatible with both the software already in the client device as well as the hardware. If it isn't, the product will not be able to add much value to the client's device which would mean that it is not fulfilling it's required functions.

When you use a business class with an object data source, the business class Group of answer choices must have attributes that match the names of the bound fields must have public properties that match the names of the bound fields must have a constructor with parameters that match the names of the bound fields must have get and set procedures that match the names of the bound fields

Answers

Answer: must have public properties that match the names of the bound fields

Explanation:

When a business class is used with an object data source, the business class must have public properties that match the names of the bound fields.

Having an attribute which match the names of the bound fields isn't necessary as well as having a constructor with parameters that match the names of the bound fields

Therefore, the correct option is B.

Using filtering as a strategy to deal with information overload requires Group of answer choices reviewing all unsolicited information presented. determining what information you may need and what information merits attention. using Wikipedia to verify information. disconnecting from sources of information completely. requesting references for all undocumented information.

Answers

Answer:

The answer is "Choice B"

Explanation:

Please find the complete question in the attached file.

A filter is a tool for removing undesirable parts. Eliminate solid from a fluid, for example. The filter may mean the filter action: it could be used as a verb. When the filter is mentioned, various branches of science and technology often refer to a certain type of device. Filtering tries to decide the data you need and the data you have to address the overload.

It is good for your eyes to look away from your computer screen (look at something far away) at least once an hour

Answers

i think this is true because my eyes start hurting after a while too

industrial property rights include​

Answers

industrial property rights include

brand

design

exclusive rights like

patents

Help please!!!!! Drivers ed

Answers

Answer: Away from the curb

Explanation: if the vehicles breaking system stops working while the vehicle is parked it will reverse into the curb instead of into traffic

Answer:

Away from the curb

Explanation:

by turning your wheels away from the curb if your breaks fail your car will roll back into the curb instead of into traffic.

Which of the following is not a characteristic of a large database?
a) Optstore items in a filing cabinet.
b) Stores items in a computer such as music.
c) stores large amounts of items such as an online store.
d) can be used as a small recipe book.​

Answers

The answer is A hope I helped
The answer would be a

TIME REMAINING
50:56
2
3
4
5
6
10
In three to five sentences, describe whether or not files should be deleted from your computer. Explain your answer.
B
I
u
а
O Word(s)

Answers

Answer: Yes

Explanation:

I believe that files should be deleted once it no more of use because it’s a waste of space. Our devices can only hold so much so if we keep pilling up files on files we will then run out of space. But if we delete what not necessary we can have space to add more useful files.

N Sistema tecnológico es: * A). Es un sistema que se usa solo en computadoras B) Es todo lo referente a tecnología como computadoras y celulares C) Es un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicios y que a su vez satisface necesidades sociales. D )Elaborar un producto con materiales Resistentes para las personas.

Answers

Answer:

C) Es un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicios y que a su vez satisface necesidades sociales.

Explanation:

Un sistema tecnológico se define como un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicio y que a su vez satisface necesidades sociales.

Por lo tanto, todos los dispositivos y máquinas que utilizamos para lograr varios fines pueden clasificarse como dispositivos tecnológicos.

Por ejemplo, un teléfono inteligente es un ejemplo típico de un sistema tecnológico.

Answer:

c

Explanation:

What is one common way to select a package name for a project?

Select one:

a.
Use a company's domain name for uniqueness


b.
Use a very short name to save typing


c.
Use a secret phrase like a password


d.
Use an encryption key for security

Answers

Answer:

Jeez idrk

Explanation:

Akkaqka

Why do people enjoy codehs

Answers

Answer: this is a moral question, but here is my view

Explanation:

we get to learn about things like java which i am currently learning for AP computer science A

Other Questions
Someone help me asap What is the difference between the axial and appendicular skeleton?A. the axial skeleton helps with blood flow and the appendicular skeleton helps with temperature regulationB. the axial skeleton allows for movement and the appendicular skeleton protects vital internal organsC. the axial skeleton protects vital internal organs and the appendicular skeleton allows for movement.D. the axial skeleton helps with temperature regulation and the appendicular skeleton helps with blood flow. Which statement is the best explanation of the dramatic irony in this passage? Hopefully the photo posted...The teacher of a statistics class records the heights (in inches) of his students and draws a box-and-whisker plot to look over the data collected. This box-and-whisker plot shows theresult. (a) What is the median height? (b) What is the range of heights? Solve for x in the diagram below main You have observed that sales of your products Alafia bitters is gradually going down. As the marketing manager of the company. Write a report to your superior vecommending 4 measures that could change the situation positively. how do u go about this question Which set best represents the positive integers?O A. {1, 2, 3, 4, ...)OB. {0, 1, 2, 3, 4, ...)O C. {..., -4, -3, -2, -1}D. {..., -3, -2,-1, 0, 1, 2, 3, ...)- 10 POINTS PLEASE HELP Listen to the audio and then choose the option that answers the question.https://cdnapisec.kaltura.com/html5/html5lib/v2.89/mwEmbedFrame.php/p/2061901/uiconf_id/36511471/entry_id/0_dwn7p1vq?wid=_2061901&iframeembed=true&playerId=Kaltura_1&entry_id=0_dwn7p1vq#What will be the result of the activity in the audio? A bigger public space A cleaner city area More animal shelters More recycling facilities please answer correctly !!!!! Will mark Brianliest !!!!!!!!!!!!!! Elijah has \frac{1}{2} 2 1 bag of candy. A bag of candy weighs 55 pounds. How many pounds of candy does Elijah have? Tylers mom had a coupon for four dollars each of the train tickets.If they bought If they bought five train tickets and paid a total of $145, what was the original cost of each ticket? 1. Prepare a contribution format income statement segmented by divisions. 2-a. The Marketing Department has proposed increasing the West Division's monthly advertising by $25,000 based on the belief that it would increase that division's sales by 16%. Assuming these estimates are accurate, how much would the company's net operating income increase (decrease) if the proposal is implemented Helppppppppppppppppppp Ill mark you brainlist dont respond if youre going to put something random I will report you :) Why are forests important for helping to control the rate of climate change? How are a woman scene in Puritan society The sides of a triangle are x cm, (x -1) cm and (x+2) cm. IF the perimeter is 31 cm, then the SHORTEST side is If you deposit $2,000 into an account that pays 2% annual interest compounded monthly, how much money will be in the account in 5 years? Serena makes $9 per hour cutting lawns. Each day, she earns about $15 in tips. lf Serena made no less than $110 on Monday, which inequality represents h, the number of hours she worked on Monday? How can embroidery machines help the environment? Positive and Negative Impact How did Sojourner Truth contribute to the women's suffrage movement