Answer:
Option B is the correct answer.
Explanation:
- In the above code, the loop will execute only one time because the loop condition is false and it is the Do-While loop and the property of the Do-while loop is to execute on a single time if the loop condition is false.
- Then the statement "x*=20;" will execute one and gives the result 200 for x variable because this statement means "x=x*20".
- SO the 200 is the answer for the X variable which is described above and it is stated from option B. Hence it is the correct option while the other is not because--
- Option A states that the value is 10 but the value is 200.
- Option C states that this is an infinite loop but the loop is executed one time.
- Option D states that the loop will not be executed but the loop is executed one time
The use of the Line and Paragraph Spacing command can help one to alter the amount of space between the text in a text box and the text box border.
<h3>Which command changes line spacing?</h3>
When one click on Home tab, one should click the Line and Paragraph Spacing command, and when one has select the line spacing that one needs, the selected line spacing will alter in the document.
Note that the use of the Line and Paragraph Spacing command can help one to alter the amount of space between the text in a text box and the text box border.
Learn more about command sequence from
brainly.com/question/13258375
#SPJ1
Access is a database management system, thus it is not a presentation application.
Answer:
// program in Python
#variables
mx=-1000
mn=1000
#read 10 values from user
for i in range(1,11):
num=int(input("Enter the number {}:".format(i)))
#input validation
while num not in range(-100,100):
num=int(input("Wrong input!! Enter again:"))
#find maximum
if num<mn:
mn=num
#find minimum
if num>mx:
mx=num
#print maximum
print("largest value is:",mx)
#print minimum
print("smallest value is:",mn)
Explanation:
Create variables "mx" to store maximum and "mn" to store minimum.Read 10 numbers from user.If the input number if less than -100 or greater than 100 then ask again to enter a number between -100 to 100 only.Find the maximum and minimum from the all 10 numbers.Print maximum and minimum values.
Output:
Enter the number 1:23
Enter the number 2:-200
Wrong input!! Enter again:33
Enter the number 3:-2
Enter the number 4:45
Enter the number 5:105
Wrong input!! Enter again:45
Enter the number 6:-44
Enter the number 7:-56
Enter the number 8:79
Enter the number 9:98
Enter the number 10:4
largest value is: 98
smallest value is: -56