“If…Then...Else” statement:
- The “If…Then...Else” statement is used to run the particular block of statements, based on the value of the condition.
- The “If” statement can be followed by an “Else” statement that executes when the Boolean expression is “false”.
Syntax:
Consider the syntax for the “If...Then...Else” statement is as follows:
If condition Then
'statement
Else
'statement
End If
Here, if the “condition” is a Boolean condition is “true”, then it executes the “If” block other it executes “Else” block.
Explanation of Solution
2.
Given statement:
'assign the value to the variable
intX = 100
'check "intX" value is less than or equal to 1
If intX <= 1 Then
'assign the value to the variable
intY = 99
'else statement
Else
'assign the value to the variable
intY = 0
'end the statement
EndIf
Explanation:
- Here, the “intX” variable is assigned with the value “100”.
- Check the value of “intX” is less than or equal to “1” or not...
Explanation of Solution
3.
Given statement:
'assign the value to the variable
intX = 0
'check "intX" value is not equal to 1
If intX <> 1 Then
'assign the value to the variable
intY = 99
'else statement
Else
'assign the value to the variable
intY = 0
'end the statement
EndIf
Explanation:
- Here, the “intX” variable is assigned with the value “0”.
- Check the value of “intX” is not equal “1” or not.
- If the condition is “true”, assign the value “99” to the variable “intY”...
Want to see the full answer?
Check out a sample textbook solutionChapter 4 Solutions
Pearson eText for Starting Out With Visual Basic -- Instant Access (Pearson+)
- int my_num = 100.0; b- int $my_num = '10000': int myNum = 100%3B d- int my num 100000; a- 1) Which one is a valid variable declaration? C-arrow_forwardSavings Account The following steps calculate the balance after three years when $100 isdeposited in a savings account at 5% interest compounded annually:1. Declare the variable balance as type Decimal.2. Assign the value 100 to the variable balance.3. Increase the variable balance by 5% of its value. (Write 5% as 0.05D.)4. Increase the variable balance by 5% of its value.5. Increase the variable balance by 5% of its value.6. Display the value of balance (rounded to two decimal places) in a list box.arrow_forward= 1000; int myNum b- double my_num= 100; 4) а- Which one is NOT a valid variable declaration? c- int my_num = '10" d- int mynuml = 10 7/Parrow_forward
- Retail price calculator Write a program that asks the user to enter an item’s wholesale cost and its markup percentage. It should then display the item’s retail price. For example: • If an item’s wholesale cost is 5.00 and its markup percentage is 100 percent, then the item’s retail price is 10.00.• If an item’s wholesale cost is 5.00 and its markup percentage is 50 percent, then the item’s retail price is 7.50. The program should have a method named calculateRetail that receives the wholesale cost and the markup percentage as arguments and returns the retail price of the item.arrow_forwardQUESTION 2 3 points Save Answer Write a Java program to do the following task: Assign your id number (example.. 2014299123) to an integer variable id_num Using reminder operator % on the id_num get the last 5 digits (99123) and store it in num If the num is between 0 and 30,000 (both included), display "You are in Group 1" Otherwise if the num is between 30001 and 60,000 (both included), display "You are in Group 2" Otherwise (num is between 60,001 and 99,999 (both included), display "You are in Group 3" Save your file as Q2.Java and upload it.arrow_forwardTrue or False 3. Variable names can have spaces in themarrow_forward
- GPA Calculator Students are concerned about their GPA. They need to calculate it accurately every semester to monitor their progress. Develop a GPA calculator that follows the AOU regulations (AOU-OU Grade Scale) using C# programming language. The application asks the student to enter his numeric grade of each course and the course's credit hours. Accordingly, the application calculates the student's GPA after converting the numeric grade to letter grade. The GPA calculation should produce floating-point results. Display the results rounded to the nearest hundredth. You should store the letter grades of all student's courses in an array. The final grade of the student should be also calculated. Sample I/O Enter the course grade (-1 to end): 93 Enter the course credit hours: 3 Enter the course grade (-1 to end): 74 Enter the course credit hours: 2 Enter the course grade (-1 to end): 60 Enter the course credit hours: 3 Enter the course grade (-1 to end): -1 The grades of your courses…arrow_forward# Global constant for body mass which is equal to 703 # Create variables and initialize all of them to 0.0 # create variable weight # create variable height # create variable BMI # input the weight from the user. # input the height from the user. # Calculate the body mass: # BMI is equal to weight * body mass divided by (height * height) # Display BMI. # Determine and display weight category if is greater then 25 you are overweight. # if is less then 18.5 is underweight otherwise is good # display all variablesarrow_forwarda- double my_num = 100.0; b- int $my_num = '10000'; int myNum = 1000; d- int mynum1 = 100000; 4) Which one is NOT a valid variable declaration? c-arrow_forward
- 1. pyth code pleasearrow_forwardPopulation Tracker Learning Objective: Using Python Repetition and Loop Statements Problem Description Write a Python program (Console and GUI) that predicts the approximate size of a population of organisms. The application should use text boxes to allow the user to enter the following information: starting number of organisms, the average daily population increase (as a percentage), and the number of days the organisms will be left to multiply. For example, assume the user enters the following values: Starting number of organisms: 2 Average daily increase: 30% Number of days to multiply: 10 The program should display the following table of dataarrow_forwardThis is an operator used to assign a value to a variable. It works by transferring the value on its right to the variable on its left. greater than / equal (>=) equal (= =) less than / equal (<=) assignment (=)arrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningEBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning