-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid+ucat.html
979 lines (893 loc) · 46.5 KB
/
covid+ucat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="description" content="Want To Know How The Medical Admissions Is Affected With COVID-19? Read here...">
<link rel=" icon" href="img/logo.png" type="img/png">
<title>The Medical Geeks | COVID-19</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link href="css/responsive.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link href="css/blog.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link href="css/service.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:600" rel="stylesheet">
<!-- DONT FORGET TO ADD THE ROOT DIRECTORY TO THE LINK HREF FILES WITH THE ../ -->
<!-- THIS IS NEEDED FOR NAV BAR + NOTIFICATION BELL -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- FOR CATEOGORIES SECTION-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-166932878-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-166932878-1');
</script>
</head>
<body>
<header class="header_area">
<div class="main_menu">
<nav class="navbar fixed-top navbar-expand-lg navbar-dark" style="background-color: #5985BA">
<a class="navbar-brand" href="index.html">
<img src="img/logo.png" width="60" height="60" class="d-inline-block align-center"
alt="">TheMedicalGeeks
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="interview.html">Interview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ucat.html">UCAT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="bmat.html">BMAT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="personal-statement.html">Personal Statement</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Blog
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="blog.html">
<img src="img/icons/dropdown-home.png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">Home</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="blog-individuals/UCAT/ucat-hm-blog.html">
<img src="img/icons/dropdown-ucat.png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">UCAT</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="blog-individuals/PS/ps-hm-blog.html"><img
src="img/icons/dropdown-ps .png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">Personal
Statement</a></a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="blog-individuals/BMAT/bmat-hm-blog.html"><img
src="img/icons/dropdown-bmat.png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">BMAT</a></a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="blog-individuals/Interview/interviewe-hm-blog.html"><img
src="img/icons/dropdown-int.png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">Interview</a></a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="blog-individuals/admission/work-exp-hm.html"><img
src="img/icons/dropdown-admission.png" width="30" height="30"
style="margin:0 1em 0 0 " alt="">Admissions Process</a></a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="freebies.html">Free Resources</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<div class="wrapper" onclick="clickCounter(); openNav();">
<div class="notification" onclick="openNav(); clickCounter();">
<i class="far fa-bell"></i>
<div class="text" onclick="closeBar();">Notifications</div>
<div class="notify-count count1 common-count" id="common-count" count="0">
<div class="value" id="value">0</div>
</div>
</div>
</div>
</ul>
</div>
</nav>
</div>
</header>
<section class="covid_ucat-hero-banner d-flex align-items-center"></section>
<section class="main-blog-area">
<div class="container">
<div class="container-section-blog">
<div class="main-blog-heading">
<h1 class="title">COVID-19 And Latest Updates</h1>
<p class="update" style="text-align:center;"><strong>Latest Update</strong> - 21/06/2020</p>
</div>
<div class="sub-text" style="text-align: center;">
<p>It's important to keep up to date with the application process. On this page, we will post the
latest
information here. Always check the official <strong><a href="https://www.ucat.ac.uk/"
target="blank">UCAT website
here</a></strong> and the official <strong><a
href="https://www.admissionstesting.org/for-test-takers/bmat/" target="blank">BMAT
website here.</a></strong>It's constantly changing every week, so check
these website's for the latest information.
</p>
</div>
<div class="contents-section-blog">
<div class="container-fluid">
<h1>Contents Section</h1>
<div class="card">
<h2>UCAT</h2>
<strong>
<p>→ Changes Made To The
UCAT</p>
</strong>
<strong>
<p> → What Do The Changes To The UCAT Mean For My
Revision?
</a>
</strong>
<strong>
<p> → When Should You Take The Test?</p>
</strong>
<strong>
<p> → Will Sitting The UCAT At Home Affect My UCAT
Performance? </p>
</strong>
<br>
<h2>BMAT</h2>
<strong>
<p> → What Are The Changes To BMAT?</p>
</strong>
<strong>
<p>→ What Will The BMAT Now Look Like?
</p>
</strong>
<strong>
<p> → How Will The Changes Impact My
Revision?</p>
</strong>
<br>
</div>
</div>
</div>
<div class="contents-section-blog">
<div class="container-fluid">
<h4>UCAT</h4>
</div>
</div>
<div class="main-body-text" id="main-body-text">
<div class="individual-headings">
<img src="img/icons/computer-ucat.png">
<h1>Changes Made To The UCAT
</h1>
</div>
<div class="text">
<p> ✅ You can <strong>sign up </strong>for UCAT <strong>from 1st July 2020</strong>
<br><br>
✅ Exam can be taken from <strong>3rd Aug to 1st Oct</strong> <br><br>
✅ UCAT can be <strong>sat online </strong><br><br>
✅ UCAT <strong>can be done </strong>at <strong>Pearson Vue's centres
</strong><br><br>
</p>
</div>
</div>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/score.png">
<h1>What do the changes to the UCAT mean for my revision?
</h1>
</div>
<div class="text-details">
<p>
The shorter testing window means a few things <br><br>
<strong>Firstly,</strong> you will have a longer time to prepare.
Since testing will start later than usual you can use this time to do extra
revision.
<br>
<br>
<strong>Secondly,</strong> however, since testing will end around the same time as
before,
you will have less
flexibility in terms of when you want to take the test.
<br>
<br>
</p>
</div>
</div>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/time.png">
<h1>When should you take the test?
</div>
</h1>
<div class="text-details">
Of course, this is up to you. Moreover, <strong>we recommend</strong> that you take it
towards
the <strong>beginning of
the summer holiday,</strong><i> i.e. near the beginning of the testing window.</i>
<br>
<br>
This is because research seems to suggest that the earlier you take your UCAT test the
higher
your score is likely to be. For more <strong>UCAT tips </strong>check out <strong><a
href="blog-individuals/UCAT/ucat-hm-blog.html">our UCAT blog.</a></strong>
<br>
<br>
</div>
</div>
<br>
<br>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/rocket.png">
<h1>How will sitting the UCAT at home affect my UCAT performance?
</div>
</h1>
<div class="text-details">
This year you will have the option of <strong>sitting the UCAT at home.</strong> This is
called
<strong>UCAT Online.</strong>
<br>
<br>
Some people will prefer this if they prefer being tested in a <strong>
familiar environment </strong>that they are
more comfortable with. Other people, however, prefer a more <strong>formal
setting</strong> in a
test centre.
<br>
<br>
<strong>UCAT Online</strong> is not in anyways easier than UCAT in a testing centre. The
materials are the same;
a webcam and a microphone will be used to act as invigilators. Therefore, sitting the
UCAT
Online is only advantageous if you prefer working from home. <strong>UCAT Online is the
exact
same level
of difficulty as UCAT in a test centre</strong>
<br>
<br>
<strong>To kickstart your UCAT revision</strong> be sure to check out our<strong><a
href="ucat.html"> UCAT guide!</a></strong>
<br>
<br>
</div>
</div>
<section class="breaker">
<div class="container-fluid">
</div>
</section>
<div class="contents-section-blog">
<div class="container-fluid">
<h4>BMAT</h4>
</div>
</div>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/basics.png">
<h1>What are the changes?
</div>
</h1>
<div class="text-details">
To learn more about the BMAT check out <strong><a
href="blog-individuals/BMAT/bmat-hm-blog.html">our BMAT blog.</a></strong>
<br>
<br>
<li>Change has <strong>only been made to section 1</strong></li>
<li><strong>No changes</strong> have been made to sections 2 and 3</li>
<li>Section 1 will now have <strong>32 questions</strong> instead of 35</li>
<br>
<strong>This means that there will be more time available for doing fewer questions which is a
welcome
change.</strong>
<br>
<br>
<strong>Section 1 questions,</strong> regardless of their format, will now have 5 different
answer options: 1
correct answer and 4 incorrect answers.
<strong>Previously,</strong> different questions have had different number of answer options.
Many questions used
to have <strong>more than 5 options. </strong>With only 5 options, it is now easier to
eliminate the wrong
answers when guessing. This also means you will have a <strong>higher probability </strong>of
guessing the right
answer. All that if you had to guess.
<br>
<br>
There will <strong>no longer be data analysis and interference questions.</strong>
These questions used to be presented in the format of a long text that is followed by many
related questions. However, in the <strong>new update</strong> this will no longer be the case.
All questions
will be independent of each other and each question is its own. You won’t need to go back to
previous questions in order to work out the solution for another one.
<br>
<br>
This is also a welcomed update. Previously, if you found the main text for a set of questions
challenging, then that could have meant that you wouldn’t be able to answer the questions for
all
of the set. <strong>This is no longer the case. </strong>So, if a question was too challenging
and you wanted to
move on, you don’t have to worry about it having a knock-on effect!
<br>
<br>
</div>
</div>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/book.png">
<h1>What Will The BMAT Look Like Now?
</div>
</h1>
<div class="text-details">
<li><strong>Sections 2 and 3 will look the same.</strong> To find out more check out <strong><a
href="blog-individuals/BMAT/bmat-hm-blog.html">our BMAT blog.</a></strong></li>
<br>
<li><strong>Section 1’s 32 questions will be split into 2 main types of questions</strong></li>
<br>
<li><strong>16 questions in section 1 will involve problem solving skills</strong></li>
<br>
<li><strong>16 questions in section 1 will involve critical thinking skills</strong></li>
<br>
<br>
There are three main types of problem solving questions: <strong>
<li>relevant selection</li>
</strong>
<li><strong>finding procedures</strong></li>
<li><strong>identifying similarities</strong></li>
<br>
<br>
There are a few main types of critical thinking:
<strong>
<li>identifying and drawing conclusions</li>
</strong>
<strong>
<li>identifying assumptions </li>
</strong>
<li><strong>detecting the need for additional evidence</strong></li>
<li><strong>detecting reasoning errors</strong></li>
<li><strong>matching arguments</strong></li>
<br>
<br>
To learn more about the different types of BMAT questions and <strong>how to tackle
them,</strong> be sure to
check out <strong><a href="bmat.html">our BMAT guide.</a></strong>
<br>
<br>
</div>
</div>
<div class="main-body-text">
<div class="individual-headings">
<img src="img/icons/rocket.png">
<h1>How will the changes impact my BMAT preparation?
</div>
</h1>
<div class="text-details">
✅ There shouldn’t be a major impact
✅ Try and avoid questions that you no longer need to do
<br>
<br>
<strong>When doing a practice paper,</strong> identifying the associated set of questions that
will no longer
come up is a good starting point. This is so that you don't <strong>waste your time</strong>
attempting these
questions that won’t even come up. Other than that, you don’t need to do much to adjust to the
changes.
<br>
<br>
<strong>You can kickstart your BMAT</strong> revision and preparation by <strong><a
href="bmat.html">clicking here.</a></strong>
<br>
<br>
</div>
</div>
<section class="breaker">
<div class="container-fluid">
</div>
</section>
<div class="main-body-text"
style="text-align: center; background-color:rgb(233, 233, 233); box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); padding-bottom:3em;">
<div class="individual-headings">
<img src="img/logo.png"
style="display: block;margin-left: auto; margin-right: auto; width: 10%;">
<h1>What Does TheMedicalGeeks Think?
</div>
</h1>
<div class="text-details">
These are difficult times, and this year is going to be difficult for everyone. Its
important to
note that everyone is in the same position as you.
<br>
<br>
There should be no difference in the preparation for the UCAT exam compared to previous
years.
The only difference is that you may have to keep in touch with regular updates either on
this
page, or on <a href="https://www.ucat.ac.uk/" target="blank">UCAT's Official
Website.</a>
<br>
<br>
<strong>From everyone at TheMedicalGeeks, keep safe and study hard, and good
luck.</strong>
</div>
</div>
</section>
</div>
<section class="tease">
<div class="teaser-section">
<div class="teaser-section-container.container-fluid">
<div class="row-tease">
<div class="col">
<p class="improve-teaser">Improve Your UCAT Score</p>
<h1 class="improve-teaser-header">Become A Geek Today</h1>
</div>
<div class="col">
<div class="action-buttons-buy-now">
<div class="teaser-buy-now">
<a href="ucat.html">
<button type="button">Buy Now</button>
</a>
</div>
</div>
<div class="action-buttons-buy-now">
<div class="teaser-buy-now">
<p5>or</p5>
</div>
</div>
<div class="action-buttons-free">
<div class="teaser-free">
<a href="freebies.html">
<button type="button">Free Resources</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="categories-header">
<div class="categories-container">
<div class="categories">
<h1>Related Articles</h1>
</div>
</div>
</section>
<section class="main-blog-area">
<div class="container">
<div class="blog-card-deck">
<div class="card-deck">
<div class="card d-flex align-content-start flex-wrap">
<a href="blog-individuals/UCAT/tips-UCAT.html">
<img class="card2-img-top" src="img/icons/improve-ucat.png" style="max-width: 100%"
alt="Card image cap">
</a>
<div class="card-body">
<h8 class="card-title"><strong><a href="blog-individuals/UCAT/tips-UCAT.html">Top Tips To
Improve
Your UCAT
Score!</a></strong>
</h8>
<p class="card-text">Want To Score A Higher UCAT Score? Read This Blog On
What We Did To
Improve Our Score! </p>
<a href="blog-individuals/UCAT/tips-UCAT.html">
<div class="card-text">Read More...
</div>
</a>
</div>
<div class="card-footer">
<small class="text-muted">1st June 2020</small>
</div>
</div>
<div class="card d-flex align-content-start flex-wrap">
<a href="blog-individuals/UCAT/high_score.html">
<img class="card2-img-top" src="img/icons/high_score.png" style="max-width: 100%"
alt="Card image cap">
</a>
<div class="card-body">
<h8 class="card-title"><strong><a href="blog-individuals/ucat/high_score.html">What To Do If
You Scored High In UCAT?</a></strong></h8>
<p class="card-text">You've nailed the UCAT but not sure what to do next? Read this blog on
your steps into getting into medical school.</p>
<a href="blog-individuals/UCAT/high_score.html">
<div class="card-text">Read More...
</div>
</a>
</div>
<div class="card-footer">
<small class="text-muted">12th June 2020</small>
</div>
</div>
<div class="card d-flex align-content-start flex-wrap">
<a href="blog-individuals/UCAT/how-UCAT.html">
<img class="card2-img-top" src="img/icons/how.png" style="max-width: 100%"
alt="Card image cap">
</a>
<div class="card-body">
<h8 class="card-title"><strong><a href="blog-individuals/UCAT/how-UCAT.html">How Do
Universities Use The UCAT?
</a></strong></h8>
<p class="card-text">Want to get into medical school? Have you thought about
taking the BMAT
exam? We run through all you need to know about the BMAT exam.
</p>
<a href="blog-individuals/UCAT/how-UCAT.html">
<div class="card-text">Read More...
</div>
</a>
</div>
<div class="card-footer">
<small class="text-muted">1st June 2020</small>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="breaker">
<div class="container-fluid">
</div>
</section>
</div>
</div>
</div>
</section>
<section class="subheading-categories" style="background-color: white;">
<h1>Categories</h1>
</section>
<section class="podcast-categories" style="background-color: white; color:#212529">
<div class="explore-card-area" style="background: white;">
<div class="card-deck">
<div class="card">
<div class="card-body">
<i class="fas fa-feather fa-5x"></i>
<h1 class="card-title">Personal Statement</h1>
<p1 class="card-text">Read More...
<a href="blog-individuals/PS/ps-hm-blog.html"
class="btn-lg btn-block mt-auto stretched-link">
</a>
</p1>
</a>
</div>
</div>
<div class="card">
<div class="card-body">
<i class="fas fa-calculator fa-5x"></i>
<h1 class="card-title">UCAT</h1>
<p1 class="card-text">Read More...
<a href="blog-individuals/UCAT/ucat-hm-blog.html"
class="btn-lg btn-block mt-auto stretched-link"> </a>
</p1>
</div>
</div>
<div class="card">
<div class="card-body">
<i class="fas fa-dna fa-5x"></i>
<h1 class="card-title">BMAT</h1>
<p1 class="card-text">Read More...
<a href="blog-individuals/BMAT/bmat-hm-blog.html"
class="btn-lg btn-block mt-auto stretched-link"> </a>
</p1>
</div>
</div>
<div class="card">
<div class="card-body">
<i class="fas fa-comments fa-5x"></i>
<h1 class="card-title">Interview</h1>
<p1 class="card-text">Read More...
<a href="blog-individuals/Interview/interviewe-hm-blog.html"
class=" btn-lg btn-block mt-auto stretched-link"> </a>
</p1>
</div>
</div>
<div class="card">
<div class="card-body">
<i class="fas fa-cogs fa-5x"></i>
<h1 class="card-title">Admission Process</h1>
<p1 class="card-text">Read More...
<a href="blog-individuals/admission/work-exp-hm.html"
class=" btn-lg btn-block mt-auto stretched-link"> </a>
</p1>
</div>
</div>
</div>
</div>
</section>
<section class="breaker">
<div class="container-fluid">
</div>
</section>
</div>
</div>
</div>
</section>
<footer class=" page-footer font-small blue pt-4">
<div class="container-fluid text-center text-md-left">
<div class="row">
<div class="col-md-4 mx-auto">
<a class="footer-logo" style="font-family: Arial Black, sans-serif; font-size: 25px;">
<img src="img/logo.png" width="60" height="60" class="d-inline-block align-center"
alt=""><strong>TheMedicalGeeks
</strong>
</a>
<p><i>Founded by medical students, for future medical students</i></p>
</div>
<hr class="clearfix w-100 d-md-none">
<div class="col-md-2 mx-auto">
<h5 class="font-weight-bold text-uppercase mt-3 mb-4">Services</h5>
<ul class="list-unstyled">
<li>
<a href="ucat.html">UCAT</a>
</li>
<li>
<a href="bmat.html">BMAT</a>
</li>
<li>
<a href="personal-statement.html">Personal Statement</a>
</li>
<li>
<a href="interview.html">Interview</a>
</li>
<li>
<a href="faqs.html">FAQs</a>
</li>
</ul>
</div>
<hr class="clearfix w-100 d-md-none">
<div class="col-md-2 mx-auto">
<h5 class="font-weight-bold text-uppercase mt-3 mb-4">Freebies</h5>
<ul class="list-unstyled">
<li>
<a href="freebies.html">UCAT Questions</a>
</li>
<li>
<a href="freebies.html">BMAT Questions</a>
</li>
<li>
<a href="freebies.html">PS Examples</a>
</li>
<li>
<a href="freebies.html">Interview Questions</a>
</li>
</ul>
</div>
<hr class="clearfix w-100 d-md-none">
<div class="col-md-2 mx-auto">
<h5 class="font-weight-bold text-uppercase mt-3 mb-4">About Us</h5>
<p>TheMedicalGeeks<br>71-75 Shellon Street</br>Covent Garden<br>London</br>WC2H 9JQ
</p>
</div>
</div>
</div>
<hr>
<div class="row d-flex align-items-center">
<div class="col-md-7 col-lg-8">
<p class="footer-copyright text-center text-md-left">© 2020
<a href="index.html">
<strong>TheMedicalGeeks</strong>
</a>
</p>
</div>
<div class="col-md-5 col-lg-4 ml-lg-0">
<div class="footer-terms text-center text-md-right">
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a href="tnc.html">T&Cs</a>
</li>
<li class="list-inline-item">
<a href="privacy-policy.html">Privacy & Cookies</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<a id="extra-container-fluid" class="background-close" href="javascript:void(0)" onclick="closeNav()"></a>
</div>
<div id="mySidenav" class="sidenav">
<div class="side-navbar-header">
<div class="container-fluid">
<h1><a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
TheMedicalGeeks Info Centre</h1>
</div>
</div>
<div class="sidebar-card-container">
<div class="card">
<div class="card-side">
<div class="newdate">
<p1>5th June 2020</p1>
</div>
<a href="covid+ucat.html">
<h3>Latest Update On UCAT UK And Covid-19</h3>
</a>
<a href="covid+ucat.html">
<img class="side-img" src="img/background/ucat-covid-banner.png">
</a>
<h8><strong>Important Information Update</strong></h8>
<br>
<p9>The UCAT has announced on 1st June 2020 that:</p9>
<br>
<br>
<ul>✅ You can sign up for UCAT from <strong>1st July 2020</strong></ul>
<ul>
✅ Exam can be taken from <strong> 3rd Aug to 1st Oct</strong>
</ul>
<ul>
✅ UCAT can be <strong>sat online</strong>
</ul>
<ul>
✅ UCAT can be done at <strong>Pearson Vue's centres</strong>
</ul>
<br>
<p9>You can find out <strong><a href="https://www.ucat.ac.uk/ucat/ucat-2020-update/"
target="_blank">
more information here...</a></strong></p9>
<br>
<br>
<p9>📅 To keep up to date with the latest information regarding Covid-19 and the UCAT exam,
make
sure to follow us on <strong><a href="https://www.instagram.com/themedicalgeeks/"
target="_blank">Instagram
for
the latest news!</a></strong></p9>
<br>
<br>
<p5>🚀 To improve your UCAT score, read our <strong><a href="blog.html">blogs
here</a></strong>
or
check
out our <a href="ucat.html"><strong>UCAT guide here.</strong></a></p5>
</div>
<div class="card-side">
<div class="newdate">
<p1>1st June 2020</p1>
</div>
<a href="blog-individuals/UCAT/tips-UCAT.html">
<h3>How To Improve Your UCAT Score Blog!</h3>
</a>
<a href="blog-individuals/UCAT/tips-UCAT.html">
<img class="side-img" src="img/background/UCAT-banner-side.png">
</a>
<h8><strong>What's In The Blog?</strong></h8>
<br>
With UCAT Tests around the corner, its time to read tips on how to improve your score! We look
at:
<br>
<br>
<strong>
<ul>✅ Time Management</ul>
</strong>
<ul>
<strong>✅ How To Guess</strong>
</ul>
<ul>
<strong>✅ How To Practice</strong>
</ul>
<ul>
<strong>✅ How To Improve Marginal Gains </strong>
</ul>
<br>
<p3>📅 To keep up to date with the latest information regarding Covid-19 and the UCAT exam, make
sure to follow us on <strong> <a href="https://www.instagram.com/themedicalgeeks/"
target="_blank">Instagram
for
the latest news!</a></strong></p3>
<br>
<br>
<p5>🚀 To improve your UCAT score, read our <strong><a href="blog.html">blogs
here</a></strong>
or check
out our <strong><a href="ucat.html">UCAT guide here.</a></strong></p5>
</div>
<div class="card-side">
<div class="newdate">
<p1>1st June 2020</p1>
</div>
<a href="blog-individuals/PS/tips-ps.html">
<h3>How To Improve Your Personal Statement Blog!</h3>
</a>
<a href="blog-individuals/PS/tips-ps.html">
<img class="side-img" src="img/background/ps-sidebar.png">
</a>
<h8><strong>What's In The Blog?</strong></h8>
<br>
Not sure where to start with your personal statement? In this blog, we cover:
<br>
<br>
<strong>
<ul>✅ How To Make It Interesting</ul>
</strong>
<ul>
<strong>✅ Making Sure You Don't Forget The Important Information</strong>
</ul>
<ul>
<strong>✅ How To Make It Personal!</strong>
</ul>
<br>
<p3>📅 To keep up to date with the latest information regarding Covid-19 and the UCAT exam, make
sure to follow us on <strong> <a href="https://www.instagram.com/themedicalgeeks/"
target="_blank">Instagram
for
the latest news!</a></strong></p3>
<br>
<br>
<p5>🚀 To improve your Personal Statement, read our <strong><a href="blog.html">blogs
here</a></strong>
or check
out our <strong><a href="personal-statement.html">Personal Statement guide
here.</a></strong></p5>
</div>
</div>
</div>
<!--Opens up side nav upon clicking on bell // also contains clicking on side to close sidenav bar-->
<script>
function openNav() {
var x = document.getElementById("mySidenav");
if (window.matchMedia("(max-width:768px)").matches) {
document.getElementById("mySidenav").style.width = "100vw";
document.body.style.backgroundColor = "rgba(1,1,1,1)";
document.getElementById("extra-container-fluid").style.width = "100vw";
}
else {
document.getElementById("mySidenav").style.width = "45vw";
document.body.style.backgroundColor = "rgba(1,1,1,1)";
document.getElementById("extra-container-fluid").style.width = "100vw";
}
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.body.style.backgroundColor = "white";
document.getElementById("extra-container-fluid").style.width = "0";
}
function closeBar() {
document.getElementById("navbarTogglerDemo02").style.height = "0";
document.getElementById("navbarTogglerDemo02").style.width = "0";
}
</script>
<!--Setting local storage to clear the notification symbol if user closes browser or reopens tab-->
<script type="text/javascript">
function clickCounter() {
if (typeof (Storage) !== "undefined") {
if (sessionStorage.clickcount) {
sessionStorage.clickcount += 1;
document.getElementById('common-count').style.display = "none";
} else {
sessionStorage.clickcount = 1;
document.getElementById('common-count').style.display = "block";
}
}
}
if (sessionStorage.clickcount) {
document.getElementById('common-count').style.display = "none";
}
</script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
</body>
</html>