0% found this document useful (0 votes)
70 views20 pages

Placement Cell Interview Preparation Question Paper 1

Papers

Uploaded by

aa98261645
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views20 pages

Placement Cell Interview Preparation Question Paper 1

Papers

Uploaded by

aa98261645
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

Placement Cell Interview Preparation


Question Paper
All

* Indicates required question

1. ExtendedForms Id (skip this field)


DO NOT EDIT this field or your score will not recorded.

2. (1) Present age of Vinod and Ashok are in ratio of 3:4 respectively. After 5 2 points
years, the ratio of their ages becomes 7:9 respectively. What is Ashok’s
present age is ?

Mark only one oval.

40 years

28 years

36 years

32 years

3. (2) Paul has to travel 24 km. After walking for 1 hour 40 minutes he sees 2 points
that he has covered 5/7 of the distance left to cover. Find out Paul’s speed
in meters per second.

Mark only one oval.

5/3 m/s

7/5 m/s

8/5 m/s

2/3 m/s

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 1/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

4. (3) Please choose one correct answer: 2 points


0.125 | 0.4 | 0.5 | 1.4 | 2 | 2.4 | ?

Mark only one oval.

2.4

4.5

6.5

5. (4) Which of the following is the largest of all ? 2 points

Mark only one oval.

7/8

15/16

31/32

23/24

6. (5) In a box, there are 10p, 25p and 50p coins in the ratio 4:9:5 with the 2 points
total sum of Rs 206. How many coins of each kind does the box have?

Mark only one oval.

200, 360, 160

135, 250, 150

90, 60, 110

Can not be detemined

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 2/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

7. (6) What will be the output? 2 points

Mark only one oval.

11

10

12

8. (7) What will be the output? 2 points

Mark only one oval.

True

False

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 3/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

9. (8) 2 points

Mark only one oval.

Base class show function called.

Derived class show function called.

No output.

Compilation error.

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 4/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

10. (9) What will be the output of the following code snippet? 2 points

Mark only one oval.

null

object

undefined

number

11. (10) What is the purpose of a constructor in object-oriented programming? 2 points

Mark only one oval.

To initialize an object when it is created.

To destroy an object when it is no longer needed.

To create static methods in a class.

To define abstract methods in an interface.

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 5/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

12. (11) What will be the output? 2 points

Mark only one oval.

Hello

hEllo

Segmentation fault

none of the above

13. (12) What is the time complexity of the naive recursive algorithm for 2 points

calculating the nth Fibonacci number?

Mark only one oval.

O(n)

O(logn)

O(n^2)

O(2^n)

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 6/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

14. (13) What is the time complexity of Dijkstra's algorithm using a priority 2 points
queue implemented with a binary heap?

Mark only one oval.

O(n^2)

O(m +nlog n)

O(mlog n)

O(nlog m)

15. (14) What is the time complexity of accessing an element in a hash table? 2 points

Mark only one oval.

O(1)

O(log n)

O(n)

O(n log n)

16. (15) In a binary search tree, which traversal method gives the elements in 2 points
sorted order?

Mark only one oval.

Pre-order

In-order

Post-order

Level-order

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 7/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

17. (16) What is the space complexity of a recursive function that uses stack 2 points
space proportional to the depth of recursion?

Mark only one oval.

O(1)

O(n)

O(n^2)

O(log n)

18. (17) What does ACID stand for in database systems? 2 points

Mark only one oval.

Atomicity, Consistency, Isolation, Durability

Atomicity, Consistency, Integrity, Durability

Availability, Consistency, Isolation, Durability

Atomicity, Consistency, Isolation, Dependability

19. (18) What are the common problems that data analysts encounter during 2 points
analysis?

Mark only one oval.

Collecting the meaningful right data and the right time

You can discover hidden trends and insights from the data.

Systematic sampling

Cluster sampling

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 8/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

20. (19) What are the different types of sampling techniques used by data 2 points
analysts?

Mark only one oval.

Tableau

Microsoft Power BI

QlikView

Systematic sampling

