creativity Online Quiz - 16

creativity Online Quiz - 16

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

Who is known as "DAA", Jiske peeche 300 mulkon ki police hai....

  1. Amitabh Bachchan
  2. Sharukh Khan
  3. Kiran J
  4. Amir Khan
Question 2 Multiple Choice (Single Answer)

Whoes world famous dialog is "Chalo-chalo Dumb sharreds khelte hain"

  1. Priyanka chopra
  2. Vartika Galav
  3. Rani mukherjee
  4. superstar Rajnikant
Question 3 Multiple Choice (Single Answer)

Name the person who was awarded the degree of "DR" without doing Phd. or Medicals.

  1. Pranay Garg
  2. Amar
  3. Akabar
  4. Anthony
Question 4 Multiple Choice (Single Answer)

Name the most Dangerous girl of the batch who is always ready to beat anyone

  1. Priyanka chopra
  2. Preeti zinta
  3. Priyanka Jha
  4. Priya Gill
Question 5 Multiple Choice (Single Answer)

The girl wit yellow teeth and dynamite nails

  1. Neha Dhupiya
  2. Neha Chaturvedi
  3. Neha chawala
  4. Neha Singh
Question 6 Multiple Choice (Single Answer)

The genius in palm reading and very good orator.

  1. Ajay Devgan
  2. Vinodh Rajagopalan
  3. Vinodh Mehra
  4. Vinodh Khanna
Question 7 Multiple Choice (Single Answer)

The girl who sings while talking

  1. Sania Nehwal
  2. Saniya Mirza
  3. Sanu Beta
  4. Diya Mirza
Question 8 Multiple Choice (Single Answer)

The world best standup comedian of the batch

  1. Nikhil Chinnapa
  2. Russel Peters
  3. Raju Srivastava
  4. Nikhil Bhagat
Question 9 Multiple Choice (Single Answer)

The best Dancer of the batch...

  1. Santosh A
  2. Saniya Sabeen
  3. Amritha
  4. Vartika Galav
Question 10 Multiple Choice (Single Answer)

Person with rolling eyes and moving head and cannot speak the word LOVE

  1. Hema Malni
  2. Anushka Sharma
  3. Anusha Seetharaman
  4. Juhi Chawla
Question 11 Multiple Choice (Single Answer)

For many times can u call a loop inside a loop i:e multiple loops???

  1. Infinite
  2. Depends on RAM capacity
  3. Depends on compiler
  4. none of above
Question 12 Multiple Choice (Single Answer)

Which one is faster among the following?

  1. i=i+1
  2. i=1*1
  3. i++
  4. i=i^2
Question 13 Multiple Choice (Single Answer)

What is the value NULL??

  1. zero only
  2. ZERO or Void Pointer
  3. Zero or void
  4. none
Question 14 Multiple Choice (Single Answer)

Which is faster language among the following??

  1. Java
  2. C/C++
  3. Python
  4. Pascal
Question 15 Multiple Choice (Single Answer)

Output of the following? printf("%d",-5/-4);

  1. 1
  2. -1
  3. Error
  4. 0
Question 16 Multiple Choice (Single Answer)

Header file of exit() and memset()??

  1. process.h & Dos.h
  2. string.h & process.h
  3. process.h & string.h
  4. Dos.h & Process.h
Question 17 Multiple Choice (Multiple Answers)

how will u find Prime No below N<=10^6 within 2 sec whereas the Processor speed is low , Ram capacity is also limited..

  1. sieve of Atkin
  2. Cheacking each number wherther it is prime or not
  3. Eratosthenes Sieve
  4. none of the above
Question 18 Multiple Choice (Single Answer)

what will be the output?? int main(int c) c=1; while(1); c++; printf("%d",++c); return 0; }

  1. Nothing
  2. 3
  3. 1
  4. 2
Question 19 Multiple Choice (Single Answer)

output?? int main() { printf("%0.4f",3.414164); return 0; }

  1. 3.4141
  2. 3.41426
  3. 3.414164
  4. 3.4142
Question 20 Multiple Choice (Multiple Answers)

Output ??? enum {false,true}; int main() { int i=1; do { printf("%d\n",i); i++; if(i < 15) continue; }while(false); return 0; }

  1. 12345
  2. 1234
  3. 123
  4. 1