differences between the first four generations of computers​

Answers

Answer 1

Answer:

Explanation:

These first generation computer were mainly used for scientific computations. Some examples of these computers are ENIAC, EDVAC, EDSAC, UNIVAC I and IBM 701.


Related Questions

describe the application of computer system in our daily life​

Answers

Answer:

Computer is an electronic device which makes our work easier , fast , and comfortable. It is used in various sectors. It is used in our daily life , For students , It is used for solve mathematical problems and for make power point presentation.In house , it is used for online shopping , watch movies , to make recipe of different food items etc can be done using computer.

Thank you ☺️☺️

In which of the following scenarios can a trademark be applied

Answers

The term trademark can be applied if Alanna draws a shape to use as a background image on a company's website.

What is trademark?

A trademark is known to be a term that connote the  sign that has the ability of setting goods or services of one enterprise apart  from those of other enterprises.

Note that Trademarks are said to be protected by intellectual property rights and as such when one encroach on it, it can lead to legal actions against the person.

Learn more about trademark  from

https://brainly.com/question/11957410

The USGS and National Weather Service have many sensors collecting data about natural events.
That data can be used to create a weather map. Identify the parts of the Input-Process-Output model for each step.

_______ weather map displayed on a web page

_______ determination of color to be used on the map

_______ sensors collect temperature and precipitation data

Options: Output, input, process.​

Answers

Answer:

1. Output

2. Process

3. Input

Explanation:

Answer: Output, Process, Input

Explanation: got it right on edgen

Write a method to add/subtract two matrices. The header of the method is as follows:

public static double[][] addMatrix(double[][] a, double[][] b or public static double[][] subtractMatrix(double[][] a, double[][] b

In order to be add/subtract, the two matrices must have the same dimensions and the same or compatible types of elements.

Answers

Answer: A

Explanation:

A student should be most cautious using a web address ending in

Answers

Answer:

It is .com because all the others are school-safe. And .com is snatch-able.

Explanation:

Answer:

.com

Explanation:

Assuming that the actual process ids of the parent and child process are 2600 and 2650 respectively, what will be printed out at lines A, B, C, D, E, and F? Be sure to explain your answers. int main() { pid_t x, y; int value = 90; value += 30; /* fork a child process */ x = fork(); if (x < 0) { /* error occurred */ fprintf(stderr,"Fork failed"); return(1); } else if (x == 0) { /* child process */ y = getpid(); printf("child: x = %d",x); /* A */ printf("child: y = %d",y); /* B */ value += 20; printf("child: value = %d\n", value); /* C */ exit(0); } else { /* parent process */ y= getpid(); printf("parent: x = %d",x); /* D */ printf("parent: y = %d",y); /* E */ wait(NULL); printf("parent: value = %d\n", value); /* F */ } }

Answers

Answer:

Output explanation to the given code can be defined as follows:

Explanation:

In A the output is 0 , It will return fork value of the child process that is 0. so, 0 is printed during child process.  

In B the output is 2650 , in which the getpid() method returns the child process id  value that is 2650.  

In C the output is 140, As it is declared in key, all process have their own "value" copies. 20 are inserted during childhood, so 140 are written.  

In D the output is 2650, its fork() method returns the child ID to the parent process. so the value 2650 is printed.  

In E the output is 2600, Its getpid() method will returns parent process id  that is equal to 2600.  

In F the output is 120 Since the value is declared in primary, all process so their own "value" copies. 120 will be printed during process.

write the steps for renaming an existing folder​

Answers

Answer:

Rename a file or folder

Explanation:

1.Right-click on the item and select Rename, or select the file and press F2 .

2.Type the new name and press Enter or click Rename.

Answer:IT IS VERY EASY.RIGHT CLICK ON THE EXISTING FOLDER .SELECT RENAME.FOR SHORTCUT PRESS F2.

When should you try to photograph reflections on bodies of water?
A) A rainy day
B) A windy day
C) A calm day
D) A cold day

Its calm day- gradpoint

Answers

Answer:

A calm day

Explanation:

you can't see temperature in a photo the water is not calm on a windy day and won't really reflect. And I really don't think some one would bring out expensive equipment in the rain to take a photo so C makes sense.

Answer:

all of them or good days it's just what you feel like on the day

Explanation:

