The invention of computers as a technological tool has completely changed our lives. Name any three areas to support this statement and explain how computers have made our lives better

Answers

Answer 1

Answer:

-They allow huge amounts of information to be stored in a small space

-They also allow a person to calculate mathematical problems with ease

-They allow people to communicate with one another through internet sites

-Finally, computers provide teachers and students the means to communicate quickly via email. Online grading systems also make it easier to view and audit a student's progress

Hope i helped!


Related Questions

Do you think the benefits outweigh the risks? Why or why not?

Answers

Answer:

Varies By Person. This question is formed to make you think, it's addressed to you. There are no, wrong or right answers. Just needs to be answered with reason to back up your opinion.

Explanation:

Do you think the benefits outweigh the risks? Why or why not?

In my opinion, the benefits always outweigh the risks. This is due to the common nature that the majority of people will view everything in life, every transaction by how much it benefits them. People will also consider what those benefits are. If thing x only has one benefit but it's one I really want, I may take on the 2+, 5+, or 10+ risk that comes with it.

Although that's just my opinion, others may differ, you just need to find your stance.

What market was technology designed to appeal to?

Answers

Answer:

Explanation: Technology has transformed marketing by making campaigns more personalized and immersive for people and creating ecosystems that are more integrated and targeted for marketers. And it's not just the interface between brands and people that have been transformed.

write an algorithm to print the natural numbers from 1 to 15​

Answers

Answer:

1. n = [ ]

2. i = 0

3. j = i + 1

4. i = j

5. append i to n

6. Repeat 3 to 5

7. Stop when i = 15

what is data? why is it important to collect data ? explain the points.​

Answers

Answer:

so i dont know if u mean like science or math but like there similar. so data is the results and information you get when you do experiments. It is important to collect it so it can back up your reasons and points. It also helps us advance and become smarter.

Explanation:

Ian’s photography teacher asks him to take some photos of a few different species over the weekend. Which group of photos would MOST LIKELY get Ian a good grade if he turned them in?

A.
pictures of a lion, tiger, and leopard from his visit to the zoo

B.
pictures of Ian’s backyard, a birdhouse, and the river behind the school

C.
pictures of Ian’s golden retriever playing with the neighbor’s puppy

D.
pictures of a mother bird feeding her baby chicks in a nest

Answers

I think it’s b or d..............

To print preview a document, navigate to the _____ tab and select the Print option. File Page Design View Insert

Answers

Answer:

Option A

Explanation:

The process of viewing the print preview option in MS word is as follows -

a) First of all click on the File tab

b) After clicking on file tab, click on the print button at the left hand side

c) In the new tab that open up after clicking on the print button will provide an option of print preview.

Hence, option A is correct

Answer:

b. page layout

Explanation:

P16 Consider the following network. ISP B provides national backbone service to regional ISP A. ISP C provides national backbone service to regional ISP D. Each ISP consists of one AS. B and C peer with each other in two places using BGP. Consider traffic going from A to D. B would prefer to hand that traffic over to C on the West Coast (so that C would have to absorb the cost of carrying the traffic cross-country), while C would prefer to get the traffic via its East Coast peering point with B (so that B would have carried the traffic across the country). What BGP mechanism might C use, so that B would hand over A-to-D traffic at its East Coast peering point?

Answers

Solution :

Considering the following data :

[tex]$\text{ISP B}$[/tex] provides the national backbone to the regional [tex]$\text{ISP A}$[/tex].

[tex]$\text{ISP C}$[/tex] provides the national backbone to the regional [tex]$\text{ISP D}$[/tex].

Each of the ISP consists of one autonomous systems (AS).

[tex]$\text{ISP B}$[/tex] would like to hand over the traffic of C through the [tex]$\text{West}$[/tex] Coast.

The [tex]$\text{ISP C}$[/tex] would like to receive traffic from B's peering point via East Coast.

One way for [tex]$C$[/tex] to force [tex]$B$[/tex] to hand over all of [tex]$B$[/tex]’s traffic to [tex]$D$[/tex] on the east coast is for [tex]$C$[/tex] to  only advertise its route to [tex]$D$[/tex] via its east coast peering point with [tex]$C$[/tex].

