Edit Game
Values and Operator(Grade 9)
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   16  Close
Identify the type of literal : false
boolean
Identify the type of literal : '?'
Char
Identify type of casting double d = 12; int b = (int) d;
Explicit type casting
Identify type of casting - int a ; Long b =a
Implicit type casting
Identify type of casting - double x; int i; - y = (int) (x*i)
Explicit type conversion
Identify type of casting - int i,j; double d; - j = i * d;
implicit Type conversion
Mention type of value obtained when executed:- int i, short s, float f - (int) (s + f / i)
int
Mention type of value obtained when executed : int n, float, char c - x + y * c
float
Mention type of value obtained when executed : int a;float f; double d - (a/f) * d
double
State True or False :- boolean b = false
True
State True or False :- int n =12.5
False
State True or False:- char a='A'
True
State True or False :- float f = 23.54
True
State True or False :- String str='Mouse'
False
State True or False :- boolean p="true"
False
State True or False :- char s ='Ram';
False