PLEASE HELP PROGRAMMING WILL GIVE BRAINLIEST
What happens in a program if an if statement is false?

An error message is returned, and the program crashes.
The block of code within it will be executed.
The block of code is skipped over, and the program is continued.
The user is prompted for a different type of statement.


Read the following:

Student has at least a 3.25 GPA
Student volunteered at least 100 hours

Which of the following statements correctly tests if a student has met at least one condition?
if(gpa > 3.25 and volunteerHours > 100):
if(gpa >= 3.25 and volunteerHours >= 100):
if(gpa > 3.25 or volunteerHours > 100):
if(gpa >= 3.25 or volunteerHours >= 100):


Which of the following is considered information?

Average price for all purchased items
Individual price for each purchased item
Sale price for individual purchased items
Sales tax percentage for purchased items

Respuesta :

Answer:

1. would be B.

2. would be D

3. May I ask if it can be multiple answers?

Explanation:

1. In coding a if statement has to follow if something is true or not. If we are talking about a if and then statement it will skip that block and move to the next block of the "then" part of the "if then" Statement if the first part is reported false

2. This is a easy one, so it has to be either a 3.25 GPA or higher or they have to have either 100 hours or more.

3. waiting for a comment back :)

ACCESS MORE