HSSC GROUP’D’ EXAM 23.12.2018 (Shift-I)

Total Questions: 100

41. From the given alternatives select the word which cannot be formed using the letters of the word "OUTRAGEOUS"

Correct Answer: (4) GREGARIOUS
Solution:There is no 'I' letter in the given word. Therefore, the word GREGARIOUS cannot be formed.

OU[TRAGE]OUS ⇒ GREAT
[OUT] R [AGE]OUS ⇒ OUTAGE
OU [TRA] GEO [US] ⇒ SURAT

42. When a name is encountered during the execution of the program, it searches for that name in the following order.

Correct Answer: (4) local, enclosing functions, global, built-in
Solution:According to the LRGB Rule, when a name is encountered during the execution of the program, it searches for that name in the following order:
  • L. Local It first makes a local search i.e. in current def statement;
  • E. Enclosing functions - It searches in all enclosing functions, form inner to outer;
  • G. Global (module) -It searches for global modules or for names declared global;
  •  B. Built-in (Python) - Finally it checks for any built in functions in Python.

43. Chile saltpetre is

Correct Answer: (1) NaNO₃
Solution:Sodium nitrate, a chemical compound with the formula NaNO₃, is also known as Chile saltpetre. It is so named because large deposits of this salt can be found in Chile to distinguish it from ordinary saltpeter, potassium nitrate. The mineral form is also known as nitratine, nitratite or soda niter.

44. Values of k for the equation kx(x-2)+6=0 so that it has two equal roots are

Correct Answer: (2) 6
Solution:kx(x - 2) + 6 = 0
⇒ kx² - 2kx + 6 = 0
The roots of equation ax² + bx + c = 0 will be equal if b² - 4ac = 0
∴ (-2k)² - 4k × 6 = 0
⇒ 4k² - 24k = 0
⇒ 4k (k - 6) = 0
∴ k = 0 or k = 6
but k = 0 is inadmissible.

45. Number of districts when Haryana was carved in 1966 was

Correct Answer: (3) 7
Solution:On 1 November, 1966, Haryana was constituted as a separate state with seven districts, according to the partition plan of the then East Punjab. The seven districts were Rohtak, Jind, Hisar, Mahendragarh, Gurgaon, Karnal, Ambala.

46. Department of Information, Public Relations and languages, Haryana brings out a magazine named

Correct Answer: (3) Haryana Samvad
Solution:The Information, Public Relations and Languages Department of Haryana government publishes and prints various magazines like 'Haryana Samvad' Hindi, along with its supplement 'Krishi Samvad', 'Haryana Review' English, 'Haryana Samvad (Punjabi)', "Tamir-E-Haryana' Urdu through Samvad Society, depicting various schemes launched by the State Government.

47. Predict the output of following code.

int f = 1, i = 2;
do {
f *= i;
} while (++i < 5);
cout << f;

Correct Answer: (1) 12
Solution:The given program is as
follows :
int f = 1, i = 2
do {f* = i} while (++i < 5) in
the first step i = 2 and f = 1 +
+ i means i = i + 1 => i = 2+1
= 3
since it is less than 5 so the
loop executes, i.e.
f* = i which is a short representation of
f = f * i => f = 1 * 3 = 3
again,
i = i + 1
=> i = 3 + 1 = 4
since it is also less than 5
hence the loop executes
again, i.e
f = f * i
=> f = 3 * 4 = 12
Now in the next increment,
i = 4 +1 = 5
which is not less than 5 , so
the loop will not execute any
further
Hence, the final value of f will
be 12

48. A new 2800 Megawatt nuclear power plant will be setup at this place of Haryana

Correct Answer: (2) Gorakhpur
Solution:Former Prime Minister Manmohan Singh in January 2014 laid the foundation stone of a 2,800 megawatt nuclear power plant near Gorakhpur village in the Fatehabad district of Haryana. The Haryana Anu Vidyut Pariyojna project will have four units, each of 700-MW capacity, and is to come up at a cost Rs. 23,502 crore.

49. Choose the option, which is not included in networking

Correct Answer: (3) Power transferring
Solution:A network is any collection of independent computers that communicate with one another over a shared network medium. It involves the following:
  • Resource sharing - files and peripherals: A network enables users to share data files with each other;
  • Improving communication : A computer network can provide a powerful, fast and reliable communication medium among the users of various computers on the network;
  • Access to remote database: This is another major use of network. It is easy for an average person to access any remote database, say for example, airline reservations and thereby book tickets.

50. The Article of Indian Constitution which gives special status to Jammu and Kashmir

Correct Answer: (1) 370
Solution:Article 370 of the Indian constitution grants special autonomous status to the state of Jammu and Kashmir. Article 370 specifies that except for Defence, Foreign Afairs, Finance and communications, the Indian Parliament needs the State Government's concurrence for applying all other laws. Under the Part XXI of the Constitution of India, which deals with "Temporary, Transitional and Special provisions", Article 370 is a temporary provision.