Computer Science, asked by RishabhRDX, 1 year ago

What is Mnemonic codes in JAVA program asked by ICSE exam?

Answers

Answered by rishiraj02102002
2
keep in mind

Here are some important points to keep in mind while writing your Java program

Always comment your code: You never know who's gonna check your paper. You can never know if he completed understands your method of problem solving. Make sure your comments explain what's going on in your code.Follow naming conventions: Be sure to follow the naming conventions. Class name starts with a capital letter and method name with small. Though, just a convention, some teachers take it very seriously.Name your variables appropriately: Suppose you are storing the calculated percentage of a student in a variable. You can name your variable “perc” or even “percentage” (small caps). It's not just good for writing in exam but a good programming practice.Efficient algorithm: Certain problems can be solved in a single line of code or maybe in cases dozen of lines. Be sure to use the most efficient algorithm.Java is OOP language don't make your code procedure oriented: This is where many make the mistake. Make sure your code just doesn't contain a class with a method which takes up the problem and solves it as if it were a single procedure like you would in a language like C. But sure to attempt the problem from Object Oriented perspective and use classes wherever necessary.

AleenaAnnaRobin: That isn't mnemonic
Answered by AleenaAnnaRobin
5
It is the same as a variable description table
The table includes the variables we have used their data types name and their use in the program
Similar questions