21. (20) 24. What is the difference between COUNT, COUNTA, 2 points
COUNTBLANK, and COUNTIF in Excel?

Mark only one oval.

Under the Data Tools group, select Data Validation.

Then navigate to Settings > Allow > List.

Select the source you want to provide as a list array.

COUNTIF function returns the count of values by checking a given condition

22. (21) 25. How do you make a dropdown list in MS Excel? 2 points

Mark only one oval.

Excel (with built-in charting capabilities)

SAP Lumira

Under the Data Tools group, select Data Validation.

IBM Cognos Analytics

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 9/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

23. (22) Three friends started running together on a circular track at 8:00:00 2 points
am. Time taken by them to complete one round of the track is 15 min, 20
min, 30 min respectively. If they run continuously without any halts, then at
what time will they meet again at the starting point for the fourth time ?

Mark only one oval.

8:30:00 am

9:00:00 pm

12:00:00 pm

12:00:00 am

24. (23) Three pipes A, B and C were opened to fill a tank. Working alone, A, 2 points
B and C require 10, 15 and 20 hours respectively. A was opened at 7 AM,
B at 8 AM and C at 9 AM. At what time the tank would be completely filled,
given that pipe C can only work for 3 hours at a stretch, and needs 1-hour
standing time to work again.

Mark only one oval.

12 : 00 PM

1 : 00 PM

12 : 30 PM

1 : 30 PM

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 10/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

25. (24) A stadium was to be built in 1500 days. The contractor employed 200 2 points
men, 300 women and 750 robotic machines. After 600 days, 75% of the
work was still to be done. Fearing delay, the contractor removed all
women and 500 robotic machines. Also, he employed some more men
having the same efficiency as earlier employed men. This led to a
speedup in work and the stadium got built 50 days in advance. Find the
additional number of men employed if in one day, six men, ten women
and fifteen robotic machines have same work output.

Mark only one oval.

1100

1340

1300

1140

26. (25) If n is an integer such that 1nn352 is a six-digit number exactly 2 points
divisible by 24, What will be the sum of the possible values of n?

Mark only one oval.

15

27

21

27. (26) Rahul takes a sum of Rs. 2310 as a loan. He has to repay this in two 2 points

equal annual installments. If the rate of interest is 20% compounded


annually, what percent of the principal amount taken by Rahul is the total
interest paid by him.

Mark only one oval.

20%

40.9%

130.9%

44%

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 11/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

28. (27) An article is marked 36% above its cost price. A discount of 10% is 2 points
offered on the marked price. Later on, the article was sold by giving
another discount of Rs.12.60. If there is a profit of 15.4%, the marked
price (in Rs.) of the article is:

Mark only one oval.

245

220.30

244.80

243

29. (28) Which metric would you use to assess the accuracy of a classification 2 points

model?

Mark only one oval.

Mean Absolute Error (MAE)

R-squared

Precision and Recall

F1 Score

30. (29) In a data set, what does the term "outlier" refer to? 2 points

Mark only one oval.

A missing value

A data point that is significantly different from others

A data point within the normal range

Cleaning duplicate entries

Option 5

Option 6

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 12/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

31. (30) Which Adobe product would you use to create a comprehensive 2 points
marketing dashboard?

Mark only one oval.

Adobe Photoshop

Adobe Analytics

Adobe Illustrator

Adobe Experience Manager

32. (31) Which type of analysis would you conduct to understand user 2 points

behavior over time in Adobe Analytics?

Mark only one oval.

Cohort analysis

Descriptive analysis

Predictive analysis

Real-time analysis

33. (32) In Adobe Analytics, what is a "segment"? 2 points

Mark only one oval.

A portion of a dataset used for training models

A grouping of users based on shared characteristics

A method for visualizing data

Adobe After Effects

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 13/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

34. (33) Which of the following is a key benefit of using SQL in data 2 points
analytics?

Mark only one oval.

It allows real-time data streaming

It simplifies data manipulation and retrieval

It automatically cleanses data

It provides machine learning capabilities

35. (34) In predictive analytics, what is the purpose of a training dataset ? 2 points

