-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.json
More file actions
8625 lines (8525 loc) · 297 KB
/
Data.json
File metadata and controls
8625 lines (8525 loc) · 297 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"course":"Accountant",
"questionpapers":[{"31-2014":[
{
"number": 1,
"question": "'One caste, One religion and One God for man' was the message of:",
"options": ["Sree Narayana Guru", "Chattampi Swamikal", "Ayyankali", "Pandit Karuppan"],
"answer": "Sree Narayana Guru"
},
{
"number": 2,
"question": "Scientific study of soils is called:",
"options": ["Cartography", "Pedology", "Physiology", "Palaeology"],
"answer": "Pedology"
},
{
"number": 3,
"question": "Father of 'White Revolution':",
"options": ["M.S. Swaminathan", "Dadabhai Naoroji", "Verghese Kurien", "Amartya Sen"],
"answer": "Verghese Kurien"
},
{
"number": 4,
"question": "Who published the famous 'Swadeshabhimani' newspaper?",
"options": ["Vakkom Moulavi", "C. Krishnan", "E.V. Krishna Pillai", "K.C. Kesava Pillai"],
"answer": "Vakkom Moulavi"
},
{
"number": 5,
"question": "First Five Year Plan started in India:",
"options": ["1950", "1954", "1956", "1951"],
"answer": "1951"
},
{
"number": 6,
"question": "Ezuthachan Award Winner of 2013:",
"options": ["Dr. M. Leelavathi", "Dr. M.K. Sanu", "M.T. Vasudevan Nair", "Attoor Ravivarma"],
"answer": "M.T. Vasudevan Nair"
},
{
"number": 7,
"question": "Lines connecting places of equal temperature are called:",
"options": ["Isobars", "Isohels", "Isonephs", "Isotherms"],
"answer": "Isotherms"
},
{
"number": 8,
"question": "Play 'Adukkalayil ninnum arangathekku' was written by:",
"options": ["E.M.S. Namboothirippad", "K.M. Panikkar", "V.T. Bhattathirippad", "Vishnu Narayanan Namboothiri"],
"answer": "V.T. Bhattathirippad"
},
{
"number": 9,
"question": "'Fourth Estate' refers to:",
"options": ["Press", "Sports", "Judiciary", "Population"],
"answer": "Press"
},
{
"number": 10,
"question": "Kaziranga sanctuary is situated in:",
"options": ["Kerala", "Assam", "Bihar", "Gujarat"],
"answer": "Assam"
},
{
"number": 11,
"question": "Mary Kom is associated with:",
"options": ["Hockey", "Kabaddi", "Football", "Boxing"],
"answer": "Boxing"
},
{
"number": 12,
"question": "Leader of 'Ezhava Memorial':",
"options": ["K. Kelappan", "G.P. Pillai", "Dr. Palpu", "K. Damodharan"],
"answer": "Dr. Palpu"
},
{
"number": 13,
"question": "Who launched the Bhoodan Movement?",
"options": ["Acharya Vinoba Bhave", "C.R. Das", "Motilal Nehru", "Mahatma Gandhi"],
"answer": "Acharya Vinoba Bhave"
},
{
"number": 14,
"question": "Bhagat Singh was hanged on:",
"options": ["23 April 1930", "10 June 1929", "23 March 1931", "13 May 1932"],
"answer": "23 March 1931"
},
{
"number": 15,
"question": "'Sahodara Prasthanam' was started by:",
"options": ["T.K. Madhavan", "C. Sankaran Nair", "Mannathu Padmanabhan", "K. Ayyappan"],
"answer": "K. Ayyappan"
},
{
"number": 16,
"question": "Temple Entry Proclamation was issued in the year:",
"options": ["1921", "1936", "1930", "1932"],
"answer": "1936"
},
{
"number": 17,
"question": "Who directed the film 'Indian Rupee'?",
"options": ["Ranjith", "Blessy", "I.V. Sasi", "Padmarajan"],
"answer": "Ranjith"
},
{
"number": 18,
"question": "NASA sent 'Curiosity' to:",
"options": ["Jupiter", "Venus", "Mars", "Saturn"],
"answer": "Mars"
},
{
"number": 19,
"question": "March 8 is observed as:",
"options": ["Hiroshima Day", "Women's Day", "Population Day", "Teacher's Day"],
"answer": "Women's Day"
},
{
"number": 20,
"question": "Which river is not related to the Himalayan rivers?",
"options": ["River Sindhu", "River Satluj", "River Ganga", "River Cauvery"],
"answer": "River Cauvery"
},
{
"number": 21,
"question": "Corporate governance ensures managers look after the interest of:",
"options": ["Government", "Board of Directors", "Stakeholders", "General Public"],
"answer": "Stakeholders"
},
{
"number": 22,
"question": "Outstanding expense is a:",
"options": ["Personal account", "Real account", "Nominal account", "None of these"],
"answer": "Nominal account"
},
{
"number": 23,
"question": "Converting physical share certificates into electronic form is called:",
"options": ["Rematerialisation", "Dematerialisation", "Gematerialisation", "None of the above"],
"answer": "Dematerialisation"
},
{
"number": 24,
"question": "Ratio used to evaluate a firm's ability to meet short-term obligations:",
"options": ["Solvency ratios", "Profitability ratios", "Liquid ratios", "Activity ratios"],
"answer": "Liquid ratios"
},
{
"number": 25,
"question": "Origin of auditing can be traced back to:",
"options": ["1914", "1494", "1956", "1949"],
"answer": "1494"
},
{
"number": 26,
"question": "“Statistics is the science of counting” — whose statement is this?",
"options": ["Bowley", "Karl Pearson", "Kimbal", "Boddington"],
"answer": "Boddington"
},
{
"number": 27,
"question": "Provides accounting information useful to management:",
"options": ["Financial accounting", "Ledger", "Profit and loss account", "Management accounting"],
"answer": "Management accounting"
},
{
"number": 28,
"question": "A budget in capsule form is called:",
"options": ["Flexible budget", "Master budget", "Sales budget", "Fixed budget"],
"answer": "Master budget"
},
{
"number": 29,
"question": "Evidence of a contract of insurance is:",
"options": ["Policy", "Insurer", "Subject matter", "Premium"],
"answer": "Policy"
},
{
"number": 30,
"question": "Hire Purchase Act was enacted in:",
"options": ["1969", "1970", "1971", "1972"],
"answer": "1972"
},
{
"number": 31,
"question": "First Leasing Company of India Ltd was established in:",
"options": ["Calcutta", "Bombay", "Madras", "Delhi"],
"answer": "Madras"
},
{
"number": 32,
"question": "Translating messages into words is called:",
"options": ["Encoding", "Feedback", "Communication", "Decoding"],
"answer": "Encoding"
},
{
"number": 33,
"question": "When shares are forfeited, the share capital account is debited by:",
"options": ["Paid-up amount", "Called-up amount", "Calls in arrear", "Nominal value of shares"],
"answer": "Nominal value of shares"
},
{
"number": 34,
"question": "CII stands for:",
"options": ["Cost Inflation Index", "Capital Inflation Index", "Cost Interest Index", "Capital Interest Index"],
"answer": "Cost Inflation Index"
},
{
"number": 35,
"question": "Concept of marketing mix was developed by:",
"options": ["Philip Kotler", "W.J. Stanton", "Clark and Clark", "N.H. Borden"],
"answer": "N.H. Borden"
},
{
"number": 36,
"question": "Section 89(1) of Income Tax Act deals with relief for:",
"options": ["Advance salary", "Compensation", "Arrear salary", "Gratuity"],
"answer": "Arrear salary"
},
{
"number": 37,
"question": "An agreement to do an impossible act is:",
"options": ["Voidable", "Void", "Valid", "Illegal"],
"answer": "Void"
},
{
"number": 38,
"question": "Registration period of a Trade Mark is:",
"options": ["5 years", "20 years", "40 years", "10 years"],
"answer": "10 years"
},
{
"number": 39,
"question": "Father of Management Process School:",
"options": ["Henry Fayol", "Elton Mayo", "H.A. Simon", "R.H. Johnson"],
"answer": "Henry Fayol"
},
{
"number": 40,
"question": "Central Chief Information Commissioner is appointed by:",
"options": ["Prime Minister", "Chief Justice of India", "President of India", "Council of Central Ministers"],
"answer": "President of India"
},
{
"number": 41,
"question": "Motivation theory X and Y was developed by:",
"options": ["Herzberg", "M.C. Gregor", "Victor Vroom", "None"],
"answer": "M.C. Gregor"
},
{
"number": 42,
"question": "Capital Reduction Account is used in:",
"options": ["Internal reconstruction", "External reconstruction", "Amalgamation", "Absorption"],
"answer": "Internal reconstruction"
},
{
"number": 43,
"question": "Committee on insurance sector reforms in 1993 was headed by:",
"options": ["P. Chidambaram", "Manmohan Singh", "Narasimham", "R.N. Malhotra"],
"answer": "R.N. Malhotra"
},
{
"number": 44,
"question": "To calculate market value using P/E ratio, you need:",
"options": ["Rate of dividend", "Average profit", "Earnings per share", "Super profits"],
"answer": "Earnings per share"
},
{
"number": 45,
"question": "Fund from operations if net profit is ₹50,000, gain on asset sale ₹5,000, depreciation ₹20,000:",
"options": ["₹70,000", "₹65,000", "₹75,000", "₹55,000"],
"answer": "₹65,000"
},
{
"number": 46,
"question": "A bank included in the second schedule of RBI Act is called:",
"options": ["Scheduled Bank", "Non-Scheduled Bank", "State Co-operative Bank", "Central Co-operative Bank"],
"answer": "Scheduled Bank"
},
{
"number": 47,
"question": "Position of imports and exports of a country is called:",
"options": ["Balance of payments", "Balance of trade", "Terms of trade", "Dumping"],
"answer": "Balance of payments"
},
{
"number": 48,
"question": "Electronic transfer of funds is called:",
"options": ["ECS", "Telebanking", "RTES", "EFT"],
"answer": "EFT"
},
{
"number": 49,
"question": "Objectives of companies are given in the:",
"options": ["Articles of Association", "Prospectus", "Memorandum of Association", "Subsidiary rules"],
"answer": "Memorandum of Association"
},
{
"number": 50,
"question": "Depletion method of depreciation is useful for:",
"options": ["Livestock", "Loose tools", "Mines", "None of these"],
"answer": "Mines"
},
{
"number": 51,
"question": "Budget is a:",
"options": ["Plan of operation", "Statement of probable events", "Collection of historical financial data", "None of these"],
"answer": "Plan of operation"
},
{
"number": 52,
"question": "Functional level strategy is also known as:",
"options": ["Corporate level strategy", "Operating level strategy", "Business level strategy", "All of these"],
"answer": "Operating level strategy"
},
{
"number": 53,
"question": "A dollar denominated instrument tradable on stock exchange in Europe:",
"options": ["FRB", "EDR", "FCCB", "GDR"],
"answer": "GDR"
},
{
"number": 54,
"question": "AS-6 relates to:",
"options": ["Accounting policies", "Valuation of inventories", "Depreciation accounting", "Contingencies"],
"answer": "Depreciation accounting"
},
{
"number": 55,
"question": "B Ltd. forfeited 20 shares of ₹10 each, ₹8 called up, for non-payment of first call ₹2. Of these, 15 were reissued at ₹6. Amount transferred to capital reserve is:",
"options": ["₹60", "₹30", "₹48", "None"],
"answer": "₹48"
},
{
"number": 56,
"question": "The insurance effected by an insurance company with another insurance company is called:",
"options": ["Reinsurance", "Double insurance", "Multiple insurance", "None of these"],
"answer": "Reinsurance"
},
{
"number": 57,
"question": "A statutory reserve is a compulsory reserve kept under Banking Regulation Act as per Section:",
"options": ["9", "15", "18", "17"],
"answer": "17"
},
{
"number": 58,
"question": "Offering of ESOS to employees requires:",
"options": ["Resolution by the board", "Ordinary resolution", "Special resolution in general meeting by shareholders", "Permission from SEBI"],
"answer": "Special resolution in general meeting by shareholders"
},
{
"number": 59,
"question": "Statutory report is necessary in the case of:",
"options": ["Public limited companies", "FERA companies", "Foreign companies", "Private limited companies"],
"answer": "Public limited companies"
},
{
"number": 60,
"question": "Preliminary expenses is an example of:",
"options": ["Current asset", "Tangible asset", "Prepaid expenses", "Fictitious asset"],
"answer": "Fictitious asset"
},
{
"number": 61,
"question": "Unrehearsed speech is:",
"options": ["Impromptu", "Extempore", "Reading from the pre-text", "Memorising"],
"answer": "Impromptu"
},
{
"number": 62,
"question": "The first credit rating agency in India is:",
"options": ["ICRA", "CRISIL", "CARE", "ICSA"],
"answer": "CRISIL"
},
{
"number": 63,
"question": "Accounting Standard Board in India was constituted on:",
"options": ["June 1977", "January 1978", "April 1977", "None of these"],
"answer": "June 1977"
},
{
"number": 64,
"question": "Leveraged lease is a special form of leasing developed in recent years in:",
"options": ["India", "Britain", "Germany", "USA"],
"answer": "USA"
},
{
"number": 65,
"question": "Units of finished product not up to the standard and can be rectified are called:",
"options": ["Defective", "Scrap", "Spoilage", "None"],
"answer": "Defective"
},
{
"number": 66,
"question": "The most suitable average for index number is:",
"options": ["Mean", "Median", "Harmonic mean", "Geometric mean"],
"answer": "Geometric mean"
},
{
"number": 67,
"question": "Combination of different securities with varying risk and return is called:",
"options": ["SAP", "Portfolio", "CAP", "OCP"],
"answer": "Portfolio"
},
{
"number": 68,
"question": "Teaming and lading is a method of misappropriation of:",
"options": ["Goods", "Petty cash", "Cash", "Accounts"],
"answer": "Cash"
},
{
"number": 69,
"question": "Misstatements in prospectus by the auditor result in:",
"options": ["Civil liability", "Criminal liability", "Liability for negligence", "Liability for misfeasance"],
"answer": "Criminal liability"
},
{
"number": 70,
"question": "The first general meeting of the company is called:",
"options": ["Statutory meeting", "Annual general meeting", "Extraordinary meeting", "Emergency meeting"],
"answer": "Statutory meeting"
},
{
"number": 71,
"question": "Operating system is a:",
"options": ["System software", "Application software", "Hardware", "Firmware"],
"answer": "System software"
},
{
"number": 72,
"question": "Binary number system has the base:",
"options": ["10", "1", "2", "16"],
"answer": "2"
},
{
"number": 73,
"question": "Nibble is a group of:",
"options": ["4 bits", "6 bits", "8 bits", "16 bits"],
"answer": "4 bits"
},
{
"number": 74,
"question": "UNIX is a:",
"options": ["Programming language", "Compiler", "Operating system", "File system"],
"answer": "Operating system"
},
{
"number": 75,
"question": "In a hard disk, each track is a collection of:",
"options": ["Cylinders", "Disks", "Files", "Sectors"],
"answer": "Sectors"
},
{
"number": 76,
"question": "Which of the following is not an input device?",
"options": ["Microphone", "Stylus", "Speaker", "Joystick"],
"answer": "Speaker"
},
{
"number": 77,
"question": "Which of the following is not true about ROM?",
"options": ["Firmware", "Volatile", "Read only", "None of these"],
"answer": "Volatile"
},
{
"number": 78,
"question": "NTFS is:",
"options": ["Network switch", "Router", "Operating system", "File system"],
"answer": "File system"
},
{
"number": 79,
"question": "Which of the following is not a web browser?",
"options": ["Internet Explorer", "Mozilla Firefox", "Opera", "Apache"],
"answer": "Apache"
},
{
"number": 80,
"question": "Graphic representation of program logic sequence is known as:",
"options": ["Icons", "Algorithm", "Flow chart", "Pseudo code"],
"answer": "Flow chart"
},
{
"number": 81,
"question": "An installation file usually has the following extension:",
"options": [".org", ".doc", ".zip", ".exe"],
"answer": ".exe"
},
{
"number": 82,
"question": "Bluetooth is a:",
"options": ["Wireless network", "Antivirus", "Wired LAN", "Type of mobile phone"],
"answer": "Wireless network"
},
{
"number": 83,
"question": "Which of the following is not an Internet access method?",
"options": ["DSL", "Dial-up", "Podcast", "Cable"],
"answer": "Podcast"
},
{
"number": 84,
"question": "1 GB is:",
"options": ["1024 bits", "1024 bytes", "1024 KB", "1024 MB"],
"answer": "1024 MB"
},
{
"number": 85,
"question": "Which of the following is not an example of a search engine?",
"options": ["Google", "Facebook", "Yahoo", "AltaVista"],
"answer": "Facebook"
},
{
"number": 86,
"question": "Which of the following is not a monitor type?",
"options": ["CRT", "LCD", "LED", "Blu-ray"],
"answer": "Blu-ray"
},
{
"number": 87,
"question": "The BIOS is responsible for handling:",
"options": ["Memory", "Input-output operations", "File management", "Directory management"],
"answer": "Input-output operations"
},
{
"number": 88,
"question": "A small text file that some websites automatically store on your hard drive when you visit the site is called:",
"options": ["Spam", "Blog", "Cookie", "Worm"],
"answer": "Cookie"
},
{
"number": 89,
"question": "GIF is a file format usually associated with:",
"options": ["Documents", "Spreadsheets", "Images", "Compressed files"],
"answer": "Images"
},
{
"number": 90,
"question": "In programming, syntax error is:",
"options": ["Violation of programming language rules", "Use of incorrect sequence of statements", "Due to lack of free memory space", "Logical mistake in the program"],
"answer": "Violation of programming language rules"
},
{
"number": 91,
"question": "When a program's address space can be greater than its actual real memory, the system is said to implement:",
"options": ["Cache memory", "Virtual memory", "Secondary memory", "File management"],
"answer": "Virtual memory"
},
{
"number": 92,
"question": "Compiler is used to translate:",
"options": ["Machine language into high-level language", "Assembly language into high-level language", "High-level language into machine language", "High-level language into assembly language"],
"answer": "High-level language into machine language"
},
{
"number": 93,
"question": "Trojan horse is a:",
"options": ["Search engine", "Operating system", "Programming language", "Malicious software"],
"answer": "Malicious software"
},
{
"number": 94,
"question": "Broadcasting of audio or video content over the Internet is known as:",
"options": ["Wiki", "Webcast", "Blog", "Instant messaging"],
"answer": "Webcast"
},
{
"number": 95,
"question": "Microsoft Excel is a software for:",
"options": ["Word processing", "Spreadsheet", "Database", "Presentation"],
"answer": "Spreadsheet"
},
{
"number": 96,
"question": "Bootstrap loader is a program normally stored in:",
"options": ["ROM", "RAM", "Hard disk", "Cache memory"],
"answer": "ROM"
},
{
"number": 97,
"question": "Firewalls are used for:",
"options": ["Cyber security", "E-commerce", "E-mail", "Wireless networks"],
"answer": "Cyber security"
},
{
"number": 98,
"question": "An example of impact type printer is:",
"options": ["Dot matrix", "Inkjet", "Laser", "All of these"],
"answer": "Dot matrix"
},
{
"number": 99,
"question": "The IEEE standard for wireless LAN is:",
"options": ["802.2", "802.11", "802.3", "802.13"],
"answer": "802.11"
},
{
"number": 100,
"question": "In Database Management System, the overall design of the database is called:",
"options": ["Entity", "Schema", "Data manager", "DML"],
"answer": "Schema"
}
]},{"35-2014":[
{
"number": 1,
"question": "The continuous process of measuring a firm's goods, practices and services against those of its toughest competitors is:",
"options": ["Megamarketing", "Overmarketing", "Benchmarketing", "None of these"],
"answer": "Benchmarketing"
},
{
"number": 2,
"question": "Performance appraisal done by supervisors, peers, subordinates, employees themselves, users of services and consultants is known as:",
"options": ["360° Performance Appraisal", "Forced Choice Method", "BARS", "Group Appraisal"],
"answer": "360° Performance Appraisal"
},
{
"number": 3,
"question": "Which committee reviewed the role, structure and operations of development financial institutions and banks in 1998?",
"options": ["Verma Committee", "Narasimham Committee", "Khan Committee", "None of these"],
"answer": "Khan Committee"
},
{
"number": 4,
"question": "An agreement in restraint of marriage is valid in the case of:",
"options": ["Minor", "Uneducated", "Married", "None of these"],
"answer": "Minor"
},
{
"number": 5,
"question": "An investor must be very cautious when buying a share that belongs to:",
"options": ["A Group", "S Group", "Z Group", "None of these"],
"answer": "Z Group"
},
{
"number": 6,
"question": "In which production function is the degree of homogeneity always 1?",
"options": ["Cobb-Douglas Production Function", "Homogeneous Production Function", "Linear Homogeneous Production Function", "None of these"],
"answer": "Linear Homogeneous Production Function"
},
{
"number": 7,
"question": "Which of the following ratio is not used for determining the solvency of a concern?",
"options": ["Debt-Equity Ratio", "Proprietory Ratio", "Debt Service Ratio", "Creditors Turnover Ratio"],
"answer": "Creditors Turnover Ratio"
},
{
"number": 8,
"question": "Rent of owned building is:",
"options": ["Sunk Cost", "Shut Down Cost", "Imputed Cost", "Out of Pocket Cost"],
"answer": "Imputed Cost"
},
{
"number": 9,
"question": "Matrix type of marketing organisation is most suited for:",
"options": ["Single Product, Single Market Situation", "Multi Product, Single Market Situation", "Multi Product, Multi Market Situation", "Single Product, Multi Market Situation"],
"answer": "Multi Product, Multi Market Situation"
},
{
"number": 10,
"question": "Franco price covers:",
"options": ["Charges for placing goods near the ship", "Cost of loading goods on board", "Cost, Freight and Insurance", "All charges necessary for sending goods to buyer’s place"],
"answer": "All charges necessary for sending goods to buyer’s place"
},
{
"number": 11,
"question": "Which of the following is not an important source of power of a leader in an organisation?",
"options": ["Referent Power", "Behavioural Power", "Legitimate Power", "Coercive Power"],
"answer": "Behavioural Power"
},
{
"number": 12,
"question": "Which bank set up its merchant banking division in 1969 for the first time in India?",
"options": ["State Bank of India", "Grindlays Bank", "ICICI", "None of these"],
"answer": "Grindlays Bank"
},
{
"number": 13,
"question": "Novation means:",
"options": ["Cancellation of the existing contract", "Change in one or more terms", "Substitution of existing contract for a new one", "None of these"],
"answer": "Substitution of existing contract for a new one"
},
{
"number": 14,
"question": "Which is a tradable instrument with detachable warrant for equity shares after a fixed period?",
"options": ["Secured Premium Notes", "Zero Coupon Bond", "Collable Bond", "Equity Warrant"],
"answer": "Secured Premium Notes"
},
{
"number": 15,
"question": "Which of the following is not a property of isoquant?",
"options": ["Downward Sloping", "Convex", "Negative Slope", "Positive Slope"],
"answer": "Positive Slope"
},
{
"number": 16,
"question": "Which of the following is a non-current liability?",
"options": ["Mortgage Loan", "Bank Balance", "Outstanding Salary", "Salary"],
"answer": "Mortgage Loan"
},
{
"number": 17,
"question": "Which method is used in the control of spare parts?",
"options": ["ABC Analysis", "HML Analysis", "JIT", "VED Analysis"],
"answer": "ABC Analysis"
},
{
"number": 18,
"question": "The aspect of marketing that discourages customers temporarily or permanently is:",
"options": ["Remarketing", "Demarketing", "Overmarketing", "None of these"],
"answer": "Demarketing"
},
{
"number": 19,
"question": "A statement of minimum acceptable human qualities for a job is:",
"options": ["Job Specification", "Job Description", "Job Classification", "Job Enrichment"],
"answer": "Job Specification"
},
{
"number": 20,
"question": "Expansion and contraction of currency takes place through the ______ of RBI.",
"options": ["Banking Department", "Currency Department", "Credit Department", "None of these"],
"answer": "Currency Department"
},
{
"number": 21,
"question": "Rejecting a true null hypothesis is committing a:",
"options": ["Type I Error", "Type II Error", "Type III Error", "Sampling Error"],
"answer": "Type I Error"
},
{
"number": 22,
"question": "An agreement to pay based on whether it rains is a:",
"options": ["Quasi Contract", "Contingent Contract", "Wagering Agreement", "Voidable Contract"],
"answer": "Wagering Agreement"
},
{
"number": 23,
"question": "A company making a public issue through book building process issues:",
"options": ["Shelf Prospectus", "Statement in Lieu of Prospectus", "Deemed Prospectus", "Red-Herring Prospectus"],
"answer": "Red-Herring Prospectus"
},
{
"number": 24,
"question": "Grey market is an:",
"options": ["Official Market", "Unofficial Market", "Regulated Market", "None of these"],
"answer": "Unofficial Market"
},
{
"number": 25,
"question": "Price discrimination is possible in:",
"options": ["Perfect Competition", "Monopoly", "Monopolistic Competition", "None of these"],
"answer": "Monopoly"
},
{
"number": 26,
"question": "If an asset transferred without consideration is again transferred by the transferee, the resultant gain or loss is clubbed with the income of:",
"options": ["Former transferor", "Former transferee", "Latter transferee", "None of these"],
"answer": "Former transferor"
},
{
"number": 27,
"question": "______ is calculated to find the extent to which earnings per share have been retained in the business.",
"options": ["Dividend pay-out ratio", "Dividend yield ratio", "Price earning ratio", "None of these"],
"answer": "Dividend pay-out ratio"
},
{
"number": 28,
"question": "If the annual usage is 6000 units, cost of placing an order is Rs.60 and annual carrying cost per unit is Rs.2, EOQ is:",
"options": ["60 unit", "600 unit", "6000 unit", "300 unit"],
"answer": "600 unit"
},
{
"number": 29,
"question": "Sales based on verbal understanding between buyers and sellers without mentioning the rate with the understanding that buyer will pay the prevailing rate is:",
"options": ["Sale by open auction", "Dara sale", "Moghum sale", "None of these"],
"answer": "Moghum sale"
},
{
"number": 30,
"question": "Market integration is the strategy of:",
"options": ["Counter integration", "Additional segmentation", "Product differentiation", "Concentrated marketing"],
"answer": "Concentrated marketing"
},
{
"number": 31,
"question": "What is the significance of the year “1926” in the development of HRM in India?",
"options": ["The Payment of Wages Act was passed", "The All India Trade Union Congress was formed", "Indian Trade Unions Act was passed", "The Bombay Trade Disputes Conciliation Act was passed"],
"answer": "The All India Trade Union Congress was formed"
},
{
"number": 32,
"question": "______ was established in 1990 with an objective to provide an alternate market for the securities of smaller companies.",
"options": ["OTCEI", "NSE", "BOLT", "SHCIL"],
"answer": "OTCEI"
},
{
"number": 33,
"question": "If the variables are measured on nominal and ordinal scales, the tools of analysis are called ______ statistics.",
"options": ["Parametric", "Non-parametric", "Descriptive", "Inferential"],
"answer": "Non-parametric"
},
{
"number": 34,
"question": "A stipulation in a contract of sale of goods whose violation by seller gives a right of rescission to buyer is called:",
"options": ["Guarantee", "Warranty", "Condition", "Term"],
"answer": "Condition"
},
{
"number": 35,
"question": "Which of the following is not a mutual fund scheme?",
"options": ["Equity schemes", "Debt schemes", "Balanced schemes", "Mutual benefit schemes"],
"answer": "Mutual benefit schemes"
},
{
"number": 36,
"question": "Variables that contain data with only two categories are called ______ variables.",
"options": ["Interval", "Ordinal", "Nominal", "Dichotomous"],
"answer": "Dichotomous"
},
{
"number": 37,
"question": "The income elasticity of demand is negative for a:",
"options": ["Positive good", "Normal good", "Elastic good", "Inferior good"],
"answer": "Inferior good"
},
{
"number": 38,
"question": "In the case of gift of movable property, tax is levied on the basis of:",
"options": ["Fair market value", "Stamp duty value", "Declared value", "None of these"],
"answer": "Fair market value"
},
{
"number": 39,
"question": "The term “Caveat Emptor” means:",
"options": ["Let the seller beware", "Let the buyer beware", "Let the buyer and seller beware", "None of these"],
"answer": "Let the buyer beware"
},
{
"number": 40,
"question": "Rapid penetration strategy opted in the introduction stage of Product Life Cycle is:",
"options": ["High price, high promotion", "High price, low promotion", "Low price, high promotion", "Low price, low promotion"],
"answer": "Low price, high promotion"
},
{
"number": 41,
"question": "______ means shares having no face value.",
"options": ["Sweat equity", "Deferred shares", "Equity shares", "No par stock"],
"answer": "No par stock"
},
{
"number": 42,
"question": "If there is no accessible sampling frame, ______ sampling is used.",
"options": ["Judgement", "Snowball", "Systematic", "Random"],
"answer": "Snowball"
},
{
"number": 43,
"question": "The threat to commit suicide amounts to:",
"options": ["Undue influence", "Misrepresentation", "Coercion", "Fraud"],
"answer": "Coercion"
},
{
"number": 44,
"question": "The principle that a company cannot lawfully do that which is beyond its powers is explained by:",
"options": ["Doctrine of ultra vires", "Doctrine of indoor management", "Doctrine of constructive notice", "None of these"],
"answer": "Doctrine of ultra vires"
},
{
"number": 45,
"question": "“A rupee tomorrow is worth less than a rupee today” relates to:",
"options": ["Discounting principle", "Opportunity cost principle", "Equi-marginal principle", "None of these"],
"answer": "Discounting principle"
},
{
"number": 46,
"question": "Where the employee pays rent which is less than 10% of salary, HRA is:",
"options": ["Not taxable", "Partly taxable", "Fully taxable", "Proportionally taxable"],
"answer": "Fully taxable"
},
{
"number": 47,
"question": "______ scheme is more beneficial to the workers at lower levels of efficiency:",
"options": ["Rowan", "Halsey", "Halsey-Weir", "None of these"],
"answer": "Rowan"
},
{
"number": 48,
"question": "Who has introduced the concept of marketing-mix?",
"options": ["N.H. Bordon", "E.F.L. Brech", "Henry L. Hernam", "William J. Stanton"],
"answer": "N.H. Bordon"
},
{
"number": 49,
"question": "Which of the following is not promotional pricing?",
"options": ["Special event pricing", "Price leaders", "Superficial discounting", "Prestige pricing"],
"answer": "Prestige pricing"
},
{
"number": 50,