Answer:
Benefits of Oral Communication
- Utilizing visual aids such as PowerPoint during discussions can enhance his team's understanding of his concepts and procedures.
- Staff responses tend to be more immediate and sincere compared to written replies.
Drawbacks of Oral Communication
- If Sushant struggles with stage fright or lacks strong communication skills, it may negatively impact the team's perception of him.
- There is a risk that staff may forget portions of Sushant's spoken communication, as written information is generally more reliable for retention.
Benefits of Written Communication
- A well-crafted memo articulates Sushant's ideas and procedures clearly to the staff.
- A feedback questionnaire could be included for staff input.
- Clearly stated goals and objectives.
Drawbacks of Written Communication
- Excessively lengthy written material may pose challenges for comprehension or retention.
It is advisable for Sushant to prioritize written communication to share his ideas and protocols effectively.
Answer:
count = 0
while count!= 8:
height = float(input("Enter the height of the rider: "))
if height >= 140:
print("You may ride")
count += 1
else:
if height >= 120:
answer = input("Is the rider accompanied by an adult (yes/no): ")
if answer == "yes":
print("You may ride")
count += 1
else:
print("You are not permitted to ride")
else:
print("You are not permitted to ride")
Explanation:
Begin with a count of zero, which will track the number of riders allowed. Use a while loop that continues until the count reaches 8. During each iteration, request the user's height. If the height is 140 cm or taller, display "You may ride" and increment the count. If the height is 120 cm or more, check if the rider is with an adult. If not, show the message "You are not permitted to ride"; otherwise, allow the ride and increase the count. If the height is below 120 cm, deny the ride.
Answer:
A. Discussing confidential matters over a mobile phone
Explanation:
In general, the signals from mobile phones are not secure. Sensitive discussions should never occur on phones that lack the necessary encryption.
To use Python:
a = eval(input("Please enter a mark"))
if (a < 0):
print("Invalid mark")
elif (a >= 90 and a <= 100):
print("GREAT")
Explanation:
The explanation and answer for this question can be found in the attachment below.