Soviet cosmonaut Valentina Tereshkova became the first woman to fly to space when she launched on the Vostok 6 mission June 16, 1963
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
Answer:
B
Explanation:
POP3 protocol is an email protocol that works by downloading and storing emails onto a user's device or tablet.
The primary reason is to cut labor costs
As a student starting an online course, you should explore the college website to make sure you have access to college resources.
<h3>What is an
online course?</h3>
An online course can be defined as an education programme that typically involves the process of providing and sharing learning resources (contents) in an organized way over the Internet, so as to allow the students (users) progress in their understanding of a course or topic.
As a student starting an online course, you should do the following to make sure you have access to college resources:
- Explore the college website.
- Bookmark links to your course.
- Search for information with regards to advising, degree requirements, and financial aid.
Read more on online course here: brainly.com/question/14591988
#SPJ1