Quark Previous Years Solved Sample Placement Papers
-
Choose the one which can be substituted for the given word/sentence: "Medical study of skin and its diseases."
(A) Dermatology Answer: A
(B) Endocrinology
(C) Gynecology
(D) Orthopaedics
-
In the question given below, a part of the sentence is italicized and underlined. Below are given alternatives to the italicized part which may improve the sentence. Choose the correct alternative:
"Will you kindly open the knot?"
(A) untie Answer: A
(B) break
(C) loose
(D) No improvement
-
Select the most closely related word to the capitalized word:
"FULSOME"
(A) Excessive Answer: A
(B) Trivial
(C) Thorough
(D) Eager
-
Rearrange the following five sentences in proper sequence so as to form a meaningful paragraph, then answer the questions given below them.
1. But, we all helped in the first few days.
2. Chandrapur is considered a rural area.
3. Manohar was transferred to his office recently.
4. Initially, he was not getting adjusted to the city life.
5. Now, Manohar is very proud of his colleagues.
6. Before that, he was working in the Chandrapur branch of our office.
7. Which of the following should be the third sentence?
(A) 5
(B) 6
(C) 1
(D) 2 Answer: D
- The district administration has issued a circular to all farmers advising against indiscriminate use of pesticides as it may pollute the groundwater.
I People may stop using groundwater if pesticides continue to be used indiscriminately.
II Farmers may refrain from using pesticides indiscriminately.
(A) Only assumption I is implicit
(B) Only assumption II is implicit
(C) Either I or II is implicit
(D) Neither I nor II is implicit
(E) Both I and II are implicit
Ans: B
- The Government has decided to levy a 2% surcharge on tax for funding drought relief programs.
I The Government does not have sufficient funds for drought relief.
II The amount collected by the surcharge may adequately fund these programs.
(A) Only assumption I is implicit
(B) Only assumption II is implicit
(C) Either I or II is implicit
(D) Neither I nor II is implicit
(E) Both I and II are implicit
Ans: E
- Find the statement that must be true:
Vincent delivers 37 newspapers every morning in 50 minutes. If he's unavailable, Thomas from the same street helps out.
(A) Vincent and Thomas live in the same neighborhood.
(B) It takes Thomas longer than 50 minutes.
(C) It is dark when Vincent starts.
(D) Thomas wants his own paper route.
Ans: A
- In this company, 60% of employees are males, 40% are females, 80% are sincere, and 40% are from Rawalpura.
(A) All male employees are from outstation.
(B) All male employees are sincere.
(C) 20% of female employees are not sincere.
(D) All female employees are from Rawalpura.
(E) None of these
Ans: E
- QAR, RAS, SAT, TAU, _____
(A) UAV
(B) UAT
(C) TAS
(D) TAT
Ans: A
-
In C, if you pass an array as an argument to a function, what actually gets passed?
(a) Value of elements in array
(b) First element of the array
(c) Base address of the array (Ans)
(d) Address of the last element of array
-
Out of fgets() and gets(), which function is safe to use?
(a) gets()
(b) fgets() (Ans)
-
In the following code, what is 'P'?
```c
typedef char *charp;
const charp P;
```
(a) P is a constant (Ans)
(b) P is a character constant
(c) P is character type
(d) None of the above