Use the drop-down menus to complete the statements about using section breaks in a document.
The four section break options can be found in the Breaks menu under the tab.
To insert a section break and start the new section on a new page, you would choose
To insert a section break and start the new section on the same page, you could choose

Answers

Answer:

1. Layout

2. Next Page

3. Continuous

Explanation:

Edge 2020

Answer:

Layout

Next Page

Continuous

Explanation:

What is the purpose of technology?

Answers

Answer:  In general, when technology attempts to solve problems of matter, energy, space, or time, it is successful.

Explanation:  When it attempts to solve human problems of the mind, communication, ability, etc.

Question #5
Multiple Choice
Which of these is a feature of a vector graphic?

1. photorealism
2. wireframe
3. quality loss when resizing
4. pixels​

Answers

Vector graphics are photorealistic and as such a feature of a vector graphic is photorealism.

What is a vector graphic?

A vector graphics are graphics that are made up of paths, that is they are known by a start and end point, in line with other points, curves, etc. as seen along the way.

Note that in vector graphics,  A path can be made of a line, a square, a triangle, etc.

Learn more about  vector graphic from

https://brainly.com/question/7205645

Answer:

wireframe

Explanation:

got it right on edge

do films considered as a form of media?​

Answers

Yes, it’s a mass media to promote cultures and spread social.

why do we buy new asset​

Answers

Your question is too vauge, what do you mean exactly in what terms because you aimed this to to computer and technology, In business terms asset is something that brings in money or brings a positive impact. A form of asset can be stocks, crypto, NFTs, real estate... If you own one of these you own an asset, its as simple as that.

I've got a question that is: What's a multimedia product ?

Answers

Explanation:

Multimedia Product means a product where software allows for interaction between the user and various media technologies such as the reproduction of sound and image.

hope this helps you.

dose anybody know how to look up questions by how many points they give you and if you cant do that we need to be able to do that lol.

Answers

Answer:

Uhh... I don't think we can do that lol.

Write code for a 3rd Grade math tutor program that provides simple addition questions. Use only numbers in the range 0 to 100 inclusive in the math problems. No number should exceed 100 in the questions or answers.

Answers

Answer:

Here is the JAVA program:

import java.util.Random;   //to generate random numbers

import java.util.Scanner;  //to accept input from user

public class Main {  //class name

   public static void main(String[] args) { //start of main method

      int score = 0;  //to store the number of correct answers

Random rand = new Random();  //generates random numbers

int answer;  //to store the answers given by student

       do {  //to keep asking addition questions

            int number1 = rand.nextInt(101);  //generate random number from 0 to 100 for operand 1

       int number2 = rand.nextInt(101);  //generate random number from 0 to 100 for operand 2          

           Scanner input = new Scanner(System.in);  //to read input from user

           System.out.print("What is " + number1 + " + " + number2 + " ? ");  //asks addition question

            answer = input.nextInt();  //reads the answer from user(student)

           if ((number1 + number2) == answer)  //if user answer of addition of two numbers is correct            

               score = score + 1;     //adds 1 to the score each time the answer to the addition question is correct

                 }while(answer<=100);  //keeps asking question until the answer number exceeds 100

               System.out.println("Total score is: " + score);  }}//displays the total score of student

           

Explanation:

The above program basically asks addition questions from user. Each addition question has two random numbers and the answer is given by user. At each right answer, the variable score is incremented by 1 in order to store the number of correct answers by user. If the answer to any addition question exceeds 100 then the loop breaks and program stops and the questions answered before that question is considered only.

Another way to do this is to ask 10 addition questions by using random numbers as operands and only that answer is considered which does not exceed 100. Next the if condition checks if the answer to the addition is correct. If this condition evaluates to true then the if condition inside this if condition checks that the value of answer does not exceed 100. If this inner if condition evaluate to true only then the score is incremented to 1 otherwise not and the program displays a message. Here is that program:

import java.util.Random;  

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       int score = 0;

Random rand = new Random();  

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

            int number1 = rand.nextInt(101);  

       int number2 = rand.nextInt(101);            

           Scanner input = new Scanner(System.in);

           System.out.print("What is " + number1 + " + " + number2 + " ? ");

           int answer = input.nextInt();  

           if ((number1 + number2) == answer)  

           { if (answer<=100)

              { score = score + 1;}

               else

               {System.out.print("Answer should not be greater than 100 \n");}         }   }

               System.out.println("Total score is: " + score);  }}

