Answer:
Write a C program to check whether a number is even or odd using if else. How to check whether a number is even or odd using if else in C program. C Program to input a number from user and check whether the given number is even or odd. Logic to check even and odd number using if...else in C programming.
Explanation:
It could be an issue with your email. Have you tried changing your passeord?
Answer:
Group
Explanation:
A folder assigned to a single user can only be accessed by a single person, to get many users access a folder windows administrator shares a folder to a workgroup. using the simple steps below.
Login as the admin of the system, Right-click on the folder you want to give permission on, after clicking on properties, click on security, add user or group after clicking the edit. and your folder is shared to a group and all users in the group have access to it.
Productivity Software
Norton Antivirus and Instant Messenger are not example of productivity software
Explanation:
Google docs, Excel and Presentation software are categorized as productivity software. Productivity software include word processing programs, spreadsheet, presentation software ,graphic design programs.Among the given choices, Norton Antivirus is a type of antivirus and security software for PC and laptops. Instant Messenger is an example of communication software used for text-based communication between two or more participants over the Internet or other types of networks. It allows efficient as wells effective communication, allowing immediate receipt of reply or acknowledgment.
So Norton Antivirus and Instant Messenger are NOT examples of Productivity software.
Answer:
The algorithm is as follows:
1. Start
2. Input num
3. num = num + 5
4. num = 2 * num
5. num = num - 7
6. Print num
7. Stop
Explanation:
The first and the last line of the algorithm starts and ends the algorithm
Line 2 gets user input;
Assume user input is 9
num = 9
Line 3: adds 5 to the inputted number
num = 9 + 5 = 14
Line 4 doubles the result of line 3
num = 2 * 14 = 28
Line 5 subtracts 7 from the result of 4
num = 28 - 7 = 21
Line 6 prints the output to the screen
Hence, the output of the algorithm is 21 if the user input is 9