10. What is the output of the following Java program?
class Main {
public static void main(String args[]){
final int i;
i = 10;
System.out.println(i);
}
}
10. What is the output of the following Java program?
class Main {
public static void main(String args[]){
final int i;
i = 10;
System.out.println(i);
}
}
No Answer is Posted For this Question
Be the First to Post Answer
What is the definition of tree ?
what is meant by encapsulation?
Can we have try without catch block?
What is hypertext?
How do you find the independent variable?
How many threads does a core java have?
What is an object in java and how is it created?
Explain about core java?
What is the use of StringTokenizer class?
Can we use string in switch case in java?
What is reflexive association?
1) There are 10 different threads in runnable state. Each having priority 1 to 10. How does the CPU schedules or executes these threads?