Tag: programming languages

Questions Related to programming languages

The default value of the boolean type is

  1. True

  2. False


Correct Option: B

EJB and Java beans can be run on many systems?

  1. True

  2. False


Correct Option: B

What will be the output of the following program : void main() { int a=5; int b=6;; int c=a+b; printf("%d",c); }

  1. Compile-Time Error

  2. Run-Time Error

  3. 11

  4. None of above


Correct Option: C