You are on page 1of 6

SECTION A

1) Find P:Q:R:S when P:Q = 2:3 ; Q:R = 7:9 ; R:S = 5:7

a.​ 70 : 105 : 135 : 189


b.​ 105 : 115 : 236 :189
c.​ 70 : 124 : 155 : 201
d.​ 12 : 78 : 256 : 189

2) Vikas sees a thief at a distance of 80 m. He starts running after the thief who
is running at a speed of 5 m/s. Vikas is chasing him at a speed of 7 m/s. How
much distance does the thief cover before Vikas catches him?

a.​ 130 m
b.​ 50 m
c.​ 100 m
d.​ 200 m

3) Average age of a family of 4 members was 19 years, 4 years back. Birth of a


new child kept the average age of the family the same even today. How old is the
child today?

a.​ 4 years
b.​ 1 year
c.​ 2 years
d.​ 3 years

4) With stoppage, the speed of a train is 36 km/hr. However, without stoppage, it


is 40 km/hr. Find out for how many minutes does the train stop per hour?

a.​ 6 minutes
b.​ 8 minutes
c.​ 10 minutes
d.​ 4 minutes
5) A river flows at a speed of 6 km/hr. John swims downstream for some
distance in just 12 hours. But he takes 18 hours to return the same distance
upstream. How fast is John in still water?

a.​ 30 km/hr
b.​ 24 km/hr
c.​ 12 km/hr
d.​ 36 km/hr

6) A room has 6 yellow, 4 green, 2 gray and 3 purple sticks. When 2 sticks are
picked randomly, what is the probability that either both are gray or both are
purple?

a.​ 4/105
b.​ 1/35
c.​ 1/105
d.​ 1/15

7) In 10 hours Vaibhav rows 30 kms upstream and 44 kms downstream. Also he


travels 40 kms upstream and 55 kms downstream in 13 hours. What is the speed
of the boat in still water?

a.​ 3 km/hr
b.​ 8 km/hr
c.​ 11 km/hr
d.​ 16 km/hr

8) Part of a pole broke and fell on the ground. The pole however does not fall
completely and is still attached to its breaking point. The pole top touches the
ground at a point 10m from the root of the pole, making an angle of 30°. What is
the length of the pole?

a.​ 103 m
b.​ 10/3 m
c.​ (2 - 1)/10 m
d.​ 10/2 m

9) Ramadhir gets double the amount in 9 years when he invested an amount of


5000 at compound interest. In how many years will the amount become four times
itself?

a.​ 13.5 years


b.​ 27 years
c.​ 9 years
d.​ 18 years

10) In how many ways can we arrange the word ‘BUZZFONE’ so that all the
vowels come together?

a.​ 1440
b.​ 6
c.​ 2160
d.​ 4320

SECTION B

11) This Query can be replaced by which one of the following?

Queery: ​SELECT name, course_id FROM instructor, teaches WHERE


instructor_ID= teaches_ID;

a. SELECT name,course_id from teaches,instructor where


instructor_id=course_id;
b. SELECT name, course_id from instructor natural join
teaches;
c. SELECT name, course_id from instructor;
d. SELECT course_id from instructor join teaches;

12) Which statement is wrong about PRIMARY KEY constraint in SQL?

a. The PRIMARY KEY uniquely identifies each record in a SQL database table
b. Primary key can be made based on multiple columns
c. Primary key field allows having multiple records with NULL value in the field.
d. Primary keys must contain UNIQUE values.

13) To search for a specified pattern in a column, the keyword used in SQL is:

a. MATCH
b. LIKE
c. PATTERN
d. SEARCH

14) What is the correct HTML for adding a background color?

a. <body style="background-color:yellow;”>
b. <background color=”yellow”></background>
c. <body bg=”yellow”></body>
d. <body color=”yellow”></body>

15) If we want to wrap a block of text around an image, which css property will we use on
the image ?
a. wrap
b. push
c. float
d. align-items

16) Data stored in ​window.localStorage​ is cleared when:


a. User closes the current tab
b. User closes the browser
c. User closes and reopens the browser
d. Not cleared in any of the above events

17) Error 403 in web signifies:


a. Internal Server Error
b. Page Not Found
c. Forbidden Content
d. None of the above

18) ‘alt’ attribute in an <img> tag is used for:


a. Specify an alternate URL for image, useful if the actual image link is broken
b. To give information about the image, useful if the image cannot be displayed due to any
reason.
c. To indicate that the image tag is used as an alternate tag.
d. None of the above

19) Which tag can be used to insert a horizontal line on a web page?
a. < hr>
b. < br>
c. < line>
d. < line direction = “horizontal”>

20) Which of the following is the correct syntax to display "Hello" in an alert box using
JavaScript?

a. alert-box("Hello");

b. confirm("Hello");

c. msgbox("Hello");
d. alert("Hello");

21) What is the relationship between ‘Java’ and ‘JavaScript’:

a. JavaScript is subset of Java


b. JavaScript is superset of Java

c. Java and JavaScript are unrelated languages

d. Both Java and JavaScript are derived from .NET


22) Does JavaScript allow exception handling?

a. Yes, it provides try, catch as well as throw key word for exception handling

b. Yes, but it provides only try block

c. Yes, but it provides only Try catch block, but does not allow throw exception

d. No

23) What does ​setTimeout​function do in JavaScript?

a. Executes a function after a given time interval repeatedly

b. Executes a function once after a given time interval

c. Stops page rendering after a given time interval

d. Executes a function after each 1 second repeatedly

24) Which data structure is mainly used for implementing the recursive algorithm?

a. Queue

b. Stack

c. Binary tree
d. Linked list

25) Which of the following data structure is based on the principle of “First In First Out”:
a. Linear Array
b. Circular Array
c. Queue
d. Stack

You might also like