C) fair use
Hope this helps... mark as Brainliest plz
Answer: A or B i done this before but my memorys quite blurry i rekon doing A
Explanation:
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.
In the program While loop is used. In the while loop it divides the userNum by 2 in each iteration and prints the value of userNum. The inputs and corresponding outputs are written in the explanation.
<u>Explanation</u>:
In the while loop it divides the userNum by 2 in each iteration and prints the value of userNum.
import java.util.Scanner;
public class NonNegativeLooper
public static void main (String [] args)
Scanner scnr = new Scanner(System.in);
//initialize the userNum with 9
int userNum = 9;
//Repeat the loop until the userNum is not negative
while (userNum>=0)
System.out.println(Body);
//Prompt the user to enter the usrNum again
userNum = scnr.nextInt();
System.out.println(Done.);
return;