Answer: Avoid forwarding a personal email to others and most likely Avoid forwarding jokes and trivia using email.
Answer:
True
Explanation:
Storing gathered multimedia files for an instructional video in a single folder is good practice because this method makes it easier for the user to access and manage the files. The files can also be easily transferred if there is need to since everything is stored in one central area.
Keeping a record of the source information is also important as this helps the instructor to control files and have quick access to any of the files.
Answer:
operating systems, word software, computer concepts for end users
Explanation:
operating systems allow users to interact with computer hardware and application software.
word software allows users to complete specific tasks, such as creating a document.
computer concepts for end users allows programmers to create new applications.
Answer:
The correct answer for the given question is "public"
Explanation:
The access modifier of constructor is public,private ,protected.
The access modifier of constructor should be public because to access the constructor outside the class .
Constructor can be called anywhere in program by using public access modifier .
The default access modifier in a class is public.
In the private access modifier constructor cannot be called anywhere in program.
We use public keyword to declared public constructor .
We use private keywors to declared private constructor.
Following are example to declared public and private constructor
class test
{
public test() // to declared public constructor
{
// statement
}
private test() // to declared private constructor
{
// statement
}
}