Answer:
Advantages of Oral Communication
- Use of visual aids like PowerPoint presentation while explaining his ideas and working protocols would help his team to understand him better.
- There is a spontaneous response from the staff which is more genuine than written response.
Disadvantages of Oral Communication
- It could prove to be a problem if Sushant has stage fright or is not an effective communicator, which could form an impression of him by the staff.
- Staff may forget some of Sushant's words as no memory is as reliable as written information.
Advantages of Written Communication
- A well written memo explains the ideas and working protocols that Sushant wants to relay to the staff.
- There could be a questionnaire for the staff to give feedback.
- Aims, objectives are clearly stated.
Disadvantages of Written Communication
- If the written material is too lengthy, it could be a problem to learn or memorise.
It is recommended that Sushant should use written form of communication to convey his ideas and working protocols as it is more effective.
Answer:
c Preventing data transmissions between a suspect’s computer and a network server
Explanation:
Answer:
I would say it would be a cluster of related commands.
Blind Carbon Copy
For emails. It is used to send a copy of the email to somebody without the original person receiving it knowing that you sent a copy.
Answer:
The code for the function is given below in Python language
Explanation:
def append_string_to_file(filename, text):// function takes the filename // and text to append
f = open(filename, 'a')
f.write(text) //function part that writes the text
f.close() //closing the file using the explicit close function