Hey there,
I believe that your correct answer would be that "<span> some people will tell you what they think you want to hear </span>". When you ask someone about the perceptions of your person trait, they will most likely <span>tell you what they think you want to hear because its what they want to make you happy.
For example: Jimmy ask billy "Am I fat Billy"
Billy tells Jimmy "No, Your not fat, you look just great".
But really, Jimmy is very fat.
The point is that people are going to say things that make you feel happy and something that you want to hear.
~Jurgen</span>
Answer:
The invention of flashlight is associated in the late period of industrial revolution.
Explanation:
- During the industrial revolution, Europe and United States flipped the use or technology in the manufacturing processes of industries.
- At the time of industrial revolution many chief inventions like, steam engine, dynamites etc. were made that the traditional history and reformed the technology.
- Thomas Edison in 1879, invented the battery and flashlight at the late period of industrial revolution which was also a major invention
import java.util.Scanner;
public class JavaApplication42 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int count = 0;
System.out.println("Enter an integer between 0 and 100");
int num = scan.nextInt();
if (num <= 0 || num >= 100){
System.out.println("error");
}
else{
while(num <= 100){
if (count == 20){
System.out.println("");
count = 0;
}
else{
System.out.print(num+" ");
count++;
num++;
}
}
}
}
}
I hope this helps!