The screenshot of both program outputs is attached.

Answer:how the hell do u even do that the guy made one kudos to him

Explanation:I didn’t realize I was writing this here I meant to my friend

((Excel)) please help, 100 points, and brain crown thingy, not only that, i will make several of these so you can get several hundred points just for one question if you find them all, that being said... please help me...


just please..

Answers

Answer:

First you read the question and numbers, then you use the numbers in the correct way and you try reallllyyy hard, you will find your answer! Hope this helps! :D

Why might you want to save a spreadsheet as a PDF file?

Answers

Answer:

so that the required content wont be edited

So you wont forget the links

Why are passive readers most likely to have difficulty focusing on a text?

They use too many strategies.
They do too many things at once.
They prefer re-reading for meaning.
They lack interest in comprehension.

Answers

Answer:

Its b on edgynuity

Explanation:

trust me

Answer:he is right it’s B

Explanation:

Lucas is taking an algebra class with many detailed steps. Which note-taking method would be best for this class?

charting
outlining
mapping
multiplying

Answers

Answer:

outlining

I really do hope this works !

Answer:

Hello!

The answer to your question is B. Outlining

Hope this helps!

What is an Internet Service Provider? Describe at least two types of ISP. (I NEED THIS ASAP LIKE NOW)

Answers

Answer:

A company that provides service to its subscribers to the internet | WiFi, cellular data

Explanation:

WiFi provides service to its subscribers to the internet; the same applies to cellular data.

What's the answer for 1 and 2

Answers

Answer:

volume??????? 1

select a ??????? 2

Explanation:

Assume that inputList is an ArrayList of Integer objects that contains the following values. [0, 10, 30, 40, 50, 70, 70, 70, 70] What value will be returned by the call binarySearch(inputList, 0, 8, 70)

Answers

Based on the inputList and the binarySearch, the value that will be returned by the call binarySearch above is 6.

What value will be returned?

With inputList =  [0, 10, 30, 40, 50, 70, 70, 70, 70], the first call would be:

1st call = binarySearch(inputList, 0, 8, 70)

mid = 8 + (0/2)

= 4

if (70 is less then 50)

A second call would yield:

2nd call = binarySearch(inputList, 5, 8, 70)

mid = 13/2

= 6

if (70 = (70))

Return is 6 is the above holds so output is 6.

Find out more on Binary searches at https://brainly.com/question/21475482.

Dawn is trying to find out how much weight she can push across the room. She is really trying to find her __________. A. flexibility B. muscular endurance C. cardiovascular fitness D. muscular strength

Answers

The correct answer is d. muscular strength.

Explanation :

The maximal force a muscle can create when it contracts is referred to as muscular strength. When compared to someone with lower physical strength, someone with better muscular strength can lift heavier weights. Lifting progressively larger weights over time and eating a diet rich in protein-based foods can help a person's physical strength gradually grow.

I hope this helps. Please mark "Brainliest" if you can.

the measurement is taken around the biggest part of the arm where the sleeve ends​

A. Arm circumference
B. Sleeve length
C. Armhole
D. Bust

Answers

Answer:

A. Arm circumference

Explanation:

The arm circumference is the measurement that goes around your arm at the biggest part of it which would be where the biceps forms, that is where normally our short sleeve clothing ends and that is a measure to be able to fit clothes properly.

It is a measure often in the midpoint between the elbow and the shoulder and it is often used to see the nutritional status of a person.

4.
prevents many people from having access to technology and the Internet.
A. Digital literacy
B. Living in a wealthy nation
C. A good infrastructure
D. Income inequality

Answers

Income inequality and  Digital literacy prevents many people from having access to technology and the Internet.

How does digital system affect people's lives?

People do not have access to internet because of poor economic and social problems, such as fewer job opportunities, less competitive economies and others.

Other Factors such as digital literacy and low income levels, geographical restrictions, lack of zeal to use technology are known to have contributed to the digital division in the country.

Learn more about Income inequality from

https://brainly.com/question/24554155

