C. answer the least challenging questions first
because then you get those out of the way and have more time to focus on the harder questions.
Answer:
It is nice to have somewhat of an outline regarding what you would like to do after high school, however, I believe it may be more difficult to have a whole plan.
Explanation:
There is no way anyone can predict what can happen so not everything will go to plan. As humans we learn to alter our choices to the situation we are in so a certain event in your life could take place causing you to take a completely different route than the one you had intended or planned.
your answer is b to the question
Answer:
red
Explanation:
public class CarTest {
public static void main(String[] argvs) {
//below line will create an object of CarTest class Object
CarTest carTest = new CarTest();
//This will call runDemo method
carTest.runDemo();
}
public void runDemo() {
//Below line will create an object of Car class with color blue and 4 wheel
Car c = new Car("blue", 4);
//Bellow Line will change the color from blue to red, see the logic writteen in chnageColor method definition
changeColor(c, "red");
//Below line will print the color as red
System.out.println(c.getColor());
}
public void changeColor(Car car, String newColor) {
//This line will set the color as passed color in the car object
car.setColor(newColor);
}
}