You are on page 1of 37

QUIZADER

FROM BCA DEPARTMENT


IDENTIFY THIS PERSONALITY

TED CODD

Full name Edgar frank Ted Codd


Born : 19 August 1923, United Kingdom
INFORMATION: created 12 rules on which
every relational database is built - an essential
ingredient for building business computer
systems.
IDENTIFY THIS PERSONALITY

MANAL AL-SHARIF

Full name: Manal Al-Sharif


Born : 25 April 1979, Saudi Arabia
INFORMATION: founder of the
Women2Hack Academy, a program that aims
to foster tech talent in Saudi Arabia, with a
focus on information security.
IDENTIFY THIS PERSONALITY

JAMES GOSLING

Full name James Gosling


Born : 19 May 1955, Canada
INFORMATION: Gosling is best known as
the father of the Java programming language,
the first programme language designed with the
internet in mind and which could adapt to
highly distributed applications.
IDENTIFY THIS PERSONALITY

STEVE SHIRLEY

Full name Steve Shirley


Born : 16 September 1933, Germany
INFORMATION: champion for women in IT.
She founded the company now known as Xansa,
pioneered new work practices and in doing so
created new opportunities for women in
technology
IDENTIFY THIS PERSONALITY

Tim Berners-Lee

Full name: Tim Berner-lee


Born : 8 June 1955 ,London
INFORMATION: made the imaginative
leap to combine the internet with the hypertext
concept, and the worldwide web was born.
IDENTIFY THIS PERSONALITY

Elon Musk

Full name Elon Reeve Musk


Born : 28 June 1971, South Africa
INFORMATION: business magnate, industrial
designer, and engineer. He is the founder, CEO,
CTO, and chief designer of SpaceX
IDENTIFY THIS PERSONALITY

Kalyan Krishnamurthy

Full name : Kalyan Krishnamurthy


Born : 12 January 1972
INFORMATION: the CEO of Flipkart. Prior to
joining Flipkart, Mr. Krishnamurthy served as the
Director of Finance and Portfolio Companies at Tiger
Global Management.
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION :This camera company


understands the importance of client-
centric service and the joy in the art of
video and photography.
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION :This is actually


Google’s corporate code of conduct.
The world’s largest search engine
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION : American
multinational technology company
And we wouldn’t expect anything less from
this tech giant.
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION : American
multinational e-commerce corporation.
consumer-to-consumer and business-to-
consumer sales through its website.
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION :worldwide leader


in IT and networking. We help companies
of all sizes transform how people connect,
communicate, and collaborate.
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION :Compaq was an


American information technology
company founded in 1982 that developed,
sold, and supported computers and
related products and services. Compaq
produced some of the first IBM PC
FAMOUS TAGLINE OF WHICH COMPANY

INFORMATION :Facebook builds
technologies that give people the power to
connect with friends and family, find
communities and grow businesses.
FIND OUT THE LOGO
FIND OUT THE LOGO
FIND OUT THE LOGO
FIND OUT THE LOGO
FIND OUT THE LOGO
FIND OUT THE LOGO
FIND OUT THE LOGO
23
Expand the following

MOUSE

Manually Operated User Selection


Equipment

24
Expand the following

GPRS

General Packet Radio Service 

25
Expand the following

ARPANET

Advanced Research Project Agency


Network

26
Expand the following

COBOL

Common Business Oriented

27
Choose the correct one

Microsoft has opened its new IDC facility in which city?

A. FARIDABAD B. MUMBAI

C. SURAT D.NOIDA
The newest Microsoft India Development Centre is now open in Noida, a satellite town around New Delhi.
Choose the correct one

Which telecom company has become the first one in India to


demonstrate the operation of the 5G network?

A. RELIANCE JIO B. AIRTEL

C. VI D. BSNL
Bharti Airtel announced that it has become the country's first telecom operator to successfully
Choose the correct one

India's First No-Permission No-Takeoff compliant drone flight on the A200


Remotely Piloted Aircraft System has been completed successfully in which state?

A. PUNJAB B. KARNATAKA

C. BIHAR D. UTTARPRADESH
Asteria Aerospace in the green zone identified by the Directorate General of Civil Aviation (DGCA), near
Tumkur in Karnataka.
Choose the correct one

Which institute has developed a virtual classroom aid, 'Mobile Masterjee'?

A. IIT KANPUR B. IIT BHUBANSEWAR

C. IIT, MANDI
D. INDIAN INSTITUE OF SCIENCE
The Indian Institute of Technology(IIT) Kanpur has developed a virtual classroom aid, 'Mobile Masterjee'. It
is a classroom-to-home teaching setup, which enables students to record teachers' lectures/instructions
while using smartphones. It is developed by the Imagineering Lab of IIT Kanpur.
32
What will be the output of the program ?
#include<stdio.h>
int main()
{ enum days {MON=-1, TUE, WED=6, THU, FRI, SAT};
printf("%d, %d, %d, %d, %d, %d\n", ++MON, TUE, WED, THU, FRI, SAT);
return 0;
}
Answer: Option B
A. -1, 0, 1, 2, 3, 4
B. Error
C. 0, 1, 6, 3, 4, 5
Explanation : Because ++ or -- cannot be done
D. 0, 0, 6, 7, 8, 9 on enum value
33
Comment on the output of this C code?
int main()
{ int a[5] = {1, 2, 3, 4, 5};
int i; Answer: Option D
for (i = 0; i < 5; i++)
if ((char)a[i] == '5') Explanation:The ASCII value of 5 is 53,
the char type-casted integral value 5 is
printf("%d\n", a[i]);
5 only.
elseprintf("FAIL\n");
}
A. The compiler will flag an error
B. Program will compile and print the output 5
C. Program will compile and print the ASCII value of 5
D. Program will compile and print FAIL for 5 times 34
Point out the error in the program?
struct emp
{
int ecode;
struct emp *e;
}
Answer: Option C
A. Error: in structure declaration
B. Linker Error
C. No Error
D. None of above Explanation: This type of declaration is
called as self-referential structure.
Here *e is pointer to a struct emp 35
What will be the output of the program?
#include<stdio.h>
int main()
{ int a[5] = {5, 1, 15, 20, 25};
int i, j, m; i = ++a[1];
j = a[1]++; Solution: Option C

m = a[i++]; Explanation: Step 1: int a[5] = {5, 1, 15, 20, 25};


printf("%d, %d, %d", i, j, m); It prints the value of the variables i, j, m
return 0; Hence the output of the program is 3, 2, 15
} A. 2, 1, 15
B. 1, 2, 5
C. 3, 2, 15
D. 2, 3, 20 36
37

You might also like