-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
3518 lines (3459 loc) · 181 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JP2C4GR677"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-JP2C4GR677');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Game</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #2c2f33;
margin: 0;
padding: 0;
color: #e6e6e6;
}
.hidden {
display: none;
}
.card {
background-color: #23272A;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
margin: 20px auto;
max-width: 400px;
padding: 20px;
transition: box-shadow 0.3s;
}
.card:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
h2 {
color: #e6e6e6;
font-size: 1.5em;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #343a40;
border-radius: 10px;
cursor: pointer;
margin: 30px 0;
padding: 15px;
transition: background-color 0.3s;
}
li:hover {
background-color: #3c4349;
}
.correct {
color: #00e676;
font-weight: bold;
}
.incorrect {
color: #ff5252;
font-weight: bold;
}
#moduleSelection,
#quiz,
#courseDropdown,
#results {
text-align: center;
}
#moduleDropdown,
#courseDropdown,
button {
background-color: #7289da;
border: none;
border-radius: 4px;
color: #fff;
cursor: pointer;
font-size: 1em;
margin-top: 10px;
padding: 10px 15px;
transition: background-color 0.3s;
}
#courseDropdown:hover,
#moduleDropdown:hover,
button:hover {
background-color: #5b6eae;
}
button {
display: inline-block;
margin-left: 10px;
}
footer {
background-color: #23272A;
border-top: 1px solid #3c4349;
font-size: 0.9em;
padding: 15px 0;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
.footer-content {
max-width: 500px;
margin: 0 auto;
}
a {
color: #F7B731;
/* A golden color, but you can choose any */
text-decoration: none;
/* Remove underline */
margin: 0 5px;
/* Add a bit of spacing between the links */
transition: color 0.3s ease;
/* Smooth transition for hover effect */
}
</style>
</head>
<body>
<div id="moduleSelection">
<p style="margin: 20px; padding: 10px;">
<h2>Welcome to NPTEL Quiz 🚀<br /><br /></h2>
Are you ready to conquer NPTEL and score an effortless S grade? 🌟 In just <strong>one hour</strong> of effort?
<br /><br />
In this program, we believe in the power of repetition and reinforcement. Every answer you give has to be
<strong>marked correctly not once but twice</strong>!
<br /><br />So, let's get started on this thrilling NPTEL quest together. Select your module and let the
learning games begin! 🎮🧠🏆
</p>
<label for="courseDropdown">Select Course:</label>
<select id="courseDropdown"></select><br /><br />
<label for="moduleDropdown">Select Module:</label>
<select id="moduleDropdown"></select><br /><br /><br />
<button onclick="startQuiz()">Start Quiz</button>
</div>
<div id="quiz" class="hidden" style="padding: 10px;">
<h2 id="questionText"></h2>
<br /><br />
<ul id="optionsList"></ul>
<h6><br /> <br /> Questions will be repeated until you mark them correct twice. </h6>
<br />
<a href="https://nptel-quiz.onrender.com/">Go Back Home</a>
</div>
<div id="results" class="hidden">
Your score is: <span id="score"></span>
</div>
<script>
const quizData = [
{
"Course": "Entreprunership",
"Data": [{
"Module": 1,
"Data": [
{
"Question": "Which of the following is an example of industrial transformation?",
"Options": [
"High-speed rail",
"Electric vehicles",
"Lead-free fuel",
"None of the above"
],
"Correct": 1
},
{
"Question": "An entrepreneur who revels in creating new businesses continuously may be called:",
"Options": [
"Creator of serial entrepreneurial ventures",
"Destroyer of existing businesses",
"Continuous investor",
"None of the above"
],
"Correct": 0
},
{
"Question": "Which of the following industries has seen mortality of start-ups or entrepreneurial firms over the last two decades?",
"Options": [
"Telecommunications",
"Aviation",
"Both (a) and (b)",
"Neither (a) nor (b)"
],
"Correct": 2
},
{
"Question": "A start-up typically starts with:",
"Options": [
"Putting a product in the market",
"Discovering a problem and defining a solution",
"Changing a business model",
"None of the above"
],
"Correct": 1
},
{
"Question": "Having a co-founding team provides the advantages of:",
"Options": [
"Complementary skills",
"Shared responsibilities",
"Potential leadership transitions",
"All of the above"
],
"Correct": 3
},
{
"Question": "Entrepreneurship is common with start-up in terms of:",
"Options": [
"Starting with meagre resources",
"Taking risks",
"Neither (a) nor (b)",
"Both (a) and (b)"
],
"Correct": 3
},
{
"Question": "Entrepreneurial firms seek to:",
"Options": [
"Create new products and/or markets",
"Create market wealth",
"Disrupt existing businesses",
"Any or all of the above"
],
"Correct": 3
},
{
"Question": "An entrepreneur who enters the market to create a firm, leaving formal employment is called:",
"Options": [
"Innovative entrepreneur",
"Replicative entrepreneur",
"Opportunity entrepreneur",
"Necessity entrepreneur"
],
"Correct": 2
},
{
"Question": "As per the MSME classification of Government of India, a product firm with an investment less than or equal to Rs 25 lakhs in plant and machinery is called",
"Options": [
"Micro enterprise",
"Small enterprise",
"Medium enterprise",
"Nano enterprise"
],
"Correct": 0
},
{
"Question": "An infrastructure that helps entrepreneurs in their early stage of the startup life cycle with plug and play facilities and other common services is called:",
"Options": [
"Incubator",
"Accelerator",
"Angel investment platform",
"Venture capital platform"
],
"Correct": 0
}
]
},
{
"Module": 2,
"Data": [
{
"Question": "The value chain of a start-up firm tends to get built in reality based on:",
"Options": [
"Aspirations that the firm would like to have",
"Competencies that the firm builds",
"Emotions that bind the founders",
"The perceptions of investors"
],
"Correct": 1
},
{
"Question": "Holistic prototype development requires:",
"Options": [
"A clear understanding of the problem that is being solved",
"A creative solution to address the problem",
"Design and manufacturing capability",
"All of the above"
],
"Correct": 3
},
{
"Question": "BDC entrepreneurial potential self-assessment considers:",
"Options": [
"Only motivations",
"Only aptitudes",
"Only Attitudes",
"All the above three"
],
"Correct": 3
},
{
"Question": "In MBTI personality typology, every participating person is assessed on:",
"Options": [
"16 opposing pairs of personality traits",
"4 opposing pairs of personality traits",
"2 opposing pairs of personality traits",
"8 opposing pairs of personality traits"
],
"Correct": 1
},
{
"Question": "The success of many start-ups such as RedBus, Swiggy, Airbnb, Uber, and ‘make my trip’ was based on:",
"Options": [
"Treating demand and supply separately",
"Focusing only on demand",
"Focusing only on supply",
"Aggregating and linking demand and supply digitally"
],
"Correct": 3
},
{
"Question": "What would turn out to be the risks of prototype development?",
"Options": [
"Improper identification of the problem",
"A solution misaligned to the problem",
"Dependence on obsolete technologies and components",
"Any or all of the above"
],
"Correct": 3
},
{
"Question": "Paperboat is an Indian startup that succeeded with a thematic grid that combined:",
"Options": [
"Ethnic Indian beverages with Ethnic Indian packaging",
"Global beverages with Ethnic Indian packaging",
"Ethnic Indian beverages with Contemporary modern packaging",
"Global beverages with Global packaging"
],
"Correct": 2
},
{
"Question": "The fundamental and the first step of design thinking is:",
"Options": [
"Designing a product or service",
"Empathizing with the customer",
"Prototyping",
"Coming up with a solution independent of the customer"
],
"Correct": 1
},
{
"Question": "A true design thinking and ideation exercise involves:",
"Options": [
"Accepting the status quo",
"Questioning the basics",
"Relying on experts",
"None of the above"
],
"Correct": 1
},
{
"Question": "For any start-up idea to fully succeed the following must be fulfilled:",
"Options": [
"Desirability for the customer",
"Feasibility for the company",
"Viability for the customer and the company",
"All of the above"
],
"Correct": 3
}
]
}
,
{
"Module": 3,
"Data": [
{
"Question": "For an ideation workshop to be effective, the following is not advised as a requirement:",
"Options": [
"Participants",
"Understanding of the ideation methodology",
"Analytics",
"A pre-decided problem definition and problem solution."
],
"Correct": 3
},
{
"Question": "The immediate next phase after a successful ideation phase is:",
"Options": [
"Pilot marketing phase",
"Validation phase",
"Testing phase",
"Prototyping phase."
],
"Correct": 3
},
{
"Question": "Which of the following is not an essential requirement for prototyping of a product?",
"Options": [
"Components",
"Test facilities",
"Assembly facilities",
"Computer coding."
],
"Correct": 3
},
{
"Question": "What is a holistic value proposition by a start-up?",
"Options": [
"The operating life of a product",
"The real and unreal advertising message from the start-up",
"The short-term price advantage",
"The set of gains and benefits from the product for the customer, both in the short-term and long-term"
],
"Correct": 3
},
{
"Question": "For the performance testing of a prototype to happen, which of the following is not required as much as the others?",
"Options": [
"Product specifications",
"Testing methods",
"Testing equipment",
"External look and feel of the product."
],
"Correct": 3
},
{
"Question": "Which of the following is a variable experience product?",
"Options": [
"Smart phone",
"Viewing movies from a movie library",
"Drinking water from a purifier",
"A luxury fashion accessory"
],
"Correct": 1
},
{
"Question": "The Minimum Viable Product (MVP) version of a smart watch in healthcare, beyond its timekeeping function, must be:",
"Options": [
"Its colour scheme",
"Its strap",
"Its dial face",
"Its health parameter tracking"
],
"Correct": 3
},
{
"Question": "Field testing of a product should be based on:",
"Options": [
"Repeat of lab testing",
"Simulated operating conditions",
"Destruction testing",
"Lifelong testing"
],
"Correct": 1
},
{
"Question": "For a post-testing validation exercise, which is a techno-marketing exercise, it is useful to have an evaluator panel that has:",
"Options": [
"Only internal experts",
"Only external experts",
"A mix of internal and external experts",
"Only the CEO and CXOs"
],
"Correct": 2
},
{
"Question": "One of the components of an ideation workshop is:",
"Options": [
"Clustering of ideas based on common threads",
"Creation of prototypes",
"Testing of prototypes",
"None of the above"
],
"Correct": 0
}
]
},
{
"Module": 4,
"Data": [
{
"Question": "In which of the following industries, public policy (government policy) is triggering technology-led disruption?",
"Options": [
"Textile industry",
"Sugar industry",
"Jewelry industry",
"Automobile industry"
],
"Correct": 3
},
{
"Question": "Computer software gets typically commercialized as:",
"Options": [
"Only B2B",
"Only B2C",
"Both B2B and B2C",
"None of the above"
],
"Correct": 2
},
{
"Question": "Which of the following is a B2C company?",
"Options": [
"Delhivery",
"Inmobi even without profits",
"Flipkart",
"Exotel"
],
"Correct": 0 || 2
},
{
"Question": "Startups become unicorns with their focus on:",
"Options": [
"Stable profits even at low scale",
"Rapid revenue growth and high market share",
"High pricing",
"None of the above"
],
"Correct": 1
},
{
"Question": "Successful commercialization for a start-up rests on:",
"Options": [
"Demand creation",
"Demand fulfillment",
"Customer loyalty",
"All of the above"
],
"Correct": 3
},
{
"Question": "Many of the Indian unicorns are based on:",
"Options": [
"Contract manufacture",
"Contract research",
"Digital business models",
"Franchising overseas rights"
],
"Correct": 2
},
{
"Question": "What is not common between Amazon.com and Flipkart?",
"Options": [
"Both started with online book selling in the respective starting jurisdictions",
"Both are now in India as private companies",
"Both now cater to e-commerce in India",
"None of the above"
],
"Correct": 3
},
{
"Question": "JustDial brought digital innovation to its own model of:",
"Options": [
"Air travel booking",
"Classified listing",
"Rail travel booking",
"Hotel booking"
],
"Correct": 1
},
{
"Question": "Companies can respond to varying global trade trends by:",
"Options": [
"Foreign exchange hedging",
"Global testing and homologation of products",
"Avoiding select countries, despite huge market size",
"Stopping international trade"
],
"Correct": 1
},
{
"Question": "Rationale for rapid rise of Unicorns in India:",
"Options": [
"India’s huge market base",
"Private VC and PE Investments into start-ups",
"Capturing market share even at a loss",
"All of the above"
],
"Correct": 3
}
]
},
{
"Module": 5,
"Data": [
{
"Question": "India ranking in start-up unicorn system is driven by:",
"Options": [
"Artificial Intelligence",
"Agritech",
"Medtech",
"E-Commerce, Fintech, Supply Chain and Logistics"
],
"Correct": 3
},
{
"Question": "The new main spaces for disruptive technologies that are prototyped for commercialization are:",
"Options": [
"Established mature companies",
"Established mature research laboratories",
"Established mature universities",
"Technology-driven new generation start-ups"
],
"Correct": 3
},
{
"Question": "Personal and robotic medicine that is powered by genetics, robotics, and artificial intelligence is reflective of:",
"Options": [
"Third industrial revolution",
"Fourth industrial revolution",
"Fifth industrial revolution",
"None of the above"
],
"Correct": 1
},
{
"Question": "If a company is consistently high on both innovation intensity and product profitability, such a company may be called:",
"Options": [
"Outstanding",
"Tactically Outstanding",
"Strategically Outstanding",
"Operationally outstanding"
],
"Correct": 2
},
{
"Question": "The pace of technology development in modern times is characterized as:",
"Options": [
"Linear",
"Progressive",
"Non-linear",
"Progressive"
],
"Correct": 2
},
{
"Question": "Just as chips revolutionized computing in the past (and will continue to), in the future one of the following will revolutionize a whole spectrum of industries.",
"Options": [
"Radars",
"Lidars",
"Motors",
"Smart Sensors"
],
"Correct": 3
},
{
"Question": "One of the ultimate challenges that a start-up can tackle is:",
"Options": [
"Customized product design",
"Providing high quality at low costs",
"Creating disruptive technologies",
"All of the above"
],
"Correct": 3
},
{
"Question": "Within the five technology forces, the power of operating systems is illustrated strikingly by the:",
"Options": [
"Mobile phone industry",
"Renewable energy industry",
"Textile industry",
"Mining industry"
],
"Correct": 0
},
{
"Question": "If Radio was a commoditized product, it was brought out in a contemporary format as Caravan branded product by the following:",
"Options": [
"Contemporary redesigning",
"New value-adding functions",
"Retro-futurism",
"All of the above"
],
"Correct": 3
},
{
"Question": "Digitization provides the following advantages:",
"Options": [
"Big data and analytics",
"Precision and customization",
"24X7 operation",
"All of the above"
],
"Correct": 3
}
]
},
{
"Module": 6,
"Data": [
{
"Question": "When a start-up has high innovation and high perfection in its products and processes, it would be able to develop:",
"Options": [
"Highly delayed products",
"Interesting products",
"Uninteresting products",
"Blockbuster products"
],
"Correct": 3
},
{
"Question": "Innovation and perfection are:",
"Options": [
"Only for large companies",
"Iterative and have no boundaries",
"Become halted at some point of time",
"Counter to each other"
],
"Correct": 1
},
{
"Question": "Which industry in India has several hundreds of brands for the same generic product?",
"Options": [
"Cycle industry",
"Automobile industry",
"Pharmaceutical industry",
"None of the above"
],
"Correct": 2
},
{
"Question": "Which of the following statements is relatively true?",
"Options": [
"Design is only an integrator of different functionalities into one product",
"Design is only a tool to promote different products with different functionalities",
"Design can integrate as well as differentiate functionalities in one or more products",
"None of the above"
],
"Correct": 2
},
{
"Question": "Which of the following statements is true because of automobile electrification and autonomous driving?",
"Options": [
"There would be opportunities for several technology-led startups in the new generation components",
"Automobile electrification and autonomy are hyped up and offer little opportunity to start-ups",
"New generation components can be easily done in the facilities of existing auto component makers",
"All of the above"
],
"Correct": 0
},
{
"Question": "Which of the following is not a business model but is a business strategy?",
"Options": [
"Consigning",
"Diversification",
"Leasing",
"Cash on delivery"
],
"Correct": 1
},
{
"Question": "In the automobile industry, business definition is now expressed in the broadest sense as:",
"Options": [
"Manufacture of specific automobiles, for example, cars",
"Specific activity, for example, road transportation",
"Generic customer need, for example, mobility",
"None of the above"
],
"Correct": 2
},
{
"Question": "Which of the following is not a methodology that supports business strategy development?",
"Options": [
"SWOT Analysis",
"PERT/CPM",
"Five Forces Model",
"PESTEL Analysis"
],
"Correct": 1
},
{
"Question": "ERP (for example, the one offered by SAP) is expanded as:",
"Options": [
"Entrepreneurship Resource Planning",
"Entrepreneurship Record Planning",
"Enterprise Record Planning",
"Enterprise Resource Planning"
],
"Correct": 3
},
{
"Question": "Start-ups’ business strategy is more aligned to:",
"Options": [
"Red ocean strategy",
"Clear sky strategy",
"Blue ocean strategy",
"On-ground strategy"
],
"Correct": 2
}
]
},
{
"Module": 7,
"Data": [
{
"Question": "Which of the following is a financial strategy decision?",
"Options": [
"Diversification strategy decision",
"Integration strategy decision",
"Dividend decision",
"Recruitment strategy decision"
],
"Correct": 2
},
{
"Question": "Besides corporate performance and wealth maximization, financial strategy is linked holistically to:",
"Options": [
"Corporate governance",
"Ethics and compliance",
"Business continuity and Risk management",
"All of the above"
],
"Correct": 3
},
{
"Question": "Which of the following statements is true?",
"Options": [
"Over the last few years, there has been an increased investor interest in the Indian start-ups",
"Over the last few years, there has been a decreased increased investor interest in the Indian start-ups",
"Over the last few years, there has been a decline in the number of Unicorn Indian start-ups",
"Over the last few years, there has been no diversification in the Indian start-up domains"
],
"Correct": 0
},
{
"Question": "A firm's ability to meet current financial obligations is assessed by the firm’s:",
"Options": [
"Leverage ratios",
"Liquidity ratios",
"Dividend ratios",
"Project ratios"
],
"Correct": 1
},
{
"Question": "The following is important for smooth and prudential conduct of a company’s operations:",
"Options": [
"Periodic equity infusion",
"Debt on tap",
"Net positive cash flow from operations",
"None of the above"
],
"Correct": 2
},
{
"Question": "In the early phases of a start-up (say, ideation and prototyping), a start-up usually receives:",
"Options": [
"Angel funding (also seed funding)",
"Venture capital funding",
"Private equity funding",
"Public issue funding"
],
"Correct": 0
},
{
"Question": "Which of the following statements is generally true on start-up investments?",
"Options": [
"Seed investors invest small amounts and expect big returns even if wanting to exit early",
"Private equity investors invest along with seed investors",
"Seed investors invest small amounts and accept low returns even while wanting to exit early",
"Private equity investors will never want to invest in start-ups"
],
"Correct": 0 || 2
},
{
"Question": "Traditionally, many native ethnic start-ups are based on:",
"Options": [
"Institutionalized craftsmanship of individuals",
"Imported technologies",
"High throughput equipment",
"Intensive sales and marketing"
],
"Correct": 0
},
{
"Question": "IIT Madras Research Park is primarily a:",
"Options": [
"Leading plug and play incubator",
"Leading accelerator",
"Leading angel investor",
"Leading R&D laboratory"
],
"Correct": 0
},
{
"Question": "Which of the following forms of start-up financing is not legally supported in India:",
"Options": [
"Alternative Investment Funds",
"Crowdfunding",
"Venture capital financing",
"Start-up stock exchanges"
],
"Correct": 1
}
]
},
{
"Module": 8,
"Data": [
{
"Question": "The largest pool of STEM graduates resides in:",
"Options": [
"India and China",
"USA and UK",
"Japan and Korea",
"Russia and CIS"
],
"Correct": 0
},
{
"Question": "Indian Government’s Make In India thrust is expected to benefit from India’s capabilities in:",
"Options": [
"Start-ups",
"Software",
"Frugal engineering",
"None of the above"
],
"Correct": 2
},
{
"Question": "Entrepreneurship is closely related to:",
"Options": [
"Technology and Management",
"Arts and History",
"Geography and Geology",
"Literature and Arts"
],
"Correct": 0
},
{
"Question": "Start-ups have a great opportunity to contribute to the ushering in of:",
"Options": [
"Circular economy",
"Declining economy",
"Volatile economy",
"None of the above"
],
"Correct": 0
},
{
"Question": "For effective pursuit of indigenous scientific and technological development, India needs:",
"Options": [
"Only public research",
"Only private research",
"Strong public-private partnership in research",
"Neither public nor private research but only imports"
],
"Correct": 2
},
{
"Question": "Innovation led companies, such as global big pharma, invest the following percentage of sales on R&D:",
"Options": [
"2 to 5%",
"6 to 8%",
"9 to 12%",
"25 to 30%"
],
"Correct": 3
},
{
"Question": "The succession sagas at Tata Group and Infosys emphasize that for harmonious transition when founders are still the investors or statured leaders, harmony is ensured by:",
"Options": [
"A complete break with the past",
"Having all key decisions formally vetted by the founders",
"Change with Continuity",
"None of the above"
],
"Correct": 2
},
{
"Question": "A start-up for soil sensors may be seen as a:",
"Options": [
"GPS based start-up",
"Satellite based start-up",
"Engineering based start-up",
"NLP based start-up"
],
"Correct": 2
},
{
"Question": "Super-specialist experts in science and technology will be helpful, as mentors, advisors and board members, for start-up founders in the following type of domains:",
"Options": [
"Genetics, Artificial Intelligence, Biopharma, and Personal Medicine",