In most software programs, which color arrows selects the points in a vector
Black
White
Gray
Red

Answers

Answer:

in think gray is used as arrow color which selects the points in a vector

The decimal equivalent of the product of 1011 and 1100 is

Answers

Answer:

132

Explanation:

We convert each number to base 10 (decimal) and multiply.

So 1011₂ = 1 × 2³ + 0 × 2² + 1 × 2¹ + 1 × 2⁰

= 1 × 8 + 0 × 4 + 1 × 2 + 1 × 1

= 8 + 0 + 2 + 1

= 11₁₀

1100₂ = 1 × 2³ + 1 × 2² + 0 × 2¹ + 0 × 2⁰

= 1 × 8 + 1 × 4 + 0 × 2 + 0 × 1

= 8 + 4 + 0 + 0

= 12₁₀

So, 1011₂ × 1100₂ = 11₁₀ × 12₁₀ = 132₁₀

So, the decimal equivalent of the product of 1011 and 1100 is 132

does trend in computing important for organization management?explain​

Answers

Answer:

Yes

Explanation:

Trend analysis can improve your business by helping you identify areas with your organisation that are doing well, as well as areas that are not doing well. In this way it provides valuable evidence to help inform better decision making around your longer-term strategy as well as ways to futureproof your business.

The National Archives is part of the federal government, which means that its content:

-belongs to everyone.

-is off limits to the public.

-comes with extreme licensing fees.

-is outdated and useless.

Answers

Answer:

belongs to everyone.

Explanation:

A National Archive can be defined as the collection of data (informations) and documents by the government of a particular country for record keeping purposes.

Basically, these documents comprises of information about important and historical events that have happened in the country or events generally related with the country.

Hence, the National Archives is part of the federal government, which means that its content belongs to everyone. This is simply because the federal government is a government of the people, for the people and by the people. Thus, the ownership of governmental institutions or agencies belongs to the general public i.e the citizens of the country.

The following if statement tests the rainfall in New York’s Central Park during the months of June, July and August.

if (low <= rain && rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
It could be replaced with:
I.

if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
}
else
System.out.println("Rainfall amount is abnormal.");
II.

if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
}
else
System.out.println("Rainfall amount is abnormal.");
III.

if (rain >= low)
System.out.println("Rainfall amount is normal.");
else if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
I only
II only
III only
(II or III)
I, II or III

Answers

Answer:

II only

Explanation:

In the original code, both conditions of low<=rain and rain >= high must be met for the print message to be executed. This is denoted by the && logical operator.

The code in II does the same thing. It first checks that the low <=rain condition is true; then it goes on to check if the rain >= high condition is true as well before the "normal" print statement can be executed. But if either of the condition is not true, it prints "abnormal" because both conditions must be true.

PI
s
ne
poem for the
During reading: Work
on the following questions:
suggests
I
a
1
b
What do you predict the poem will be about?
How does the shape support what the titles
How many stanzas does the poem have?
b How many sentences does it have?
3 Read the poem aloud in your group.
2
a
m
Until I saw the Sea by Lilian Moore
ou the Sea​

Answers

Explanation:

As the qn was copy pasted from another document...the qn seems incorrect... and incomplete..

pls see to it and attach the correct qn...

sorry

Don't Answer if you are going to give me a link! Don't Waste My Points!

An image is considered a portrait if the person is looking into the camera lens.

A.
True

B.
False

Answers

Answer:

Hello there! :) It could be considered a portrait but that is not exactly what a portrait is.

Explanation:

A portrait is mostly considered a painting or drawing of someone that that same person has drawn. For example, a portrait of the Mona Lisa would have been her drawing/painting herself. Now someone just looking at camera lens would'nt exactly be true, it would be false so the answer is B. False

Hope this helps!

Answer: False

Explanation: I don't know 100%, but it wouldn't make sense if it was because the person can be really far away and still be looking at camera, as well as be looking slightly away from lens and it still look like a portrait.

What is a circuit breaker and how is it different from a fuse? Why do we need these two different devices?
DO NOT PLAGARIZE!

Answers

Answer:

