The notes in computer code for the programmer that are ignored by the compiler is called a comment.
<h3>What are codes in programming?</h3>
Codes in programming are specific sequences or sets of instructions that are made for specific programs. They are written in a specific language. They are made to make a human-friendly language. Codes are made after the compiler confirms them.
Comments are written for the document. They tell what the document is for, and how the document is constructed.
Thus, the notes on the computer code for the programmer are called a comment.
To learn more about comments in computer code, refer to the link:
brainly.com/question/18340665
#SPJ4
A. 0
I am not entirely sure, I am not much of a coder(well I am but I don’t code often) so I hope this helps!
Answer:
Explanation:
web page: a screen containing text, images, and other media
web address: a unique reference that helps you open a website
website: a collection of web pages
home page: the landing page of a website
Answer:
It throws an error.
the public class needs a name.
like this:
public class G{ public static void main(String[] args) {
int x=5 , y = 10;
if (x>5 && y>=2) System.out.println("Class 1");
else if (x<14 || y>5) System.out.println(" Class 2");
else System.out.println(" Class 3"); }// end of main
}
if you give the class a name and format it, you get:
Class 2
Explanation: