Answer:
The program in Python is as follows:
firstName = []
lastName = []
while True:
    fName = input("First Name: ")
    lName = input("Last Name: (Enter to quit): ")
    if not lName:
        break
    firstName.append(fName)
    lastName.append(lName)
for i in range(len(firstName)):
    print(firstName[i] . lower()+"."+lastName[i] . lower()+" mycollege . edu")
Explanation:
See attachment for complete source file where comments are used as explanation
 
        
             
        
        
        
Answer:
Option B: The text field x will have the value "Tiny Tim" and the user will be able to change its value.
Explanation:
- The first statement say:  x.setEditable(true);
It will only change the property of the text present in x to editable. This means that whenever the text value needs to change the user can edit it.
- The second statement say:   x.setText("Tiny Tim"); 
It will put the text "Tiny Tim" into the attribute x and present it as the output or result.
 
        
             
        
        
        
If you want a user to actively participate in an online activity, create a web ______________.  
1. animation  
2. application  
<u>3. page  </u>
4. source
 
        
                    
             
        
        
        
Answer:
The correct answer to the following question will be Option B.
Explanation:
<u>Open System interconnection:</u>
- A practical and conceptual layout that describes network communication that will be used by the systems that are accessible to interconnection as well as other systems, is called the OSI model. This may also be referred to as the OSI model with seven layers.
- The OSI model aims to direct developers and creators so that they would modularize with the wireless communication devices and computer programs they build, and to promote a consistent structure that defines the features of a network or telecom system.
Therefore, Option B is the right answer.
 
        
             
        
        
        
To convert the inputs to dollars and cents, we make use of a combination of multiplication and addition.
The program written in Python where comments are used to explain each line is as follows:
<em />
<em>#This gets input for the number of quarters</em>
quarters = int(input("Quarters: "))
<em>#This gets input for the number of dimes</em>
dimes = int(input("Dimes: "))
<em>#This gets input for the number of nickels</em>
nickels= int(input("Nickels: "))
<em>#This gets input for the number of pennies</em>
pennies= int(input("Pennies: "))
<em>#This converts the amount to dollars and cents</em>
dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01
<em>#This prints the amount to 2 decimal places</em>
print("Amount ${:.2f}".format(dollars))
Read more about Python programs at:
brainly.com/question/22841107