Answer:
lean media
Explanation:
Dr. Thomas uses email as a medium of lean media to convey messages.
Lean media may be defined as the source of conveying messages that are short or of lean capacity. It is meant for instant messages and message and information that is not considered to be of out most importance. Whereas a rich media is a video chat or face to face communication.
Dr. Thomas send emails to her patients to follow up with them and also encourages her patients to call her for appointments or any questions. She uses email as a source of lean media for this communication.
Answer:
Following are the program definition in the Java Programming Language.
//define a class
public class Clock
{
//set integer type variable and initialize value
private int hours=12;
//set boolean type variable and initialize value
private boolean isTicking=true;
//set integer type variable and initialize value
private Integer diff=5;
}
Explanation:
Following are the description of Code.
- Firstly define a class "Clock" with the "private" access modifier.
- Then, set the integer data type variable "hours" with the "private" access modifier and assign value 12 in that class.
- After that, set the boolean data type variable "isTicking" with the "private" access modifier and assign value "true".
- Finally set Integer class variable "diff" with the the private access modifier and assign value 5.
Answer:
c. An electronic slide that tries to function as both a presentation visual and a printed document
Explanation:
Slideument combines both text and visual aids to form a document that can be fully understood by readers without the use of speakers when presenting these documents. It is a presentation with information containing visual aids and presented in form of slide deck so that it can be easily understood by readers.
Answer:
A. Ask for help from a co-worker. Maybe someone else can solve the algorithm problem.
Explanation:
You should talk to your coworkers. Many of them are experienced, and may have faced similar problems previously and knew how to solve. You trying alone will likely lead you nowhere, since a week is enough time to know if you can solve the problem by yourself. Taking at break in such an important task of the project will just delay everything.
The correct answer is:
A. Ask for help from a co-worker. Maybe someone else can solve the algorithm problem.