Choose the answer that best completes the statement.
Which of the following is an example of a recent development in technology?
A. using books to gather information
B. using wireless phones to call people
C. using a bicycle to travel
D. going to the library to do research

How have computers changed over time?
A. They are smaller and more powerful.
B. They are often purchased for personal use.
C. They are powered by electricity.
D. all of the above

Which of the following is a possible negative effect caused by changes in technology?
A. Products cannot be produced in mass quantities with the use of robotics.
B. Products can be produced in mass quantities by skilled craftsmen.
C. Products produced in mass quantities by robotics replace jobs.
D. Products produced in mass quantities by robotics are cheaper to maintain.

Answers

Answer 1
1. A - everything starts there
2. D - always
3. C - true
Answer 2
The first guy answer this was wrong it’s not A

B

D

C

Related Questions

Which statement describes the word "iterative"?

1)Working in cycles where everyone is involved in making new versions of the application each time than picking the best one at the end.

2)Working in a way to make sure that the product is perfect the first time.

3)Working in cycles and building on previous versions to build an application through a process of prototyping, testing, analyzing, and refining.

4)Working as a team to take on each other's ideas when they notice the mistakes you've made.

Answers

Answer:4 should be correct

Explanation:

The answer is option 4 I believe if you need proof tell me and tell me how this photo is I do photography

In what ways do you, as a user, interact with a computer? What input actions do you perform?

Answers

We use a computer to study, play video games, talk to each other and do online school.

As a user you would interact with your computer by typing notes, essays, answers etc. We also use our computers in a daily basis for online school, interacting with friends, and video games.


Hope this helped :)

Open the NetBeans IDE and create a new project named MySizes.java. Your program should do the following:
Declare and initialize an int variable for the comparison expression (waist measurement).
Assign a value to the variable to be used as the customer’s response for the program.
Create a switch-case statement that includes three cases and a default statement. Use appropriate conditional operators ( =, >) to define the three case comparisons.
Create output lines for each case, stating the appropriate pant size.
Create a default statement if the customer waist measurement does not match any case.
Then, Create nested if statements that accomplishes the same results.
( I really need this for a project, it doesn't need to be correct it just needs to look like it is, this is in Java )

Answers

Explanation:

Open the NetBeans IDE and create a new project named MySizes.java. Your program should do the following:

Declare and initialize an int variable for the comparison expression (waist measurement).

Assign a value to the variable to be used as the customer’s response for the program.

Create a switch-case statement that includes three cases and a default statement. Use appropriate conditional operators ( =, >) to define the three case comparisons.

Create output lines for each case, stating the appropriate pant size.

Create a default statement if the customer waist measurement does not match any case.

Then, Create nested if statements that accomplishes the same results.

( I really need this for a project, it doesn't need to be correct it just needs to look like it is, this is in Java )

plz help brainly and ill give as much points as possible

Answers

Copy and paste: My personal creativity when crating video games simply comes from my spirit to always be different. Most video games that are very popular now are because they are creative in their own way and don’t replicate other games. One day I will make a game and use pure creativity in it and hope it becomes really big one day. Reward, risk/loss, and levels could create a nice sports game and these elements are seen in almost all video games. I’m going to start with a reward for winning the game, then every 5 games you win you move on to the next level. If you lose fail a level more than 3 times you will be placed in the previous level. In real life, the casino is an example of how real-life uses rewards to keep people coming back for more. People are so addicted to gambling in casinos because of the money earning process. You could either win money from the casino or lose money. Generally, many people gamble huge amounts of money at the casino, this is why parents encourage you not to gamble when you get older. The way my game would get more intense as you play it is by colors and music and size. On the first level, all of your obstacles will be large and have solid colors with delightful music. Then going into more levels the obstacles will be smaller making it harder for the player to aim where he’s going, The colors of the obstacles would be transparent so that its harder for players to know where to move their character to, and the intense music that start to creep in makes it harder for the player to concentrate, this makes the player more nervous and gives anxiety every time he/she fails. Intensity is important in games or else they would be too easy, the easier the game is the more boring it gets. Although the game may get more frustrating every level you do, There are cash cups that the more competitive players get, however, to compete in cash cups you have to achieve level 30. This gives the player a better reason to not quit the game. Games can be very challenging but when they think about the fact of earning money from games it gives them a reason to not quit. My game will be Unique and I will make sure That it is different from others in many ways.

This dude got it under control

What are some benefits of the Agile development methodology?


a)It allows people to contribute to more than one part of a project and more people can contribute to each part.

b)People can be very specialized in the part of the project they do and things are easier to manage.

c)Things move quicker and people can be done with their one job really fast.

d)Everyone knows the exact process that will happen and people can contribute however they feel fit.

Answers

Answer:

C should be it

Explanation:

I did this today and it was right

c things move quicker and people can be done with their one job really fast

