Answer:
A. Project Manager
Explanation:
What could break the circuit between your home and an electric power plant?
Answer:
A wire burning out
Explanation: that would end the circuit
Answer:
Maybe if one of ur wires are broken out!
Explanation:
What do you think was the immediate effect of the introduction of handheld consoles and video games?
Final answer:
The immediate effect of the introduction of handheld consoles and video games was an increase in aggressive thoughts and emotions among children who played violent video games.
Explanation:
The immediate effect of the introduction of handheld consoles and video games was an increase in aggressive thoughts and emotions among children who played violent video games. Psychologists Anderson and Bushman (2001) found that children who had just played a violent video game demonstrated an immediate increase in hostile or aggressive thoughts, an increase in aggressive emotions, and physiological arousal that increased the chances of acting out aggressive behavior
How do you get the value of an element in an array? And how about for an ArrayList?
Answer:
array: a[21], b[34] etc.
ArrayList: arr.get(12), arr.get(23)
Explanation:
Remember that array is a fixed size collection of values of the same datatypes. We need to provide the array size at the time of the declaration itself. Like:
Student[]=new Student[5];
The above is an array of five student object types.
Similarly, we can have:
a[] =new int[5];
This is an array of five int type.
And we can output the fourth student as Student[4].name, Student[4].marks. And in int case like a[3], a[4], etc.
Similarly, we can get the value from ArrayList as:
arr.get(3);
ArrayList is a resizable array, and can be found inside java.util.ArrayList.
When doing a complex presentation, which of the following would be the best tool to begin designing your presentation?
Answer:
B.) Open Office Impress
Explanation:
The options are:
A.) Open Office Writer
B.) Open Office Impress
C.) an outline
D.) photographs
Out of the above, the Impress is used for doing complex presentation, and its one of the best tool for it like PowerPoint. Its quite the same as PowerPoint, and it supports both ppt format as well as odp or the open document presentation format. You can make very complex presentations with the help of the Open office Impress.
Answer:
the answer is A: an outline
Explanation:
I did the test and got 100%