If someone tells you to stop shouting, it's another way of saying, "TURN OFF YOUR CAPS LOCK." When someone is TYPING AN ENTIRE SENTENCE IN ALL CAPITAL LETTERS, that person is SHOUTING. It is not proper netiquette to TYPE IN ALL CAPS, especially in e-mail
Answer:
hey mann
Explanation:
it is known as "roblovdeo"
hope it helps
Answer:
Code in Javascript.
<u>Preconditions: </u>
All the variables are defined and initialized.
if (speed < 0) { <em>// if speed is < 0 then adds 1 to reverse drivers.</em>
reverseDrivers ++;
} else if (speed < 1) { <em>// else if speed is < 1 then adds 1 to parked drivers.</em>
parkedDrivers ++;
} else if (speed < 40) { <em>// else if speed is < 40 then adds 1 to slow drivers.</em>
slowDrivers ++;
} else if (speed <= 65) { <em>// else if speed is <= 65 then adds 1 to safe drivers.</em>
slowDrivers ++;
} else { <em>// else if speed is > 65 then adds 1 to speeders.</em>
speeders++;
}
Answer:
The output of the given code as follows:
<u>Output:
</u>
1122
Explanation:
In the given java code the two for loop is defined, which can be described as follows:
- In the first loop, a"loop" variable is used, which starts from 1 and ends when the value of loop is less than 3, inside the loop a print function is used, that print value 1.
- In the next step, another for loop is declared, inside the loop a variable "loop2" variable is used, that's working is the same as the above loop, but in this loop, it will print a value, that is 2.
Answer:
D) An Amazon Resource name is created.
Explanation:
Amazon SNS topic:-It is basically a logical access point that act as a channel of communication.It helps you to group multiple endpoints (such as Amazon SQS, HTTP/S, an email address,AWS Lambda,).
A resource name is created when a Amazon SNS topic is created.