Regardless of which version of Windows you have, you can also open the browser from the start menu. Select the start button and type in Chrome. If the Chrome browser is on your computer, it will be displayed in the menu, where you can now see the icon and select it to open.
<3
Answer:
Output:
Income is greater than 3000
Explanation:
In conditional statements, either the if statement is processed or the else if.
In this scenario, both the given conditions fit for the given output but when if block will be processed, the else if block will be skipped by default.
So the output will only be the out phrase of if block which is:
Income is greater than 3000.
Answer:
computers and telecommunications
Explanation:
Answer:
The following are the program in the Python Programming Language.
#get input from the user
val = input("Enter the value: ")
#split the input values
x=val.split()
#declare and initialize two variables to 0
total, l = 0,0
#set for loop
for n in x:
#coverting into string
n = int(n)
#perform addition
total= total + n
#check that is l is none or n is greater than l
if(l is None or n > l):
#initialize the value of n in l
l = n
#print the following output
print("Average and maximum value are:", total // len(x), l)
<u>Output</u>:
Enter the value: 10 20 0 5
Average and maximum value are: 8 20
Explanation:
<u>Following are the description of the program</u>.
- Firstly, declare a variable 'val' in which we get string type input from the user.
- Again declare two variables and assigned them to 0.
- Then set the for loop statement, in which we convert the string variable into the integer and perform addition with those converted values. Set the if conditional statement to check that if the variable 'l' is none or 'n' is greater than 'l
' then, assigned the value of the variable 'n' in the variable 'l'.
- Finally, print the following result with message.