Answer:
True
Explanation:
this is true because a threat can endanger the computer and its system
Answer:
The first thing that came to mind was when my parents tell me "Take it one step at a time" I hope this helps
Explanation:
Modem, is the part of the computer that provides access to the internet.
Answer:
A.) promote policies in the best interest of both employees and the organization
Explanation:
The primary purpose of Human Resource Department in any organization is to promote policies in the best interest of both employees and the organization. They are like the heart of the company because they also deals with the staffing, compensation, retention, training, and employment of law and policies side of the business. The human resource department apart from writing of policies and procedures for hiring staffs also have plans in place to ensure that the right people that fits the job description and experience needed for a role are hired and trained for the job.
Answer:
#include <stdio.h>// header file
int main() // main function definition
{
int number; // variable declaration
scanf("%d",&number); // user input for number
if(number%2==0) // check the number to even.
printf("Number is a even number"); // print the message for true value
else
printf("Number is a odd number"); // print the message for false value.
return 0; // return statement.
}
Output:
- If the user inputs is 2 then the output is "Number is a even number".
- If the user inputs is 3 then the output is "Number is a odd number".
Explanation:
- The above program is to check the even and odd number.
- The first line of the program is used to include the header file which helps to understand the functions used in the program.
- Then there is the main function that starts the execution of the program.
- Then there is a variable declaration of number which is declared as an integer which takes the integer value because the program needs the integer only.
- Then the scanf function is used to take the inputs from the user.
- Then the if condition check that the number is divisible by 2 or not.
- If it is divisible print "even number" otherwise print "odd-number".