Circuit breakers and fuses both have the same purpose, but a fuse will melt when stopping electricity where as circuit breakers can just be reset. You need both devices in order to stop a overload of power that could fry your electronics or worse, start fires.

Explanation:

What value is returned by the call mystery(2, 3, 6)?

answer choices:

9

10

14

8

20

Answers

Answer:

8888888888888888888888888888Explanation:

yyugjhgfgdsfsghgtredfzgxhcjvkiu

___ design uses the same webpage content, but applies styling depending on the viewport size of the device

Answers

coding design used snake

List 5 general safety precautions that you can take when working with a computer equipment.

Answers

Answer:

Wear the right clothes, unplug all equipment, keep your work area clean, check for damaged parts, and do not force components into ports.

Explanation:

These are all general safety precautions when working with computer equipment.

Choose the correct color to complete the sentence.
It is generally understood that
Blank is the best color choice for a global audience.

Answers

Answer:blue is the best color choice for a global audience.

What are some common summary operations that aggregate functions can perform in a crosstab query? Check all that apply.
adding
counting
dividing
subtracting
identifying an average
calculating a minimum or maximum
predicting the next value in a pattern.

Answers

Answer:

adding

counting

identifying average

calculating max or min

Explanation:

edg 2021

WHERE THE SMART PEOPLE AT??????


PLEASE I NEED HELP

THIS IS MY LAST QUESTION FOR THE TEST

PLEASE

I KNOW THE ANSWER IM JUST MAKING SURE


You can use tables for layout work. However, in XHTML, each form control should have its own ______ element

a. method

b. textarea

c. label

d. fieldset

Answers

Answer:

I would say A. Method

Explanation:

.

List at least two questions you can use to help decide whether a website's information is trustworthy

Answers

Answer:

Questions (three) that can be used to decide whether a website's information is trustworthy are;

1) Who is or are the authors of the website

2) What type of information the website conveys

3) Why was the information published on a website

Explanation:

1) Who is or are the authors of the contents of the website including the authors credentials so as to ascertain whether the author is qualified with regards to the topic or topics written about on the website

2) What are the information presented on the website and the context the in which the information are presented

Are the articles in the website backed by a source, with hyperlinks, references or footnotes

3) Why was the on the website information created. Is the information to entertain, persuade, sell or inform

draw a flowchart to input a number and find out whether it is divisible by 7 or not​

Answers

Note:

% is Modulus,

So it's taken as num mod 7, if that evaluates to 0 there is no reminder therefore divisible by 7.

Dose anybody know how to do this because i dont.

Answers

Answer:

All you need to explain in this assignment is specific things which makes a product an innovationi or new. This is what emerging means in the first question. Then say why these new technologies can be hard to identitfy.

Explanation:

Write a C program to insert and delete values from a stack(to perform pop and push operations) using an array data structure

Answers

Answer:

#include<stdio.h>

// Method to insert a value into a stack

void push(char value, char myStack[], int *top, int sizeOfStack){

   if(*top == -1){

       myStack[sizeOfStack - 1] = value;

       *top = sizeOfStack - 1;

   }

   else if(*top == 0){

       printf("Stack is full. \n");

   }

   else{

       myStack[(*top) - 1] = value;

       (*top)--;

   }

}

//Method to remove a value from a stack

void pop(char myStack[], int *top, int sizeOfStack){

   if(*top == -1){

       printf("Stack is empty. \n");

   }

   else{

       printf("Value removed: %c \n", myStack[(*top)]);

       // Now if the value removed was the last value in the stack

       // you should set top to -1.  

       // This would show that the stack is now empty

       if((*top) == sizeOfStack - 1){

           (*top) = -1;

       }

       else{

           (*top)++;

       }

   }

}

//Method to test the pop and push methods

