Challenger App

No.1 PSC Learning App

1M+ Downloads
The switch variable in C can be of :

AChar type only

BFlot type only

CInt type only

DBoth int as well as char type

Answer:

D. Both int as well as char type


Related Questions:

താഴെ പറയുന്ന പ്രസ്താവനകളിൽ ജാവയുമായി ബന്ധപ്പെട്ട് ശരിയായത് ഏതാണ് ?

  1. സൺ മൈക്രോസിസ്റ്റത്തിന് വേണ്ടി ജെയിംസ് ഗോസ്‌ലിംഗ് വികസിപ്പിച്ചെടുത്തു 
  2. ജാവ ഇപ്പോൾ ഒറാക്കിൽ കമ്പനിയുടെ നിയന്ത്രണത്തിലാണ് 
  3. ജാവ പ്രോഗ്രാം ആദ്യമായി അവതരിപ്പിച്ചത് 1985 ൽ ആയിരുന്നു 
  4. ജാവ പ്രോഗ്രാമിങ് ഭാഷയുടെ പരിഷ്കരിച്ച പതിപ്പാണ് - ജാവ സ്ക്രിപ്റ്റ് 
Which of the following is a programming Language ?

What is the value of sum after the execution of the following code?

int sum = 0;

for (int i = -5; i<=;i++)

{

         if (!i) break;

         sum += i;

}

 

 

What is an abstract class in OOP?
Which statement is valid about the interpreter?