Mark only one oval.

To evaluate model performance

To train the model to make predictions

To store historical data

To visualize results

36. (35) What does "A/B testing" allow you to evaluate? 2 points

Mark only one oval.

The performance of different machine learning models

The speed of data processing

The accuracy of a prediction algorithm

The effectiveness of two different approaches or variations

37. (36) Which one among the following has the least value? 2 points

Mark only one oval.

√74 - √73

√75- √74

√77 - √76

√76- √75

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 14/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

38. (37) CHOOSE ANTONYM OF NATIVE 2 points

Mark only one oval.

VERNACULAR

INDIGENOUS

EXOTIC

None

39. (38) CHOOSE SYNONYM OF PEERLESS : 2 points

Mark only one oval.

1. MEDIOCRE

UNRIVALLED

INFERIOR

IMPERFECT

40. (39) FILL IN THE BLANKS :- 2 points

HOW WE __ TO AGEING IS A CHOICE WE MUST MAKE WISELY ?

Mark only one oval.

RESPOND

ABSOLVE

DISCHARGE

OVERLOOK

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 15/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

41. (40) FILL IN THE BLANKS :- 2 points

WE CAN NOT __ SUCH A/AN __ ACT OF VIOLENCE.

Mark only one oval.

TOLERATE; INSPID

CONSIDER; IMPORTANT

COMMIT; MAGNIFICENT

PARDON; EGREGIOUS

42. (41) ASSUME THAT, SOME PINGS ARE LINGS, ALL HINGS ARE FINGS 2 points
AND SOME TINGS ARE PINGS. THEREFORE IT MAKES SENSE THAT
:

Mark only one oval.

SOME LINGS ARE TINGS

SOME FINGS ARE PINGS

ALL PINGS ARE LINGS

ALL HINGS ARE TINGS

43. (42) THE WOUNDED SOULDIER SUCCUMBED TO HIS INJURIES 2 points

LATER ON.
WHAT IS THE MEANING OF SUCCUMBED :

Mark only one oval.

HEAL

FIGHT

DIE

CRY

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 16/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

44. (43) A STYLE IN WHICH A WRITER MAKES DISPLAY OF HIS 2 points

KNOWLEDGE IS CALLED :

Mark only one oval.

ORNATE

PEDANTIC

ARTIFICIAL

SHOWY

45. (44) TO STEP DOWN FROM A POSITION OF POWER OR 2 points

RESPONSIBILITY IS CALLED :

Mark only one oval.

ABATE

ABASH

ABDICATE

ABRASION

46. (45) WHAT WILL BE NEXT ALPHABET IN THE FOLLLOWING SERIES : 2 points
B, F, L, T, ?

Mark only one oval.

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 17/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

47. (46) CAT =24, BAT =23, RAT = 39 THEN MEN = ? 2 points

Mark only one oval.

12

22

32

42

48. (47) FIND (CF + D) 2 points

Mark only one oval.

BJ + B

CH + B

EF – A

None

49. (48) IF (A+B) = I AND ( A+C) = P THE FIND THE VALUE OF ( A+D) = ? 2 points

Mark only one oval.

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 18/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

50. (49) IF "SEARCH", "LOST" AND "FOUND" ARE WRITTEN AS 951838, 2 points
2590, 65144 RESPECTIVELY THEN "GIVEN" IS WRITTEN AS :

Mark only one oval.

72145

7I254

72154

71245
Other:

51. (50) John earns 33.33% more than Peter. By what percentage is Peter’s 2 points
earning less than that of John’s?

Mark only one oval.

22%

25%

26%

23%

52. (51) Quilgo Test ID *


This question is filled automatically ✋ DO NOT EDIT OR REMOVE

This content is neither created nor endorsed by Google.

Forms

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 19/20
21/09/2024, 13:53 Placement Cell Interview Preparation Question Paper

https://docs.google.com/forms/d/1Zpd2U6rWj6HQINCIAa7BF1CHou_Ohrv2atkxFF6SR-M/edit 20/20

You might also like