Write multiple if statements. if caryear is 1969 or earlier, print "probably has few safety features." if 1970 or higher, print "probably has seat belts." if 1990 or higher, print "probably has anti-lock brakes." if 2000 or higher, print "probably has air bags." end each phrase with period and newline. ex: caryear = 1995 prints:
Answer:
if (carYear <= 1969) {
System.out.println("Probably has few safety features.");
}
if (carYear >= 1970) {
System.out.println("Probably has seat belts.");
}
if (carYear >= 1990) {
System.out.println("Probably has anti-lock brakes.");
}
if (carYear >= 2000) {
System.out.println("Probably has air bags.");
}
Explanation:
___ software creates a personal security zone around your computer by monitoring all incoming and outgoing traffic and blocking any suspicious activity.â
How would you execute a script named testscript from the command line?
When a number gets assigned to a variable that already has a value __________?
What command do you type in the search box to access the command line intrface in windows?