Write the output for: System.out.println(25%5==0 && 49%7==0);
Answers
Answered by
0
Explanation:
1.1 Steps in Writing a Java Program
The steps in writing a Java program is illustrated as follows:
Step 1: Write the source code Xxx.java using a programming text editor (such as Sublime Text, Atom, Notepad++, Textpad, gEdit) or an IDE (such as Eclipse or NetBeans).
Step 2: Compile the source code Xxx.java into Java portable bytecode Xxx.class using the JDK Compiler by issuing command:
javac Xxx.java
Step 3: Run the compiled bytecode Xxx.class with the input to produce the desired output, using the Java Runtime by issuing command:
java Xxx
Hope it helps
Similar questions