What is style and indentation?
Answer / Manoj Agarwal
Style refers to a set of rules or guidelines for writing code, such as indenting, naming conventions, and commenting. Indentation is the process of aligning lines of code so they are easy to read and understand.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is array a class?
How many techniques can be employed to create a string object?
what is the diffrence between class and object?
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?
What is Enum in Java?
What is Session and cookies?Explain in detail with an example?
Give few difference between constructor and method?
What is passing value java?
State the difference between creating string as new () and literal.
Can we nested try statements in java?
What is access modifiers?
What is the difference between overriding & overloading?