Saturday, November 27, 2021

Java MCQs Part-01 | By LearnWithVishalGiri | ICSE Computer Application




1. Name the method that accepts a string without any space _________
2. The wrapper class to which the method parseInt() belongs to _____________
    a)integer
    b)Int 
    c)int
    d)Integer
3. The statement to stop the execution of a construct.
    a)System.exit(0)
    b)break
    c)continue
    d)Stop
4. !(2>1 && 5<7)
    a)true
    b)false
5. The default statement is optional in switch case.
    a)True
    b)False
6. The shorthand operator is left to right associative.
    a)True
    b)False
7. Tell the output:

8. Give the output: (X = 5)
X+ = X++ + ++X + --X +X
    a)29
    b)28
    c)26
    d)25
9. Give the output and convert into if else statement.




Check whether the word is Special word or Palindrome word.

Special words are those words which starts and ends with the same letter.  Examples: EXISTENCE COMIC WINDOW Palindrome words are those words...