You are on page 1of 6

SECTION A

1) Cost of a speaker is Rs. 800. A supplier provides two successive discounts


and sells it at Rs. 612. If the first discount is 10%, the second discount is

a.​ 12%
b.​ 20%
c.​ 15%
d.​ 10%

2) A plane is moving at the speed of 1800 km/hr. What will be it’s speed in m/s.

a.​ 50
b.​ 400
c.​ 300
d.​ 500

3) If ratio of the areas of two squares is 1:4, the ratio of their perimeters is

a.​ 1:2
b.​ 1:4
c.​ 1:6
d.​ 1:8

4) Average age of X and Y is 30 years, that of Y and Z is 32 years and the


average age of Z and X is 34 years. The age of Z is

a.​ 33 years
b.​ 34 years
c.​ 35 years
d.​ 36 years

5) If 1​2​+2​2​+3​2​+…..+ 10​2​ = 385, then 3​2​+6​2​+9​2​+….+30​2​ is equal to

a.​ 3465
b.​ 2310
c.​ 1155
d.​ 770

6) 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

7) 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

8) 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

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

a.​ 1440
b.​ 6
c.​ 2160
d.​ 4320
10) Salman buys some decorative stones at Rs. 15 per kg. He mixes it with
stones having a price Rs. 18 per kg. Finally, the mixture is priced at Rs. 16 per kg.
What is the ratio of quantities of type 1 stones to type 2 stones?

a.​ 2:1
b.​ 1:2
c.​ 5:6
d.​ 6:5

SECTION B

11) A relational database consists of a collection of

a. Tables
b. Fields
c. Records
d. Keys

12) In MySQL, Updates that violate __________ are disallowed.

a. Integrity constraints
b. Transaction control
c. Authorization
d. DDL constraints

13) 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;

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) Suppose we want to arrange five nos. of DIVs so that DIV4 is placed above DIV1. Now,
which css property will we use to control the order of stack?
a. d-index
b. s-index
c. x-index
d. z-index

16) Which of the following defines 1% of viewport height?


a. px
b. vh
c. vw
d. ph

17) 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

18) Error 403 in web signifies:


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

19) ‘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

20) What will be the output of the following JavaScript code?


function ff(){

var number = 10;

if(number == "10")

return true;

else

return false;

console.log(ff());

a. true
b. false
c. Runtime Error

d. Compilation Error

21) 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");
22) 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

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