Answer:
The answer is "Option b"
Explanation:
Data preparation is the method of purification and analysis of raw information before scanning and review. It is a major step before processing, which frequently includes information system restore, database correction and the combination of data sets, which enhance data result, in this question except option b all choices were incorrect, which can be described as follows:
- In option a, This type of preparation accelerate through automation, that's why it is wrong.
- In option c, This technique takes some extra time to done one work, that's why it is wrong.
I suppose you by page, mean file and if that is the case you can right-click the smart object, press duplicate and in the drop-down menu called 'Destinaton' choose where you want you copy to be placed. You then just choose the file(page) you want it to be transferred to
Answer: well it all depends on what is wrong with your computer
plz mark as brainliest
Answer:
import java.util.Scanner;
public class num1 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter User name 1 and 2");
int userNum1 = in.nextInt();
int userNum2= in.nextInt();
if(userNum1<0){
System.out.println("userNum1 is negative.");
}
else if(userNum2>8){
userNum2 =0;
}
else{
System.out.println("userNum2 is less than or equal to 8..");
}
}
}
Explanation:
This is implemented in Java programming language
Using the scanner class, the user is prompted to enter two numbers
These are saved in the variable userNum1 and userNum2 respectively.
If, else if and else statements are then used according to the specifications given in the question.