Choose the appropriate computing generation.
(Options for each: 4th generation, 3rd generation, 5th generation
: artificial intelligence

: integrated circuits

: microprocessors

: parallel processing

Please don't answer just for points this is for a grade and I genuinely need help.

Answers

Answer:

Microprocessor are 4th generation

Integrated circuit is 3rd generation

Artificial intelligence is 5th generation

Parallel processors is 5th generation

Answer:

5th Generation : artificial intelligence

3rd Generation : integrated circuits

4th Generation : microprocessors

5th Generation : parallel processing

Explanation:

Got it right on edge!

In this project, you will create a Java program that asks a customer at a clothing store for his waist measurement. Based on his response, you will tell him his pant size is small, medium, or large. You will write this code twice, once using a switch-case statement and once using nested if statements.
( PLEASE HELP, THIS IS MAKING ACTUAL CODE THEY NEVER TAUGHT ME HOW TO CODE SO I DONT KNOW HOW TO, THE CODE DOESN'T NEED TO BE RIGHT IT JUST NEEDS TO LOOK LIKE IT )

Answers

import java.util.Scanner;

public class WaistSize {

public static void main(String[] args) {
Scanner input = new Scanner(System.in);

System.out.println("What is the measurement of your waist in inches?");
int waistSize = input.nextInt();

String sizeGuideA = sizeGuide1(waistSize);
String sizeGuideB = sizeGuide2(waistSize);

System.out.println("Nested If Statements return: " + sizeGuideA);
System.out.println("Switch-Case Statements return: " + sizeGuideB);

}
public static String sizeGuide1(int n) {
String size = "null";

if(n <= 25) {
return size = "Extra Small";
}

if(n > 25 && n <= 28) {
return size = "Small";
}

if(n > 28 && n <= 30) {
return size = "Medium";
}

if(n > 30 && n <= 32) {
return size = "Large";
}
else {
return "Error";
}
}

public static String sizeGuide2(int n) {
String size = "null";

switch(n) {
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
case 10:
case 11:
case 12:
case 13:
case 14:
case 15:
case 16:
case 17:
case 18:
case 19:
case 20:
case 21:
case 22:
case 23:
case 24:
case 25:
size = "Extra Small";
size = "Extra Small";
break;
case 26:
case 27:
case 28:
size = "Small";
break;
case 29:
case 30:
size = "Medium";
break;
case 31:
case 32:
size = "Large";
break;


}

return size;
}
}

What are some ways that a sequence can go wrong? How could you solve any communication issues? Do you think this can happen with a computer program?

Answers

Answer:

Yes, then often happens to me

Explanation:

My mom told me to do my science work do on friday but its hard so I think Imma just do my two English assignments due on Thursday lol I'll get my phone quicker

Answers

Answer:

alright

Explanation:

may I get a free brainliest please lol?

Answer:

Nice lol I would do the same actually lol

Explanation:

Other Questions
Which is the correct explicit formula in slope-intercept form that models the given arithmetic sequence?O A. y = - 3x + 4OB. y = - 4x-3O C. y = 3x - 4OD. y = 4x - 3 determine the empirical and molecular formula of a compound composed of 18.24 g carbon, 0.51 g hydrogen, and 16.91 g fluorine and has a molar mass 562.0 g/mol. 54x - 18 Which of the following expressions is equivalent to the one above? A. 72x B. 18x(3 - 1) C. 36x D. 18(3x - 1) what is dute ? explain any seven civic duties in brief Give me top 10 of your favorite games from the GameCube and top 10 of games from the GameCube you dont like Which of the following is NOT a characteristic of the Berbers? *native to Africafarmersherded cattlethey did not take part in the Trans-Saharan Trade ( look at photo) y=12x+ GRAPH PLEASE HELP OR BRIANLIEST GET RIGHT Jace has to read 40 pages in his novel tonight. He has only read 8 pages so far. What percent of the pages has he read? 1. What is the criteria necessary for organisms to be classified in the same species? (Choose all that apply)A: offspring produced must look identical to the parentsB: must be capable of surviving in the same environmental conditionsC: offspring produced must be fertileD: must be capable of interbreeding with one another according to the kinetic theory the pressure exerted by a sample of gas at constant volume doubles when the absolute temperature is doubled because what do i do to get the answer i will give brainliest to first person. Please help with all of the questions The treaty of Paris gave Great Britain______ How might the steps of the Eightfold Path help Buddhists overcome selfish desires? PLEEEASEE HELPPP I WILL GIVE BRAINLIESTTTT!!!!!!!!!!! 40 POINTS!!! Maria invests 4500 in a savings account for 3 years the account pays simple interest at a rate of 1.8% per year work out the annual rate of simple interest 2 is a root of x 9x+ + 24x2 16 = ( two times.Please select the best answer from the choices providedO F Which kind of bond is formed when two atoms share electorons to form a molecule What is the name of this molecular compound> F6I5 pleasee and thank youuuu! Which of the following makes Iran a theocracy?A: Iranians elect their president .B: Iranians elect their parliament.C: its government is controlled by ayatollah.D: the government encourages science education.