Networks can be classified by geographical scope as PANs, , and WANs. The cables and signals used to transport data from one network device to another are a communication . Wired channels include twisted pair wires, cables used for cable television, and -optic cables used for high-capacity trunk lines. Wireless channels use signals and microwaves. Government agencies regulate some wireless . The transmission capacity of a channel is referred to as . Channels that are capable of moving at least 25 Mbps are classified as . Networks can be configured in various , such as star, mesh, point-to-point, or bus. Any device in a network is referred to as a(n) . Data equipment includes computers. Data equipment includes modems and routers. Additional DCEs include hubs, switches, bridges, repeaters, and access points. Networks use physical, transport, and arrival communication to set the rules for efficiently transmitting data and handling errors.

Answers

Answer:

1. LANs.

2. Channel.

3. Coaxial; fiber

4. RF; Channels.

5. Bandwidth.

6. Broadband.

7. Topologies.

8. Node.

9. Terminal.

10. Communication.

11. WAP.

12. Protocols.

Explanation:

1. Networks can be classified by geographical scope as PANs, LANs, and WANs.

2. The cables and signals used to transport data from one network device to another are a communication channel.

3. Wired channels include twisted pair wires, coaxial cables used for cable television, and fiber-optic cables used for high-capacity trunk lines.

4. Wireless channels use RF signals and microwaves. Government agencies regulate some wireless channels.

5. The transmission capacity of a channel is referred to as bandwidth.

6. Channels that are capable of moving at least 25 Mbps are classified as broadband.

7. Networks can be configured in various topologies, such as star, mesh, point-to-point, or bus.

8. Any device in a network is referred to as a node.

9. Data terminal equipment includes computers.

10. Data communication equipment includes modems and routers.

11. Additional DCEs include hubs, switches, bridges, repeaters, and WAP access points.

12. Networks use physical, transport, and arrival communication protocols to set the rules for efficiently transmitting data and handling errors.

Write a program (Console or GUI) that determines the change to be dispensed from a vending machine. An item in the machine can cost between 25 cents and 1 dollar, in 5-cent increments (25, 30, 35,…,95, 100), and the machine accepts only a single dollar bill to pay for the item. For example, a possible sample dialog might be the following:

Output: Enter price of item (from 25 cents to a dollar, in 5-cent increments):

45 You bought an item for 45 cents and gave me a dollar, so your change is 2 quarters, 0 dimes, and

Answers

Answer:

Here is the JAVA program:

import java.util.Scanner;  //to accept input from user

public class Main {   //class name

  public static void main(String[] args) {  //start of main function

Scanner input =new Scanner(System.in);  // creates Scanner class object

int amount, quarters, dimes, nickels, pennies,change;   //declare variables

System.out.println("Enter the price of the(from 25 cents to a dollar, in 5-cent increments): ");  //prompts user to enter the price

amount=input.nextInt();   //reads amount from user

change= 100-amount;   //computes change

System.out.println("You bought an item for " + amount+" cents and gave me a dollar, so your change is :");  

quarters=change/25;  //computes quarters

change=change%25;  //computes quarter remaining

if(quarters == 1)   // if quarter is equal to 1

System.out.println(quarters+ " quarter");   //prints quarter value in singular

else if (quarters>1)   // if value of quarters is greater than 1

System.out.println(quarters+" quarters");     //prints plural quarters value

dimes=change/10;  //computes dimes

if(dimes == 1)   // if value of dime is equal to 1

System.out.println(dimes+ " dime");   //prints single value of dimes

else if (dimes>1)   //if value of dimes is greater than 1

System.out.println(dimes+" dimes");  //prints plural value of dimes

change=change%10;   //computes dimes remaining

nickels=change/5;  //computes nickels

if(nickels == 1)   //if value of nickels is equal to 1

System.out.println(nickels+ " nickel");   //prints single value of nickels

else if (nickels>1)   //if value of nickels is greater than 1

System.out.println(nickels+" nickels");   //prints plural value of nickels

change=change%5;    //computes nickels remaining

pennies=change;  //computes pennies

if(pennies == 1)   //if value of pennies is equal to 1

System.out.println(pennies+ " penny");   //prints single value of pennies

else if (pennies>1)    //if value of pennies is greater than 1

System.out.println(pennies+" pennies");     } }  //prints plural value of pennies

Explanation:

I will explain the program with an example:  

Suppose amount= 75  

Then change = 100 - amount= 100 - 75 = 25  

change = 25  

quarters = change/25 = 25/25 = 1  

quarters = 1  

change = change % 25 = 25%25 = 0  

dimes = 0/10 = 0  

Now all other values are 0.  

Now the following line is printed on screen:  

