Answer:
True
Explanation:
When open punctuation is used, we do not expect the use of punctuation after salutation or complimentary close. It is a relatively new concept in business writing and we can rightly use this method in modified block letter style of writing.  
Some companies have developed business letter templates that are arranged in an open style, which permits the use of open punctuation in all aspect of business writings.  
 
        
             
        
        
        
Straight 
Curvilinear 
Rectilinear
        
             
        
        
        
Answer:
Explanation:
The following code is written in Python. It is a function called guessMyNumber and like requested creates a random number and saves it to secretNumber. Then it continuously asks the user for their guess and compares it to the secret number. If the guess is correct it exits the loop otherwise it will continue to ask for a new guess.
import random
def guessMyNumber():
    secretNumber = random.randint(1, 10)
    print(secretNumber)
    while True:
        guess = input("Enter your guess: ")
        guess = int(guess)
        if (guess == secretNumber):
            print("Congratulations you guessed correctly")
 
        
             
        
        
        
In the lab, Wireshark continued to capture data in the background until the capture process was manually stopped later in the lab.
Wireshark is a packet analysis tools, it gets the information for traffic passing through a specific network node.