I believe the answer is CDC but I could be wrong
Answer:
backdoor or trapdoor
Explanation:
A backdoor is also known as a trapdoor or manhole and is known to be a secret means of bypassing security in order to gain access to a system or a restricted part of a system. Some virus contains payload that installs a backdoor component in a system. This backdoor, thus grants the attacker special privilege access to the system at anytime.
The option that you’re looking for is the Insert Tab.
Slide elements generally refer to the objects that you can put inside a slide in most presentation programs. This includes elements such as shapes, texts, pictures, videos, and even audio files. The Insert Tab can generally be accessed on the toolbar pinned to the top of your presentation program.
Answer:
SELECT last_name, job_title, hire_date FROM employee WHERE hire_date>="01-12-2016" AND job_title != "STOCK CLERK" ORDER BY job_title DESC;
Explanation:
The SQL code queries the employee table returning records of the last_name, job_title, and hire_date columns matching the employees hired on or after December 2016 and job titles that are not stock clerks in the employee table.
The WHERE and AND clause is responsible for the condition while the ORDER BY clause returns the query result in the of the job title in descending order.
Answer:
System.out.println("October is the "+monthSales[9]+"th Month of the year");
A complete Java program is given in the explanation section.
Explanation:
public class num4 {
public static void main(String[] args) {
int [] monthSales = new int[12];
int i=0;
for(i = 0; i<monthSales.length; i++){
monthSales[i] = i+1;
}
System.out.println("October is the "+monthSales[9]+"th Month of the year");
}
}
In the code above, we created an an array of size 12 with this statement
int [] monthSales = new int[12];
using the for loop, the numbers 0-12 are added to the array corresponding to the twelve months in the year
The statement System.out.println("October is the "+monthSales[9]+"th Month of the year"); outputs the corresponding number to October