Questionnaire for the event Ex-Qu!z-!t
GENERAL KNOWLEDGE
Q1.Who is the Secretary General of the
United Nations?
a. Ban Ki-moon b. Christine Lagarde
c. Jim Yong Kim d. Salil Shetty
Q2.The members of the Rajya Sabha are
elected by
|
a.the people b.Lok Sabha
c.elected members of legislative
assembly.
d.elected members of legislative council
Q3.
|
Galileo was an Italian astronomer who
|
|||||||
|
Q4. In MICR, C stands for .....
a. code b.colour
c.character d.computer
Q5. ISRO recently gave clearance for
using which trequency band from satellite for internet on trains?
a. C
Band b. KU
Band
c. S
Band d. 3G Spectram
Q6. The mechanism that binds code and
data together and keeps them secure from outside world is known as
a.Abstraction b.Encapsulation
c.Inheritance d.Polymorphism
Q7. With which subject is Dadasaheb
Phalke Award associated?
a. Best Play Back singer b. Best film actor
c. Worked for the development for the film industry
d. Best musician
a. Best Play Back singer b. Best film actor
c. Worked for the development for the film industry
d. Best musician
Q8. Name first airport of India to use
solar power for its utility grid system
Q9.Grand Central Terminal, Park
Avenue, New York is the world's
|
||||||||
|
Q10.What is common between Kutty,
Shankar, Laxman and Sudhir Dar?
|
||||||||
|
LOGICAL/VERBAL REASONING
a.B2C2D
|
BC3D
|
|
c.B2C3D
|
BCD7
|
Q2..Choose the correct answer.
1
|
2
|
||
3
|
4
|
Q3. Which one will replace the
question mark ?
|
||||||||
|
Q4. A student got twice as many sums wrong as he got right. If he attempted 48 sums in all, how many did he solve correctly? |
||||||||
|
Q5.
Complete the series- Scribble:Write:: Stammer:?
a.walk b.play
c.speak d.dance
Q6.Which one will replace the question
mark ?
|
||||||||
|
Q7.Which of the following diagrams
indicates the best relation between Travelers, Train and Bus ?
|
||||
Q8.A, B, C, D and E are sitting on a
bench. A is sitting next to B, C is sitting next to D, D is not sitting with
E who is on the left end of the bench. C is on the second position from the
right. A is to the right of B and E. A and C are sitting together. In which
position A is sitting ?
|
||||||||
|
Q9.If A + B means A is the brother of
B; A - B means A is the sister of B and A x B means A is the father of B.
Which of the following means that C is the son of M?
|
||||||||
|
Q10.Which one will replace the
question mark ?
|
||||||||
|
SIMPLE TECHNICAL LANGUAGE
Q1.
What is part of a database that holds only one type of information?
|
||||||||
|
Q2. Which is a type of Electrically-Erasable Programmable Read-Only Memory? |
||||||||
|
||||||||
Q3.What do we call a network whose
elements may be separated by some distance? It usually involves two or more
small networks and dedicated high-speed telephone lines.
|
||||||||
|
Q4. Computer follows a simple principle
called GIGO which means:
a. Garbage in garbage out
b. Garbage input good output
c. Good input good output
d. Greater instructions greater output
Q5. Which of the following systems run
an application layer firewall using proxy software?
a.
Proxy NAT
b.
Proxy client
c.
client 32
d.
proxy server
Q6.Which of the following companies is a
leader in manufacture of Hard Disk Drives?
a.
Samsung
b.IBM
c.
Fujitsu
d. Segate
Q7. Which of the following is a popular
Programming Language for developing multimedia Web pages, Websites and
web-Based applications?
a. COBOL
b. JAVA
c. ASSEMBLER
d. None of these
Q8. What are the individual RAM chips
called ?
a)hard disks
b)flash drives
c)solid state drives
d)memory modules
Q9.What protocol sends encrypted data
over the internet?
a)HTTP
b)SSL
c)SMTP
d)FTP
Q10.Which of the following actions is
the best example of web publishing?
a.Tweeting via Twitter
b. Posting a Facebook status update
c.Uploading a webpage to a web server
d.Updating a LinkedIn profile
CURRENT AFFAIRS
Q1. The person elected by Shiv Sena as
the President of the Party on 23 January 2013 at Sena Headquarters at Dadar,
Central Mumbai
Q2.The mastermind of 26/11 terror attack
who was sentenced to 35 years of imprisonment by the U.S. Federal District
Court Judge Harry Leinenweber
Q3. Ajmal Kasab got hanged in the jail
of which city?
a. Mumbai
b. Pune c. Delhi d. Nagpur
Q4.Which social networking site was
recently hacked whose 200 million user’s personal data was attacked?
a.Twitter b.Facebook.
c.Bigadda d.hi5
Q5.King of which country visited India
on the Republic Day who was also the chief guest for the day?
a.Iran b.Bhutan
c.Shrilanka d.Iraq
Q6.Which movie of the actor Kamal Hassan was banned by the
government of Tamil Nadu?
Q7.Which new state is going to emerge
after the splitting of Andra Pradesh?
Q8.Which was the top brand on twitter
during CES(Consumer Electronics Show) 2013?
Q9.Which singer was arrested at the
Mumbai airport for allegedly carrying Indian and Foreign currency beyond
permissible limit?
Q10.Havard University invites which
Indian Actor to deliver a lecture to its students?
DEBUGGING
Q1.Point out the error in the program
#include
int f(int a)
{
a > 20? return(10): return(20);
}
int main()
{
int f(int);
int b;
b = f(20);
printf("%d\n", b);
return 0;
}
|
||||||||
|
Q2.Which of the following function
prototype is perfectly acceptable?
|
||||||||
|
Q3.Point out the error/warning in the
program?
#include
int main()
{
unsigned char ch;
FILE *fp;
fp=fopen("trial", "r");
while((ch = getc(fp))!=EOF)
printf("%c", ch);
fclose(fp);
return 0;
}
|
||||||||
|
Q4.Point out the error in the program?
#include
int main()
{
char ch;
int i;
scanf("%c", &i);
scanf("%d", &ch);
printf("%c %d", ch, i);
return 0;
}
|
||||||||
|
Q5. void main() {
int const * p=5;
printf("%d",++(*p));
}
Q6. main() {
char
string[]="Hello World";
display(string);
}
void display(char *string) {
printf("%s",string);
}
Q7. main() {
int i=1,j=2;
switch(i) {
case 1: printf("GOOD");
break;
case j: printf("BAD");
break;
}
}
int i=1,j=2;
switch(i) {
case 1: printf("GOOD");
break;
case j: printf("BAD");
break;
}
}
Q8. main(){
char
*cptr,c;
void
*vptr,v;
c=10; v=0;
cptr=&c;
vptr=&v;
printf("%c%v",c,v);
}
Write the correct program for Q9 and
Q10.
Q9. To concatenate two strings
#include
#include
#include
void main()
{
char c[100];
int a[50];
char b(50);
clrscr();
printf("Enter a
string1:");
gets(a);
printf("Enter a
string2:");
gets(b);
strcat( a,b);
printf("%d",a);
getch();
}
Q10.Calculate power in watts
int main()
{
float power,voltage,current;
voltage = current = 0;
printf("Power calculator.\n");
printf("This will calculate the power in watts , ");
printf("when you input the voltage and current.");
/*get the voltage*/
printf("Enter the voltage in volts.\n");
scanf("%d",&voltage);
/*get the current*/
printf("Enter the current in amps.\n");
scanf("%f",¤t);
/*calculate the power*/
power = voltage * current;
printf("The power in watts is %.2f watts\n",power);
getch();
}
No comments:
Post a Comment