int main() {

 //variable to hold the size of stack

 int sizeOfStack = 6;

 //create the stack

 char myStack[sizeOfStack];

 

 //set the top to -1

 //this is to show that the stack is initially empty

 int top = -1;

 //insert a value tot the stack

 push('x', myStack, &top, sizeOfStack);

 //print the value on the top

 printf("Value on top of stack: %c\n", myStack[top]);

 //insert another value to the stack

 push('y',myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //insert another value to the stack

 push('z',myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //remove the last inserted value

 pop(myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //remove another value

 pop(myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 return 0;

}

Sample Output:

Value on top of stack: x

Value on top of stack: y

Value on top of stack: z

Value removed: z  

Value on top of stack: y

Value removed: y  

Value on top of stack: x

Explanation:

The code above has been written in c and it contains comments explaining important parts of the code. Please go through the comments.

It also contains a sample output resulting from the run of the program.

7. What is a slide transition?

Answers

Answer:

Is this multiple choice? If not, its a visual effect from one slide to another.

Explanation:

Answer:

A slide transition is the visual effect that occurs when you move from one slide to the next during a presentation. You can control the speed, add sound, and customize the look of transition effects

Explanation:

hope this helps:)

The First National Bank debited $100.00 from your checking account into your savings account. What would the transaction descripton be?

Answers

Answer:

32 Day Interest Plus

Amount 1 - 32 days (per annum) 33 - 64 days (per annum)

R1 000 - R9 999 0.55% 0.65%

R10 000 - R24 999 0.80% 0.90%

R25 000 - R49 999 1.05% 1.15%

R50 000 - R99 999 1.55% 1.65%

Explanation:

does trend in computing important for organization management?​

Answers

Answer:

yes it is...................

which statement about routers is !!!FALSE!!!

a. they (routers) put packets in the right order after they arrive at their destination

b. they are located at the intersections of the network of wires and cables that make up the internet.

c. they check the address on each packet that arrives and decide which way it should go next​

Answers

Answer:

b. they are located at the intersections of the network of wires and cables that make up the internet.

Explanation:

Given that Router is a computer networking device that operates by transferring data packets between computer networks, while also ensuring traffic organizing tasks on the Internet.

Hence, Routers put packets in the right order after they arrive at their destination by matching the destination IP address of the packet and one of the addresses in the routing table.

Also, Routers check the address on each packet that arrives and decide which way it should go next​ by ensuring the data packets are summarized for the outgoing interface recorded in the table entry.

Therefore, the correct answer is option B

Where is information stored in the computer?​

Answers

Answer:

files

Explanation:

data is stored in files

Other Questions
) Punctually at midday he opened his bag and spread out his professional equipment. (Rewrite the sentence by using past perfect tense) Please actually do it im gonna k m s if someone answers this with a link again (5 points) The population of a state changes due to births, deaths, and immigration. The annual birth rate is 14.3 births per 1000 residents, the death rate is 11.8 deaths per 1000 residents, the immigration rate into the state is 21.6 immigrations per 1000 residents, and the emigration rate out of the state is 5.5 emigrations per 1000 residents. Find the population growth rate as a percentage. Please answer correctly !!!! Will mark Brianliest !!!!!!!!!!! Extra points!!!Have a good Monday everyone. Who is the salesman in the cartoon supposed to represent? Joseph McCarthyFidel CastroJohn Foster DullesO Nikita Khrushchev PLZZ HELP ILL GIVE BRAINLIEST 100 pointssssWhy is Esperanza initially excited to receive shoes from her neighbor in "The Family of Little Feet"?Question 1 options:She asked for shoes like these, but her parents can't afford them.To her, the shoes represent power because they are the shoes that business women wear.The shoes symbolize adulthood and beauty to Esperanza because women like Marin wear them.Esperanza never receives gifts, so the shoes are very special.Question 2 (2 points) Which quotation from "The Family of Little Feet" best shows how the girls' feelings about the shoes changes by the end of the vignette?Question 2 options:"She is young and dizzy to hear so many sweet things in one day . . .""Today we are Cinderella because our feet fit exactly . . . ""We are tired of being beautiful."" . . . these are the best shoes. We will never go back to wearing the other kind again."Question 3 (2 points) Which of the following sums up a theme of "The Family of Little Feet" that could be supported by the text?Question 3 options:Some aspects of adulthood that seem glamorous to a child are not actually glamorous at all.There is a cost to being beautiful.The transition from childhood to adulthood is both exciting and scary.All of the aboveQuestion 4 (2 points) Why does Esperanza want to eat lunch at school in "A Rice Sandwich"?Question 4 options:She sees the kids who eat lunch at school as "special."She doesn't get along with her mother, so she doesn't want to eat lunch with her.Nenny, Carlos, and Kiki eat lunch at home, and she is tired of fighting with them.Her house is so far from the school that she is late returning to class after lunch every day.Question 5 (2 points) Which line from the text best reveals Esperanza's feelings of inadequacy or shame in "A Rice Sandwich"?Question 5 options:"Yes, I nodded even though I knew that wasn't my house and started to cry.""You don't live far, she says. You live across the boulevard.""My turn came and I stood in front of the big desk with holy pictures under the class while the Sister Superior read my letter.""If I ate at school there'd be less dishes to wash. You would see me less and less and like me better . . . Where is my favorite daughter you would cry . . ."Question 6 (2 points) Why does Esperanza feel uncomfortable at the baptism party in the vignette "Chanclas"?Question 6 options:She is wearing a hand-me-down dress that doesn't fit.Her mother forgot to buy her new shoes for the party.She feels like everyone is staring at her because she looks older now.Esperanza's mother is loud and embarrassing to her.Question 7 (2 points) Which best describes the internal conflict that Esperanza faces in the vignette "Chanclas"?Question 7 options:Esperanza both loves and hates her family.Esperanza is grappling with her own religious views at the baptism party.Esperanza feels like she is not quite a child anymore but not quite an adult, either, so she feels awkward at the party.Esperanza is struggling with peer pressure because her friends want her to drink at the party.Question 8 (2 points) In the vignette "Hips," why does Esperanza say that Nenny "doesn't hear me. She is too many light-years away. She is in a world we don't belong to anymore"?Question 8 options:Nenny has new friends in the neighborhood and spends less time with Esperanza, Lucy, and Rachel.Nenny has started making some bad choices, and Esperanza is determined to make good choices to have a better life.Esperanza is separating herself from her entire family because she does not like their traditions.Now that Esperanza is a teenager and Nenny is still a child, their age gap seems more significant.Question 9 (2 points) Which of the following quotations related to Esperanza's first day at work best reveals that she is very young and naive in the vignette "The First Job"?Question 9 options:" . . . break time came, and not knowing where else to go, I went to the coatroom because there was a bench there.""It was real easy, and I guess I wouldn't have minded except that you got tired after a while and I didn't know if I could sit down or not . . ."" . . . he said it was his birthday and would I please give him a birthday kiss. I thought I would because he was so old . . .""I ate real fast standing in one of the washroom stalls and had lots of time left over, so I went back to work early."Question 10 (2 points) SavedBased on the vignette "The First Job," what does Esperanza lack most?Question 10 options:Confidence in herselfA strong work ethicAn ability to learn new things quicklyKindness toward other people How did American agriculture support other industries? please anybody can help me to solve this question btw im from malaysia but the questions have the eng subtitle so you can read the eng subtitle, no worries! please help me to answer the questions please dont waste my points i really need the answer determine the speed in metres per second if it takes 10 minutes to walk 1,2 kilometre Write an original sentence with each of the following words.1. algo ______________________________________________________2. alguien ______________________________________________________3. siempre _______________________________________________________please help I will give branilest and 5 * and 10 points for the best answerI don"t want to see an like if i do i will reported ILL GIVE BRAINIEST IF SOMEONE CAN HELP help pleaseeeeeeeeeeeee The frequency of genes that lead to favorable traits increases because A. favorable traits always start out as the rare form and become more common B. the genes for favorable traits are dominant over those for unfavorable genes C. Both B and D D. those genes continue on to the next generation when the individuals that contain the genes successfully survive and reproduce Mr.Robin assign 3/4 hour of homework each day to his students for 4 days in a row. How many total hours of homework does Mr.Robin assign his students? how does the novel the great gatsby represent the dream of american people What is the volume of a pentagonal prism that has a base area of 5.16 cm2 and a height of 9 cm? 46.44 cm 3 19.32 cm 3 55.32 cm 3 14.16 cm 3 How positive relationships in a family could assist you achieve academically here's the question :))