How are commas used in the initialization and iteration
parts of a for statement?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
for(int a=1,b=1;a<15&&b<20;i++,j++)
| Is This Answer Correct ? | 3 Yes | 0 No |
Commas are used to separate the initialization and
iteration parts in the for statement.
| Is This Answer Correct ? | 2 Yes | 1 No |
If a class is declared without any access modifiers, where can the class be accessed?
What are the two basic ways in which classes that can be run as threads may be defined?
What is the difference between overriding & overloading?
why applet doesn't have main? isn't possible a program with out main?
How do you create a method in java?
Why lambda expression is used in java?
What are passing parameters?
How to make a write-only class in java?
explain Anonynous inner class?
What error occurs if a try-catch-finally statement sequence does not have a catch clause?
What is array initialization in java?
What is the root class for all Java classes?