Answer:
To tell what will happen when an if-statement is false
Explanation:
We use else statement if if-statement get false.
for example
if(a>20)
{
print "your age is greater than 20"
}
else
{
print "Your age is less than 20"
}
In the pseudo code, you see the use of else statement, that if age is greater than 20 then display message "you are age is greater than 20". if this statement get false, i.e. you are age is not greater than 20 then else statement will be executed and message will be displayed that your age is less than 20.
Why other option are not correct
To input a variable:
to get input, we use input statement of respective programming language not if-else statement.
To end an if statement
we don't use else statement to end if statement. when condition met then if statement will be ended
To handle string value
we use input validation statement to handle if statement.
depends on state laws, definitions. 'Motor Driven Cycle/motor bicycle' not allowed on interstate is less than 150cc and some places have a 15hp minimum- was Ohio minimum few years back. Motor assisted bicycle or moped in some places like New Jersey or UK has a 2 hp, 50cc upper limit with a speed restriction of 20 mph or 30 or 31 mph- if more than that it becomes a 'motorcycle'
In order to display web pages, the browser interprets HTML formatting instructions. Web pages is a hypertext document and it is connected to the World Wide Web or called WWW. The web page or webpage is a document displayable by a browser and it is usually written in HTML or comparable markup language.
Answer:
my_list = ["Rain fell from blue sky", "while I was having coffee,", "procrastinating"]
print(my_list[0])
print(my_list[1])
print(my_list[2])
Explanation:
Using Python Programming language:
Since the given list contains three string elements, the indexes are from 0-2
The print function can then be used to print elements are specific indexes as given above
Answer: oh hello human :) also PLEASE DONT KILL ME I’m answering this because the question was already answered already on another post