-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaptitude&gd.html
516 lines (488 loc) · 18.7 KB
/
aptitude&gd.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="FORESE is a student-run forum and an extension of the Placement cell. It empowers students and equips them with essential soft skills such as team management, interpersonal, and leadership skills useful for their careers.
"
/>
<title>FORESE - Aptitude & GD</title>
<link rel="shortcut icon" type="image/x-icon" href="" />
<!-- ========================= CSS here ========================= -->
<!-- Boostrap CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta2/css/bootstrap.min.css"
/>
<!-- LineIcons CSS -->
<link rel="stylesheet" href="https://cdn.lineicons.com/3.0/lineicons.css" />
<!-- Animate CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="preloader-inner">
<div class="preloader-icon">
<span></span>
<span></span>
</div>
</div>
</div>
<!-- End Preloader -->
<!-- Start Header Area -->
<header class="header navbar-area">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="nav-inner">
<!-- Start Navbar -->
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html"> </a>
<button
class="navbar-toggler mobile-menu-btn"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse sub-menu-bar"
id="navbarSupportedContent"
>
<ul id="nav" class="navbar-nav ms-auto">
<li class="nav-item">
<a href="index.html" aria-label="Toggle navigation"
>Home</a
>
</li>
<li class="nav-item">
<a href="about.html" aria-label="Toggle navigation"
>About</a
>
</li>
<li class="nav-item">
<a href="team.html" aria-label="Toggle navigation"
>Team</a
>
</li>
<li class="nav-item">
<a
href="resources.html"
aria-label="Toggle navigation"
>Resources</a
>
</li>
<li class="nav-item">
<a
href="aptitude&gd.html"
class="active"
aria-label="Toggle navigation"
>Aptitude & GD</a
>
</li>
<li class="nav-item">
<a href="contact.html" aria-label="Toggle navigation"
>Contact</a
>
</li>
</ul>
</div>
<!-- navbar collapse -->
</nav>
<!-- End Navbar -->
</div>
</div>
</div>
<!-- row -->
</div>
<!-- container -->
</header>
<!-- End Header Area -->
<!-- Start Breadcrumbs -->
<div class="breadcrumbs">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 offset-lg-2 col-md-12 col-12">
<div class="breadcrumbs-content">
<h1 class="page-title">Aptitude & Group Discussion</h1>
<ul class="breadcrumb-nav">
<li><a href="index.html">Home</a></li>
<li>Aptitude Test & Group Discussion</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Breadcrumbs -->
<!-- Start Pricing Table Area -->
<section id="pricing" class="pricing-table section extra-page bg-white">
<div class="container">
<div class="row">
<div
class="col-lg-12 col-md-6 col-12 wow fadeInUp"
data-wow-delay=".8s"
>
<!-- Single Table -->
<div class="single-table">
<!-- Table Head -->
<div class="table-head">
<div class="price">
<h2 class="amount">Aptitude Test</h2>
</div>
</div>
<!-- End Table Head -->
</div>
<!-- End Single Table-->
</div>
</div>
</div>
</section>
<!-- End Pricing Table Area -->
<div class="row">
<div class="col-12">
<div class="section-title">
<p class="wow fadeInUp" data-wow-delay=".6s">
The Aptitude Assessment is a test that measures a candidate's
dexterity and cognitive abilities. Students are assessed on their
technical and communication skills, with each department receiving
specific questions to cater to their career requirements. This
enables participants to identify areas of study that require
improvement. It prepares the students to face the aptitude test with
confidence during the actual placements. The performance of the
aptitude test and the Group discussion is cardinal in the company's
assessment of the candidate.
</p>
<br />
<b>
Keeping these factors in mind, FORESE organizes an aptitude test for
the pre-final years.</b
>
<br />
<br />
<p>
It instills students with the skills in
<b
>innovation, logical reasoning, problem-solving, and
communication</b
>
to make them better suited for today's industry needs.
</p>
<br />
<b> This aptitude test helps you in: </b>
<br />
<ul class="list-group">
<li class="list-group-item">
Preparing yourself for the placements
</li>
<li class="list-group-item">
Having a better understanding of your strengths and weaknesses
</li>
<li class="list-group-item">Analyzing your skills and interests</li>
</ul>
<br />
The skill sets of the students are tested by examining them
exclusively on these topics for <b>60 minutes</b>.
<a href="https://www.indiabix.com/">
<button type="button" class="btn btn-dark" style="margin: 10px">
Sample Questions
</button></a
>
<hr />
<h4>Verbal Ability test</h4>
<br />
<p>
Verbal reasoning tests aim to assess your comprehension skills and
reasoning ability. It evaluates the candidate’s ability to measure
one’s verbal comprehension, use of correct grammar, understand
analogies and analyze detailed written information.
</p>
<br />
<h4>Quantitative Aptitude Test</h4>
<br />
<p>
Quantitative aptitude tests the logical and analytical skills of an
individual. It focuses mainly on testing numerical ability and
problem-solving skills. It evaluates the thinking prowess,
analytical skills, critical analysis, and decision-making ability of
the candidate.
</p>
<br />
<h4>Non – Verbal Reasoning Test</h4>
<br />
<p>
Non-verbal reasoning/Diagrammatic reasoning tests evaluate the
ability to understand and analyze visual information and solve
problems using visual reasoning. It focuses on problem-solving in
diagrammatic or pictorial form. Visual interpretations are used for
expressing ideas instead of using numbers and words.
</p>
</div>
</div>
</div>
<!-- Start Pricing Table Area -->
<section id="pricing" class="pricing-table section extra-page bg-white">
<div class="container">
<div class="row">
<div
class="col-lg-12 col-md-6 col-12 wow fadeInUp"
data-wow-delay=".8s"
>
<!-- Single Table -->
<div class="single-table">
<!-- Table Head -->
<div class="table-head">
<div class="price">
<h2 class="amount">Group Discussion</h2>
</div>
</div>
<!-- End Table Head -->
</div>
<!-- End Single Table-->
</div>
</div>
</div>
</section>
<!-- End Pricing Table Area -->
<div class="row">
<div class="col-12">
<div class="section-title">
<p class="wow fadeInUp" data-wow-delay=".6s">
Group Discussion (GD) is a formal selection process used to assess
personality traits – like Team Spirit, Leadership qualities, and
out-of-box thinking in an individual. It can be a game-changer for
most students & is a pivotal part of the selection process.
Apparently, it is one of the most dreaded rounds by students in the
recruitment process. In reality, it is not as tough as it seems!
</p>
<a
href="https://www.groupdiscussionideas.com/group-discussion-topics-with-answers/"
>
<button type="button" class="btn btn-dark">Sample Topics</button></a
>
</div>
</div>
</div>
<!-- Timeline -->
<ul class="timeline">
<!-- Item 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Learn the art of Participation</span>
</div>
<div class="desc">
Take the initiative to participate & share your ideas in the
discussion. Volunteer for yourself & speak in an extremely confident
manner. That way, you get an opportunity to lead the GD to a
meaningful point of your choice & convenience.
</div>
</div>
</li>
<!-- Item 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Commence the topic</span>
</div>
<div class="desc">
The most captivating way to start the GD is to add a relevant or
famous quote. As an initiator, it helps grab the attention of
everyone. Using quotes and questions can also be thought-provoking.
Wherever possible, emphasize your point with facts and figures.
</div>
</div>
</li>
<!-- Item 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Quality over quantity</span>
</div>
<div class="desc">
Having in-depth subject knowledge and rich content is a vital aspect
to ace the group discussion. Read relevant topics pertaining to the
GD beforehand. Also, listen well to the content of other
participants & provide astute comments. While it’s important to make
substantial points, it’s equally important that it’s not superficial
or lengthy. So, choose your words wisely.
</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Be proactive & listen well</span>
</div>
<div class="desc">
Pay close attention to fellow participants and try to assimilate the
information quickly. Listening skills are essential for GD as it
also helps articulate your own thoughts better. You need to think at
a fast pace and put forth your views effectively to fuel the
discussion.
</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Clarity of Speech and thoughts</span>
</div>
<div class="desc">
Always maintain an optimum speed & volume of your voice, but do not
be monotonous. Be prepared in your mind & form logical arguments
Present your points in a clear and concise manner. Avoid fumbling &
jumbling with your speech.
</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Use Good body gestures</span>
</div>
<div class="desc">
It is important to be mindful of one’s body language as the
panelists pay remarkably close attention to the way the candidates
carry themselves and speak. Body gestures are important because your
body language speaks a lot about your attitude. Ensure you project
an open, receiving, friendly yet assertive stance and discuss with
confidence. Make eye contact with the others in the group
periodically. Avoid slouching, wincing, and fidgeting which projects
a negative impression.
</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Be assertive, not aggressive</span>
</div>
<div class="desc">
An assertive person puts across his point strongly & rationally. It
is advisable to be open-minded & accommodate diverse viewpoints. Try
not to be arrogant or obtrusive, as this may indicate a negative
attitude with poor interpersonal skills. Be polite and avoid
interrupting. Raise the quality of your argument, but not your
voice!
</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Positive mindset</span>
</div>
<div class="desc">
Having a positive mindset does play a significant role in boosting
your confidence and performance. Even if there is a conflict in
opinion, remember to stay positive. Keep coming up with points that
are positive in nature. It adds to your credibility. We hope these
tips will help you succeed We hope these tips will help you and ace
any GD round you attend. Good luck!
</div>
</div>
</li>
</ul>
<!-- Start Footer Area -->
<footer class="footer">
<div class="container">
<div class="inner-content">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<!-- Single Widget -->
<div class="single-footer f-about">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo/logo.png" alt="#" />
</a>
</div>
<p>
FORESE is a student-run forum and an extension of the
Placement cell. It empowers students and equips them with
essential soft skills such as team management, interpersonal,
and leadership skills useful for their careers.
</p>
<span class="social-title"> Follow Us On: </span>
<ul class="social">
<li>
<a href="https://www.linkedin.com/company/forese/mycompany/"
><i class="lni lni-linkedin-original"></i
></a>
</li>
<li>
<a href="https://github.com/ForeseTech">
<i class="lni lni-github-original"></i>
</a>
</li>
</ul>
</div>
<!-- End Single Widget -->
</div>
<div class="col-lg-2 col-md-6 col-12">
<!-- Single Widget -->
<div class="single-footer f-link">
<h3>Know More</h3>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="mocks.html">Mock Placements</a></li>
<li><a href="aptitude&gd.html">Aptitude & GD</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<!-- End Single Widget -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Single Widget -->
<!-- End Single Widget -->
</div>
</div>
</div>
</div>
<!--/ End Footer Top -->
<!-- Start Copyright Area -->
<div class="copyright">
<div class="container">
<div class="inner-content">
<div class="row">
<div class="col-12">
<p class="copyright-text">
Designed and Developed by <b>FORESE Tech Team</b>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Copyright Area -->
</footer>
<!-- End Footer Area -->
<!-- ========================= scroll-top ========================= -->
<a href="#" class="scroll-top">
<i class="lni lni-chevron-up"></i>
</a>
<!-- ========================= JS here ========================= -->
<!-- Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta2/js/bootstrap.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js"></script>
</body>
</html>