You bought an item for 75 cents and gave me a dollar. Your change is:  

Now program moves to if part  

if quarters == 1  

This is true because value of quarter is 1  

sot "quarter"   is displayed with the value of quarters

Now the following line is printed on screen:  

1 quarter  

So the complete output of the program is:  

You bought an item for 75 cents and gave me a dollar. Your change is:  

1 quarter

Here is the first paragraph. It has two sentences.
This is the second paragraph. It also has two sentences.
This is the third paragraph, consisting of a single sentence.

The missing element is... Which one

Answers

Answer:

I don't quite understand, you need to give us the full options with the question a bit more clearer

Answer: it is <p></p>

Explanation: guessing didn't pay off : (

11. Which of these types of programa is bothersome but not necessarily dangerous?
A Worm
B. Adware
C. Virus
D. Trojan

Answers

Answer:

Virus

Explanation:

Your answer should be C. Virus
Other Questions
Jim is putting money into a savings account. He starts with $350 in the savings account, and each week he adds $60.Let S represent the total amount of money in the savings account in dollars), and let W represent the number of weeks Jimhas been adding money. Write an equation relating Sto W. Then use this equation to find the total amount of money in thesavings account after 16 weeks.Equation:CheckSave For LaterSubmit Assignment2020 McGraw-Hill Education. All Rights Reserved. Terms of Use | Privacy | Accessibility Solve the system of equations by multiplying. Check the answer by graphing the system of equations.{- 4x + 3y = 152x +y = -5The solution is _______? If a student is titrating 10.0 mL of 1 M HNO3 with 1M NaOH and another students is titrating 10.0 mL of 1 M H2SO4 with 1 M NaOH, would they need the same volume of NaOH to reach the equivalence point? Explain your answer. is the art of building.C.a. Architectb. DesignArchitectureConstructiond.Please select the best answer from the choices providedA00 D Why does supplier competition make it harder for an entrepreneur to be successful what is the sum of the degrees of the exterior angles of a convex pentagon Determine what the constant, coefficient, and variable are in the expression 9x + 4 what is the meaning of happiness Monopolistic competition has which drawback compared to a monopoly?A. Consumers have fewer options for buying new products.B. Companies have less capital for expensive investments.C. Prices are more likely to be fixed at high levels.D. Governments are more likely to regulate them. help me please, I'll mark brainliest!!! (5) P-4-7 set up & solve, rateA gold dredge is a machine that was used in the early 1900s to extract gold from a river or pond. The amount ofdirt a gold dredge can dig in 1 minute is equal to the amount it would take 3 people, each digging at the samerate, to dig in 1 day. At this rate, how many days would it take 2 persons to dig as much dirt as a gold dredgecan dig in 60 minutes ?A) 30 B) 45 C) 60 D) 90Show work please. can someone please explain? lol Pagkakatulad at pagkakaiba ng Romeo at Juliet at Anak Businesses in the nation of Islandia have been accumulating cash because they have a pessimistic outlook of the national economy. Due to recent changes in the economic outlook of Islandia, business leaders have started investing some of their accumulated cash. Instructions: Enter your answers as a whole number. Use a positive number to show an increase and a negative number to show a decrease. a. If business leaders invest a total of $30 billion of accumulated cash, what is the maximum expected change in GDP if Islandia's marginal propensity to consume is 0.8 Im so stuckk on this not the math one sorry Read the excerpt from "Daughter of Invention"."iYa, ya!" She waved them out of her room at last. "There is no use trying to drink spilt milk, that's for sure."What does Lauras attempt at trying to use an English idiom reveal about her character?She is very careful about the way she uses the English language.She is hesitant to speak English most of the time.She is eager to try English phrases and expressions.She prefers to speak in Spanish, rather than English. which colony was first settled by Dutch settlers? How does the Bill of Rights protect the idea of federalism? Select the allusion in the passage.Mr. President, it is natural to man to indulge in the illusions of hope. We are apt toshut our eyes against a painful truth, and listen to the song of that siren till shetransforms us into beasts. Is this the part of wise men, engaged in a great andarduous struggle for liberty? For my part, whatever anguish of spirit it may cost, Iam willing to know the whole truth; to know the worst, and to provide for it.Adapted from Patrick Henry, "Give Me Liberty or Give Me Death" What is 70.5 rounded to the nearest whole number?