Skip to main content

How to Learn whole syllabus of subject in 1 day? + some cool last minute tips

Hi everyone, 
In this article I am going to tell you how to complete the whole syllabus for exam in one day.
I will tell you a full one day plan to complete all your syllabus without having any doubt and also prepare for that subject.


To follow this, firstly you have to divide the syllabus of your subjects into 3 parts-
  •  The first part is for easy chapters second part is for moderate chapters and third parties for difficult chapters in easy chapters you have to put it at topics for which you can answer all the question. 
  • In moderate you have to put that chapters in which you have very less doubt.
  • In the difficult you have to put that topic whose questions you are not able to answer.
HERE IS THE TEMPLATE FOR YOUR PLANNING-

PLAN
starting in the morning 
Prepare a chart of the whole day time table. Begin your day at 8:00 a.m. 
  • In the first three hours revise or learn all the chapters which are easy for you remember after every 50 minutes you have to take 10 minute break .once all the chapters are completed take a 30 minute break. 
  • Then after 30 minute break start learning your chapters which you have put in moderate chapter categories and start revising those topics in deep .this will take around 4 hours to complete .
  • Then after this time you will have to take a break of 30 minutes then around 5:00 p.m. start learning chapters which are in difficult category for you then at around 9:00 p.m. revise all your syllabus and at 10:00 p.m. you have to take 3 mock test which will help you revise all the topics and also score you what you have learned.
BONUS TIPS-
  • Learn your chapter while you are walking don't learn while sitting as it might being sleep when you are in difficult topic.
  •  Gamify your study plan building small targets and reward yourself create a leaderboard like a game by colorful stationery make it enjoyable and keep giving yourself small rewards remember that without commitment you'll never start but without consistency you'll never finish and without self-discipline success is impossible because it's impossible to beat someone who refuses to give up.
  • Morning hours are very good to revise all the topics which you have learn on the previous day as in this time your mind is fully active.
  • Meditation is very important it will bring peace to your mind help you concentrate more.
Techniques in the examinations room from how to to pass exam without anxiety
  • Settle and compose yourself layout your equipment, at least two pens, ruler, pencil and other permitted equipment.
  •  read write through the paper (5 minutes) check instruction very carefully. How many questions - from each section ? Underline keywords in questions. choose your best questions, using a symbol system. Analyse the question very carefully, checking whether it is a 'what' or 'how' type question or a 'why' type.
  • plan your time divide according to  marks per question. Write down finishing time for each question. If possible plan in 10 minutes checking time at end. 
  • Plan your answer brief notes and important details. Linear,spider or  pattern note outline.
  •  Outline all the answers at beginning (if doubtful of remembering); or one at a time or a few answer together. Leave spaces after each question. Ignore  other candidates' writing speed and spare paper collecting -  it is irrelevant to your performance.
  •  Prioritise answer your best question first. Stick to the time allowed for each question: marks for two half-questions are worth more than one. Stick to what the questions are asking.
  • Write simply, in short sentences, checking spellings legibly. Avoiding long 'background' introductions.
  •  At the end of the exam if there is time left check your answers. Minimise your post-mortems.


Comments

Popular posts from this blog

What is magic number in java ?

A number is said to be magic number if the repetitive sum of digits of number is equal to 1 or a single digit number . If the repetitive sum ends up  as 1 then the number is a magic number, else not. For example- n= 289;.   2+8+9 = 19      19;.      1+9 = 10      10;.      1+0= 0       1 Since the number ends in 1, hence 289 is a magic number. Magic number in java is the java program to check whether a number is magic number or not . For this we do repetitive addition of the digits of the number till the number is a two or more digit number. If after repetitive adding digits of the number ends up to 1 then the loop stops and a message is displayed. For this program we need to extract digits of the number for this we use while loop and add this digit . Code snippet to get digits of the number - while(n!=0) {        int d = n%10;         s=s+d;        n=n/10; } ALGORITHM - STEP 1: start STEP 2: print "enter a number" STEP 3: taking input of integer in n STEP 4: rep

disarium number in java

A number is said to be disarium if the sum of its digit powered with their positions is equal to the number itself. EXAMPLE- 135 = (1^1) + (3^2) + (5^3)                             = 1 + 9 + 125                             = 135 A simple java program to check disarium number can be made by firstly calculating the length of the number and then adding digits of the number raised to the power of its position in the number. ALGORITHM - STEP 1 : Start STEP 2 : print "enter a number" STEP 3 : taking input of integer in n STEP 4 : int l= Integer.toString().length() STEP 5 : int no=n STEP 6 : int s=0 STEP 7 : repeat STEP 8 to STEP 11 until (no!=0) STEP 8 : int d=no%10 STEP 9 : s=s+(int)(Math.pow(d,l) STEP 10 :no=no/10 STEP 11 : l-- STEP 12 : if  (s==n) then goto STEP 13 else goto STEP 14 STEP 13 : print "the number is disarium" STEP 14 : print "the number is not disarium" STEP 15 : end JAVA CODE- import java.util.*; public class disarium {     public static void m