Runnable is a
Every class containing abstract method must be declared abstract
What is the output of the following Java program?
What is the output of the following code?
var str = "123";
var intval = 123;
alert(str + intval)
What will be the value returned if a string is greater than the string compared?
Which of these is a mechanism for naming and visibility control of a class and its members?
What should the expression in the condition of a ternary operator evaluate to?
Which of the following class relies on its subclass for the complete implementation of its methods?
interface tuf{
int number = 10;
}
public class demo {
public static void main(String[] args) {
tuf.number = 100;
System.out.println(tuf.number);
}
}
public class Demo123{
public static void main(String args[]){
String r = "Abekus";
char ch ='5';
if( ch >='0' && ch <='9')
System.out.println("Its NO");
else System.out.println("Its Not a No");
System.out.println(r+ch);
}
}