<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-93861191937814293</id><updated>2026-06-27T01:01:19.788-07:00</updated><category term="cbse"/><category term="12th improvement"/><category term="cbse improvement"/><category term="CBSE Board"/><category term="2015"/><category term="CBSE Contact"/><category term="Improvement Exam"/><category term="May 2013"/><category term="java"/><category term="latest news"/><category term="mathematics"/><category term="10th boards"/><category term="2014-15"/><category term="Admit Card"/><category term="Biology"/><category term="Board Exams"/><category term="CBSE Class 9"/><category term="CBSE Email"/><category term="CBSE IX Syllabus"/><category term="CBSE Result"/><category term="CBSE emails"/><category term="CTET"/><category term="Class 10th"/><category term="Class 11th"/><category term="Class 12th"/><category term="Education"/><category term="Education News"/><category term="Fake Boards"/><category term="Helpline Numbers"/><category term="Improvement FAQ&#39;s"/><category term="JEE"/><category term="JEE Preparation"/><category term="Number System"/><category term="Quadrangles"/><category term="Quadrilaterals"/><category term="School Boards"/><category term="Science"/><category term="Streams"/><category term="Syndicate Banks"/><category term="classes"/><category term="datatype"/><category term="java java basics programming"/><category term="objects"/><category term="primitive data type"/><category term="programming"/><category term="vocational courses"/><title type='text'>EDUONLINE 24</title><subtitle type='html'>where student directly meets with education</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-3278477343689515442</id><published>2016-08-06T22:39:00.000-07:00</published><updated>2017-08-27T22:42:40.017-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="datatype"/><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="primitive data type"/><title type='text'>Primitive Data Types in Java</title><content type='html'>&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://https://drive.google.com/0B0E4rgPdQNlvR0p4V0dNN1JlUG8&quot;&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;div style=&quot;font-family: Tahoma, Arial, Verdana; font-size: 15px&quot;&gt;
Primitive Data Types are predefined by the java language and named by a keyword. There are totally eight Primitive Data Types in Java. Based on the data type of a variable, the operating system allocates memory and decides what can be stored in the reserved memory. 
&lt;br/&gt;Therefore, by assigning different data types to variables, we can store various data types in these variables.
&lt;br/&gt;The following table gives the detail information about Primitive Data Types:

&lt;/div&gt;
&lt;br/&gt;
&lt;h2&gt;Primitive Data Types (Table)&lt;/h2&gt;

&lt;table id=&quot;customers&quot;&gt;
&lt;tr&gt;
&lt;th&gt;DataType&lt;/th&gt;
  &lt;th&gt;Default Value&lt;/th&gt;
  &lt;th&gt;Size&lt;/th&gt;
  &lt;th&gt;Type&lt;/th&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;color:red&quot;&gt;byte&lt;/td&gt;
&lt;td&gt; 0 &lt;/td&gt;
&lt;td&gt;1 byte&lt;/td&gt;
&lt;td&gt;Integral Value&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;color:red&quot;&gt;short&lt;/td&gt;
&lt;td&gt; 0 &lt;/td&gt;
&lt;td&gt;2 byte&lt;/td&gt;
&lt;td&gt;Integral Value&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;color:red&quot;&gt;int&lt;/td&gt;
&lt;td&gt; 0 &lt;/td&gt;
&lt;td&gt;4 byte&lt;/td&gt;
&lt;td&gt;Integral Value&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;color:red&quot;&gt;long&lt;/td&gt;
&lt;td&gt; 0L &lt;/td&gt;
&lt;td&gt;8 byte&lt;/td&gt;
&lt;td&gt;Integral Value&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;


&lt;tr&gt;
&lt;td style=&quot;color:blue&quot;&gt;float&lt;/td&gt;
&lt;td&gt; 0.0f &lt;/td&gt;
&lt;td&gt;4 byte&lt;/td&gt;
&lt;td&gt;Floating Point&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;color:blue&quot;&gt;double&lt;/td&gt;
&lt;td&gt; 0.0d &lt;/td&gt;
&lt;td&gt;8 byte&lt;/td&gt;
&lt;td&gt;Floating Point&lt;/td&gt;
&lt;/tr&gt;


&lt;tr&gt;
&lt;td style=&quot;color:green&quot;&gt;char&lt;/td&gt;
&lt;td&gt; &#39;\u0000&#39; &lt;/td&gt;
&lt;td&gt;2 byte&lt;/td&gt;
&lt;td&gt;Character&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;color:BlueViolet&quot;&gt;boolean&lt;/td&gt;
&lt;td&gt; false &lt;/td&gt;
&lt;td&gt;1 bit&lt;/td&gt;
&lt;td&gt;Boolean&lt;/td&gt;
&lt;/tr&gt;

&lt;/table&gt;
&lt;br/&gt;
&lt;div style=&quot;font-family: Tahoma, Arial, Verdana; font-size: 15px&quot;&gt;
 &lt;span style=&quot;font-family: Tahoma, Arial, Verdana; font-size: 16px; color:red&quot;&gt;
&lt;b&gt;Note:&lt;/b&gt;&lt;/span&gt; \u0000 means 0 in UNICODE (Universal International Standard Character Encoding)
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/3278477343689515442/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2016/08/eight-primitive-data-types-in-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/3278477343689515442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/3278477343689515442'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2016/08/eight-primitive-data-types-in-java.html' title='Primitive Data Types in Java'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-3858763848987477491</id><published>2016-07-31T09:53:00.000-07:00</published><updated>2016-07-31T10:00:00.990-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="classes"/><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="objects"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><title type='text'>Java Program using Two different Classes in Two Different File</title><content type='html'>&lt;h3&gt;TestEmployee1.java&lt;/h3&gt;
&lt;div style=&quot;text-align: left; border-left: 4px solid blue&quot;&gt;
&lt;div style=&quot;text-align: left; margin: 5px; background-color: #fafafa&quot;&gt;
public class TestEmployee1 { &lt;/br&gt;
	public static void main(String[] args) { &lt;/br&gt;
		Employee1 alex = new Employee1(); //creating 3 objects &quot;alex, linda and john&quot; of the class Employee1 &lt;/br&gt;
		Employee1 linda= new Employee1(); &lt;/br&gt;
		Employee1 john= new Employee1();&lt;/br&gt;&lt;/br&gt;
		
		alex.salary = 10000; // assigning salary to the object &quot;alex&quot; &lt;/br&gt;
		alex.bonus = 2000; &lt;/br&gt;&lt;/br&gt;

		linda.salary = 12000; &lt;/br&gt;
		linda.bonus =1000; &lt;/br&gt;&lt;/br&gt;

		john.salary = 8000;&lt;/br&gt;
		john.bonus = 3000; &lt;/br&gt;&lt;/br&gt;
		
		alex.calculateTotalPay(); //here calculateTotalPay() is a method defined in Employee1 class &lt;/br&gt;
		linda.calculateTotalPay(); // we r invoking that method &lt;/br&gt;
		john.calculateTotalPay(); //will print total pay of john &lt;/br&gt;&lt;/br&gt;

}&lt;/br&gt;
}
&lt;/div&gt;&lt;/div&gt;
&lt;/br&gt;
&lt;h3&gt;Employee1.java&lt;/h3&gt;
&lt;div style=&quot;text-align: left; border-left: 4px solid blue&quot;&gt;
&lt;div style=&quot;text-align: left; margin: 5px; background-color: #fafafa&quot;&gt;

public class Employee1 { &lt;/br&gt;
	double salary;&lt;/br&gt;
	double bonus; &lt;/br&gt; &lt;/br&gt;
	void calculateTotalPay() {&lt;/br&gt;
		double totalPay = salary + bonus; &lt;/br&gt;
		System.out.println(&quot;Total Pay = &quot;  +totalPay); //concatenation used to get totalPay &lt;/br&gt;
	} &lt;/br&gt;
}&lt;/br&gt;&lt;/br&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;div style=&quot;text-align: left&quot;&gt;
&lt;b&gt;Output:&lt;/b&gt;&lt;/br&gt;
C:\Program Files\Java\jdk1.8.065\bin&gt;javac Employee1.java&lt;/br&gt;
C:\Program Files\Java\jdk1.8.065\bin&gt;javac TestEmployee1.java&lt;/br&gt;
C:\Program Files\Java\jdk1.8.065\bin&gt;java TestEmployee1&lt;/br&gt;&lt;/br&gt;

Total Pay = 12000.0&lt;/br&gt;
Total Pay = 13000.0&lt;/br&gt;
Total Pay = 11000.0
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/3858763848987477491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2016/07/java-program-using-two-different.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/3858763848987477491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/3858763848987477491'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2016/07/java-program-using-two-different.html' title='Java Program using Two different Classes in Two Different File'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-6901135658622152027</id><published>2016-07-31T01:46:00.001-07:00</published><updated>2016-08-03T08:35:57.728-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="java java basics programming"/><title type='text'>Simple Java Programs with Output</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
This post contains a list of basic java programs for beginners. These programs will provide you a good understanding of the basics that how java programs work. All coding written below is well tested. Before you start executing these codes you must need these things to be done first:&lt;/div&gt;

&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ul style=&quot;background-color: white; font-family: verdana, helvetica, arial, sans-serif; font-size: 13px; line-height: 23px; text-align: justify;&quot;&gt;
&lt;li style=&quot;font-family: Verdana; font-stretch: normal; line-height: 1.5; margin-top: 3px;&quot;&gt;install the JDK ( Java Development Kit )&lt;/li&gt;

&lt;li style=&quot;font-family: Verdana; font-stretch: normal; line-height: 1.5; margin-top: 3px;&quot;&gt;set path of the jdk/bin directory&lt;/li&gt;
&lt;/ul&gt;

&lt;span style=&quot;text-align: left;&quot;&gt;You also need to remember that in Java the filename should be same as your class name.&lt;/span&gt;
&lt;br /&gt;

&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;

&lt;b&gt;List Of Programs:&lt;/b&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;

&lt;a href=&quot;#EO&quot;&gt;Even Or Odd Numbers Checking (with user input)
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;

&lt;a href=&quot;#WD&quot;&gt;Printing Week Days (Using For Loop)
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;

&lt;a href=&quot;#EN&quot;&gt;List Of Even Numbers (1 to any (both inclusive))
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;

&lt;a href=&quot;#MT&quot;&gt;Multiplication Table (By User Input)
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;

&lt;a href=&quot;#PT&quot;&gt;Printing Text ( Hello World )
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;

&lt;a href=&quot;#RM&quot;&gt;Rectangle Measurement (Squares Included)
&lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;

&lt;/ol&gt;

&lt;/div&gt;



&lt;h3 id=&quot;EO&quot; style=&quot;text-align: left;&quot;&gt;
1. Even Or Odd Numbers Checking (with user input)&lt;/h3&gt;
&lt;div style=&quot;border-left-color: green; border-left-style: solid; border-left-width: 4px;&quot;&gt;
&lt;div style=&quot;margin: 5px;&quot;&gt;
import java.util.Scanner;&lt;br /&gt;
&lt;br /&gt;
class OddOrEven&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp; &amp;nbsp;public static void main(String args[])&lt;br /&gt;
&amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; int x;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;Enter an integer &quot;);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Scanner in = new Scanner(System.in);&amp;nbsp;&lt;span style=&quot;color: #783f04;&quot;&gt;//To ask input from user&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; x = in.nextInt();&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #783f04;&quot;&gt;// remainder after dividing x by2&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; if ( x % 2 == 0 )&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&quot;You entered &quot; + &quot;&#39;&quot; + x + &quot;&#39;&quot; + &quot; which is an even number.&quot;);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&quot;You entered &quot; + &quot;&#39;&quot; + x + &quot;&#39;&quot; + &quot; which is an odd number.&quot;);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Outputs:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
Enter an integer 2&lt;/div&gt;
&lt;div&gt;
You entered 2 which is an even number&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Enter an integer 2&lt;/div&gt;
&lt;div&gt;
You entered 2 which is an even number&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h3 id=&quot;WD&quot; style=&quot;text-align: left;&quot;&gt;
2. Printing Week Days (Using For Loop)&lt;/h3&gt;
&lt;div style=&quot;border-left-color: green; border-left-style: solid; border-left-width: 4px;&quot;&gt;
&lt;div style=&quot;margin: 5px;&quot;&gt;
import java.text.DateFormatSymbols;&lt;br /&gt;
public class PrintWeekDays {&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; String[] weekdays = new DateFormatSymbols().getWeekdays();&lt;br /&gt;
// to Get day names&lt;/div&gt;
&amp;nbsp; &amp;nbsp; for(String s: weekdays){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(s);&lt;br /&gt;
} } }&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
Sunday&lt;/div&gt;
&lt;div&gt;
Monday&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
Tuesday&lt;/div&gt;
&lt;div&gt;
Wednesday&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
Thursday&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
Friday&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div style=&quot;font-family: &amp;quot;times new roman&amp;quot;;&quot;&gt;
Saturday&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h3 id=&quot;EN&quot;style=&quot;text-align: left;&quot;&gt;
3. List Of Even Numbers (1 to any (both inclusive))&lt;/h3&gt;
&lt;div&gt;
&lt;div&gt;
/*&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; find and list even numbers between 1 and any given number.&lt;/div&gt;
&lt;div&gt;
*/&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
public class ListEvenNumbers {&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public static void main(String[] args) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //define limit&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int limit = 10;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;Printing Even numbers between 1 and &quot; + limit);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for(int i=1; i &amp;lt;= limit; i++){&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // if the number is divisible by 2 then it is even&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if( i % 2 == 0){&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.print(i + &quot; &quot;);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
}&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
Printing Even Numbers between 1 and 10&lt;br /&gt;
2 4 6 8 10&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h3 id=&quot;MT&quot; style=&quot;text-align: left;&quot;&gt;
4. Multiplication Table (By User Input)&lt;/h3&gt;
&lt;div&gt;
&lt;div&gt;
import java.util.Scanner;&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
class MultiplicationTable&lt;/div&gt;
&lt;div&gt;
{&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;public static void main(String args[])&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;{&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; int n, c;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;Enter an integer to print it&#39;s multiplication table:&quot;);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Scanner in = new Scanner(System.in);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; n = in.nextInt();&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;Multiplication table of &quot;+n+&quot; is :-&quot;);&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; for ( c = 1 ; c &amp;lt;= 10 ; c++ )&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(n+&quot;*&quot;+c+&quot; = &quot;+(n*c));&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;}&lt;/div&gt;
&lt;div&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
Enter an integer to print it&#39;s multiplication table:&lt;/div&gt;
&lt;div&gt;
2&lt;/div&gt;
&lt;div&gt;
Multiplication table of &amp;nbsp;2 is :-&lt;/div&gt;
&lt;div&gt;
2*1 = 2&lt;/div&gt;
&lt;div&gt;
2*2 = 4&lt;/div&gt;
&lt;div&gt;
2*3 = 6&lt;/div&gt;
&lt;div&gt;
2*4 = 8&lt;/div&gt;
&lt;div&gt;
2*5 = 10&lt;/div&gt;
&lt;div&gt;
2*6 = 12&lt;/div&gt;
&lt;div&gt;
2*7 = 14&lt;/div&gt;
&lt;div&gt;
2*8 = 16&lt;/div&gt;
&lt;div&gt;
2*9 = 18&lt;/div&gt;
&lt;div&gt;
2*10 = 20&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;h3 id=&quot;PT&quot; style=&quot;text-align: left;&quot;&gt;
5. Printing Text ( Hello World )&lt;/h3&gt;
&lt;div&gt;
public class MyFirstJavaProgram {&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;/* This is my first java program. &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; * This will print &#39;Hello World&#39; as the output&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; */&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; public static void main(String []args) {&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&quot;Hello World&quot;); // prints Hello World&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; }&lt;/div&gt;
&lt;div&gt;
}&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Output&lt;/b&gt;:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
Hello World&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;h3 id=&quot;RM&quot; style=&quot;text-align: left;&quot;&gt;
6. Rectangle Measurement (Squares Included)&lt;/h3&gt;
&lt;div&gt;
import java.util.Scanner;&lt;/div&gt;
&lt;div&gt;
class RectDemo&lt;/div&gt;
&lt;div&gt;
{&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;public static void main(String args[])&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;{&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Scanner sc = new Scanner(System.in);&lt;span style=&quot;color: #783f04;&quot;&gt;//This is necessary for inputs&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;nbsp;&amp;nbsp;System.out.print(&quot;Enter the length of Rectangle: &quot;);&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;nbsp;&amp;nbsp;double length = sc.nextDouble(); &amp;nbsp;&lt;span style=&quot;color: #783f04;&quot;&gt;//Takes the user input as length&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;nbsp;&amp;nbsp;System.out.print(&quot;Enter the breadth of Rectangle: &quot;);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; double breadth = sc.nextDouble();&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; if(length==breadth){&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;double area = length * breadth;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;The area of Square is: &quot; + area);&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double perimeter= 2 * (length + breadth);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println( &quot;The perimeter of the Square is:&quot;+perimeter) ;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}else{&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double area = length * breadth;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&quot;The area of Rectangle is: &quot; + area);&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double perimeter= 2 * (length + breadth);&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println( &quot;The perimeter of the rectangle is:&quot;+perimeter) ;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;}&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp;}&lt;/div&gt;
&lt;div&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
Enter the length of Rectangle: 2&lt;br /&gt;
Enter the breadth of Rectangle: 3&lt;br /&gt;
The area of Rectangle is: 6.0&lt;br /&gt;
The perimeter of Rectangle is:10.0&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/6901135658622152027/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2016/07/Java-Basic-Programs-with-Output.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6901135658622152027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6901135658622152027'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2016/07/Java-Basic-Programs-with-Output.html' title='Simple Java Programs with Output'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-1663037869494609889</id><published>2015-12-16T22:04:00.000-08:00</published><updated>2015-12-17T09:37:12.958-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fake Boards"/><category scheme="http://www.blogger.com/atom/ns#" term="School Boards"/><title type='text'>Non‐Recognised Boards/Universities In India By NIOS</title><content type='html'>&lt;html&gt;
&lt;head&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://googledrive.com/host/0B0E4rgPdQNlvYjZ4bklnQTF6MUU/&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt; Here is a list of school/university boards which are not recognised by NIOS (National Institute of Open Schooling). Since NIOS is a government board and also one of the world&#39;s biggest open schooling board. So one should be remembring this while going for admissions in schools. Its always recommended to verify the board before taking admissions. And if you want to be on a safer side then always go for national boards like CBSE, ICSE, etc. &lt;/p&gt;
&lt;table class=&quot;wrap&quot;&gt;
  &lt;tr&gt;
    &lt;th&gt;Sr. No.&lt;/th&gt;
    &lt;th&gt;Board/University Name&lt;/th&gt; 
    &lt;th&gt;Address&lt;/th&gt;
 
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;Central Board of Higher Education&lt;/td&gt; 
 &lt;td&gt; Aspati Bhawan, Uttam Nagar, New Delhi.&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;  
    &lt;td&gt;2&lt;/td&gt;
    &lt;td &gt;All India Board of Secondary Education&lt;/td&gt;
    &lt;td&gt;Gazipur&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;3&lt;/td&gt;
     &lt;td &gt;Central Board of Higher Education&lt;/td&gt;
  &lt;td&gt; East Patel Nagar, New Delhi.&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;4&lt;/td&gt;
     &lt;td &gt;Board of Adult Education and Training&lt;/td&gt;
  &lt;td&gt; Brahmpuri, Nagal Rai, New Delhi.&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;5&lt;/td&gt;
     &lt;td &gt;Gurukul Vishwavidyalaya&lt;/td&gt;
  &lt;td&gt; Vrindavan&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;6&lt;/td&gt;
     &lt;td &gt;Akhil Bhartiya Shiksha Sansthan&lt;/td&gt;
  &lt;td&gt; New Delhi.&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;7&lt;/td&gt;
     &lt;td &gt;ACN International University&lt;/td&gt;
  &lt;td&gt;Raipur&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;8&lt;/td&gt;
     &lt;td &gt; Doon International University&lt;/td&gt;
  &lt;td&gt; Raipur&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
 &lt;td&gt;9&lt;/td&gt;
     &lt;td &gt;Board of Higher Secondary Education&lt;/td&gt;
    &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;10&lt;/td&gt;
     &lt;td &gt;Indian Council of Secondary Education&lt;/td&gt;
  &lt;td&gt; India&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;11&lt;/td&gt;
     &lt;td &gt; All India Board for Education Training&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;12&lt;/td&gt;
     &lt;td &gt;All India Board for Secondary Education&lt;/td&gt;
     &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;  
     &lt;td&gt;13&lt;/td&gt;
     &lt;td &gt; Board of Adult Education &amp; Tarining&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;

     &lt;td&gt;14&lt;/td&gt;
     &lt;td &gt;Central Board of Higher Education&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
  &lt;td&gt;15&lt;/td&gt;
     &lt;td &gt;Jamia Urdu&lt;/td&gt;
     &lt;td&gt; Aligarh&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;16&lt;/td&gt;
     &lt;td &gt; Gurukul Vishvavidyalaya Vrindaban&lt;/td&gt;
  &lt;td&gt; Mathura&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
  &lt;td&gt;17&lt;/td&gt;
     &lt;td &gt; Council of Secondary Education&lt;/td&gt;
     &lt;td&gt; Mohali&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;18&lt;/td&gt;
      &lt;td &gt;Mahashakti Sanskrit Vidyapeeth&lt;/td&gt;
   &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;19&lt;/td&gt;
      &lt;td &gt;Council for the Indian Certificate Examination&lt;/td&gt;
   &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;20&lt;/td&gt;
      &lt;td &gt; Bhartiya Shiksha Parishad&lt;/td&gt;
   &lt;td&gt; Lucknow&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;21&lt;/td&gt;
      &lt;td &gt; Board of Secondary Sanskrit Education&lt;/td&gt;
      &lt;td&gt; Lucknow&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;22&lt;/td&gt;
      &lt;td &gt; Hindi Sahitya Sammelan&lt;/td&gt; 
   &lt;td&gt; Allahabad&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;23&lt;/td&gt;
      &lt;td &gt;Mumbai Hindi Vidyapeeth&lt;/td&gt;
   &lt;td&gt; Mumbai&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;24&lt;/td&gt;
      &lt;td &gt;The Central Board of Higher Education&lt;/td&gt;
   &lt;td&gt; New delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
      &lt;td&gt;25&lt;/td&gt;
      &lt;td &gt;Dr. Ramgopalacharya Sanskrit Mahavidalaya&lt;/td&gt;
   &lt;td&gt; Etah, U.P.&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;26&lt;/td&gt;
     &lt;td &gt;Board of Secondary Education Madhya Bharat&lt;/td&gt;
  &lt;td&gt;Gwalior&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;27&lt;/td&gt;
     &lt;td &gt;Council of Secondary Education Board&lt;/td&gt;
  &lt;td&gt; Mohali&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;28&lt;/td&gt;
     &lt;td &gt;Mahatma Gandhi Secondary and Senior Secondary Education Board&lt;/td&gt;
  &lt;td&gt;Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;29&lt;/td&gt;
     &lt;td &gt;Board of Secondary and Higher Secondary Open Education&lt;/td&gt;
  &lt;td&gt; West Bengal
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;30&lt;/td&gt;
     &lt;td &gt;Board of Youth Education&lt;/td&gt;
  &lt;td&gt;India&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;31&lt;/td&gt;
     &lt;td &gt;The Council of Basic and Technical Education&lt;/td&gt;
  &lt;td&gt;Ludhiana&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
  &lt;td&gt;32&lt;/td&gt;
     &lt;td &gt;Shiksha Parishad Madhyamic&lt;/td&gt;
  &lt;td&gt; Gwalior&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;33&lt;/td&gt;
     &lt;td &gt;Central Board of Education&lt;/td&gt;
  &lt;td&gt; Ajmer&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
  &lt;td&gt;34&lt;/td&gt;
     &lt;td &gt;Council of Higher Secondary Education&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;35&lt;/td&gt;
     &lt;td &gt;Board of Secondary Education Madhya Bharat&lt;/td&gt;
  &lt;td&gt; Gwalior&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;36&lt;/td&gt;
     &lt;td &gt;Delhi Board of Senior Secondary Education&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;37&lt;/td&gt;
     &lt;td &gt;Board of Technical and Secondary Education&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;38&lt;/td&gt;
     &lt;td &gt;Board of Youth Education in India&lt;/td&gt;  
     &lt;td&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;39&lt;/td&gt;
     &lt;td &gt;Mahatma Gandhi Secondary and Senior Secondary Education Board&lt;/td&gt;
  &lt;td&gt;Delhi   &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;40&lt;/td&gt;
     &lt;td &gt;Council of Higher Secondary Education &lt;/td&gt;
  &lt;td&gt;Delhi&lt;/td&gt;  
  &lt;/tr&gt;
&lt;tr&gt;
     &lt;td&gt;41&lt;/td&gt;
     &lt;td &gt;Indian Council Open School Certificate Examination&lt;/td&gt;
  &lt;td&gt; Maharashtra&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;42&lt;/td&gt;
     &lt;td &gt;Mahakoshal Board of Secondary Education&lt;/td&gt;
  &lt;td&gt; Jabalpur&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;43&lt;/td&gt;
     &lt;td &gt;  National Board of Higher Secondary Education&lt;/td&gt;
  &lt;td&gt; Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;44&lt;/td&gt;
     &lt;td &gt;Board of Higher Secondary Open Education&lt;/td&gt;
  &lt;td&gt;Delhi&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;45&lt;/td&gt;
     &lt;td &gt; Board of School and Technical Education&lt;/td&gt;
  &lt;td&gt; Chhatisgarh&lt;/td&gt;  
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;46&lt;/td&gt;
     &lt;td &gt;Board of Senior Secondary Education&lt;/td&gt;   
  &lt;td&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
     &lt;td&gt;47&lt;/td&gt;
     &lt;td &gt;Delhi Board of Senior Secondary Education&lt;/td&gt;  
  &lt;td&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;
&lt;/br&gt;
  &lt;span class=&#39;source&#39;&gt;&lt;b&gt;Source:&lt;/b&gt; &lt;a href=&#39;www.nios.ac.in&#39;&gt;nios&lt;/a&gt;&lt;/span&gt;
&lt;/body&gt;
&lt;/html&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/1663037869494609889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2015/12/fake-indian-school-board-universities.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/1663037869494609889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/1663037869494609889'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2015/12/fake-indian-school-board-universities.html' title='Non‐Recognised Boards/Universities In India By NIOS'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-344781033912727095</id><published>2015-11-27T05:28:00.000-08:00</published><updated>2015-11-27T15:04:27.025-08:00</updated><title type='text'>Chemical Reactions (Ch 1)</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=93861191937814293#C1&quot;&gt;&lt;b&gt;Important Terms&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=93861191937814293#C2&quot;&gt;&lt;b&gt;Important Questions solved (CBSE)&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h2 id=&quot;C1&quot;&gt;
&lt;b&gt;Important Terms&lt;/b&gt;&lt;/h2&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Chemical reaction&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
Reactants reacts to form products&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Chemical equation&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
A chemical equation represents a chemical reaction with their respective chemical formulas.&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Skeletal&amp;nbsp;Chemical Equation&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
A simple chemical equation which represents symbols of compounds or elements of reactants and products taking part in a chemical reaction&lt;br /&gt;
&lt;br /&gt;


&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Balanced Chemical Equation&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
A Balanced Chemical Equation is the one in which the total number of atoms of each elements of the reactants is equal to the&amp;nbsp;total number of atoms&amp;nbsp;of reacted products&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Representation of symbols of various physical states&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
Solids &amp;nbsp;(s)&lt;br /&gt;
Liquid &amp;nbsp;(l)&lt;br /&gt;
Gases &amp;nbsp;(g)&lt;br /&gt;
Aqueous (aq) {&lt;span style=&quot;color: #660000;&quot;&gt;&lt;b&gt;NOTE&lt;/b&gt;&lt;/span&gt;: Aqueous is not same as liquid}&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
Writing Chemical Equations&amp;nbsp;&lt;/h3&gt;
1. In a chemical reaction, the reactants are written on the left hand side and the products on the right hand side of the equation.&lt;br /&gt;
&lt;br /&gt;
2. An arrow (→) pointing towards the products is inserted between the reactants and the products. It also represents the direction of the reaction.&lt;br /&gt;
&lt;br /&gt;
3. A single arrow (→) indicates the direction in which the reaction proceeds.&lt;br /&gt;
&lt;br /&gt;
4. A double arrow ( ) indicates a reversible reaction, i.e. the products recombine to form the reactants.&lt;br /&gt;
&lt;br /&gt;
5. A plus sign (+) is inserted between two or more reactants or products formed.&lt;br /&gt;
&lt;br /&gt;
6. If reactions are carried out under specific conditions of temperature, pressure, catalyst etc., then these conditions are mentioned on the arrow.&lt;br /&gt;
&lt;br /&gt;
7. The chemical equation can be made more informative by mentioning the physical states of the reactants and products.&lt;br /&gt;
&lt;br /&gt;
8. If gas is liberated as a product then it is represented by an arrow pointing upwards (↑). If the product formed is in the form of a precipitate, it is represented by an arrow pointing downwards (↓). Balancing the Chemical Equations&lt;br /&gt;
&lt;br /&gt;
9. In a balanced chemical equation, the total number of atoms of each element of the reactants on the left hand side of the equation is equal to the number of atoms of the products formed on the right hand side of the equation.&lt;br /&gt;
&lt;br /&gt;
10. The total mass of the reactants is equal to the total mass of the products or the number of atoms of each element before the reaction and after the reaction is equal.&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Types Of &amp;nbsp;Reaction&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;b style=&quot;background-color: white;&quot;&gt;Combination Reaction&lt;/b&gt;&lt;br /&gt;
When two or more substances combine to form a single product, the reaction is known as a combination&lt;br /&gt;
reaction.&lt;br /&gt;
For example:&lt;br /&gt;
In the laboratory, iron sulphide is prepared by mixing iron and sulphur.&lt;br /&gt;
Fe(s) + S(s)  FeS(s)&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: &amp;quot;arial&amp;quot; , sans-serif; font-size: 18px; white-space: nowrap;&quot;&gt;⇒&amp;nbsp;&lt;/span&gt;&lt;b&gt;Endothermic Reaction&lt;/b&gt;: The reactions accompanied by the absorption of heat are called&lt;br /&gt;
endothermic reactions.&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: &amp;quot;arial&amp;quot; , sans-serif; font-size: 18px; white-space: nowrap;&quot;&gt;⇒&amp;nbsp;&lt;/span&gt;&lt;b&gt;Exothermic Reaction&lt;/b&gt;:&lt;br /&gt;
The reactions accompanied by the evolution of heat are called endothermic&lt;br /&gt;
reactions.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Decomposition Reaction&lt;/b&gt;&lt;br /&gt;
A chemical reaction in which a single compound splits into two or more simple substances is called a&lt;br /&gt;
decomposition reaction.&lt;br /&gt;
For example:&lt;br /&gt;
When mercuric oxide is heated in a crucible, the orange-red powder begins to darken and a silver mirror&lt;br /&gt;
begins to deposit on the cooler parts of the crucible.&lt;br /&gt;
&lt;span style=&quot;color: #660000;&quot;&gt;2HgO(s) &amp;nbsp; → &amp;nbsp; &amp;nbsp;2Hg(s) + O2 ↑&lt;/span&gt;&lt;br /&gt;
Mercuric oxide Mercury Oxygen&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Displacement Reaction&lt;/b&gt;&lt;br /&gt;
Reactions in which the more reactive element displaces the less reactive element from its compound are called displacement reactions.&lt;br /&gt;
For example:&lt;br /&gt;
Zinc displaces copper in copper sulphate to form zinc sulphate.&lt;br /&gt;
Zn(s) + CuSO4 (aq)&amp;nbsp;→&amp;nbsp;ZnSO4 (aq) + Cu(s)&lt;br /&gt;
Zinc Copper sulphate &amp;nbsp;Zinc sulphate Copper&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Double Displacement Reaction&lt;/b&gt;&lt;br /&gt;
Reactions in which ions of the reactants exchange places to form two new compounds, are called double displacement reactions.&lt;br /&gt;
For example:&lt;br /&gt;
Sodium hydroxide reacts with hydrochloric acid to form sodium chloride and water.&lt;br /&gt;
NaOH(aq) + HCl(aq) → NaCl(aq) + H2O(l)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Redox Reaction&lt;/b&gt;&lt;br /&gt;
The chemical reaction in which oxidation and reduction takes place simultaneously is known as a redox reaction.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Oxidation Reactions&lt;/b&gt;&lt;br /&gt;
Reactions which involve the addition of oxygen or the removal of hydrogen are called oxidation reactions.&lt;br /&gt;
For example:&lt;br /&gt;
C(s) + 2H2 (g)  CH4 (g)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Reduction Reactions&lt;/b&gt;&lt;br /&gt;
Chemical reactions in which the reactants gain hydrogen are reduction reactions.&lt;br /&gt;
For example:&lt;br /&gt;
&amp;nbsp;Fe2O3 + 3CO 2Fe + 3CO2↑&lt;br /&gt;
Ferric oxide Carbon monoxide Iron Carbon dioxide&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Corrosion&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
The slow process of decay and destruction of metals due to the action of air, moisture or acids is called corrosion.&lt;br /&gt;
For example:&lt;br /&gt;
Iron combines with oxygen present in the air, in the presence of water, to form a red-brown flaky&lt;br /&gt;
substance called rust. This process is commonly called the rusting of iron.&lt;br /&gt;
The chemical formula of rust is Fe2O3. x H2O.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Prevention of Corrosion&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Corrosion damages buildings, bridges, ships, automobiles and other articles made of iron. Hence,&lt;br /&gt;
prevention of corrosion is necessary. This will not only save money but can also prevent the&lt;br /&gt;
occurrence of accidents.&lt;br /&gt;
&lt;br /&gt;
It can be prevented by processes like galvanising and electroplating with other metals.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Rancidity&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
Oils and fats react with oxygen and get oxidised or turn rancid. This process is called rancidity.&lt;br /&gt;
Rancidity can be prevented by keeping food in air tight containers or by using antioxidants.&lt;br /&gt;
Antioxidants are used to prevent oxidation of food containing fats and oils.&lt;br /&gt;
Storage of food in air tight containers also decelerates oxidation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2 id=&quot;C2&quot;&gt;
&lt;b&gt;Important Questions (CBSE)&lt;/b&gt;&lt;/h2&gt;
Important questions will be published here soon.

&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/344781033912727095/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2015/11/chemicalreaction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/344781033912727095'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/344781033912727095'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2015/11/chemicalreaction.html' title='Chemical Reactions (Ch 1)'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-648850755574970988</id><published>2015-01-01T03:04:00.000-08:00</published><updated>2015-11-18T20:31:35.351-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="10th boards"/><category scheme="http://www.blogger.com/atom/ns#" term="Streams"/><title type='text'>Which Stream To Choose After 10th In 2015 | Science, Commerce, Arts or any Other?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;color: #cc0000;&quot;&gt;&lt;b&gt;Note&lt;/b&gt;&lt;/span&gt;:&lt;br /&gt;
&lt;span style=&quot;background-color: #fff2cc;&quot;&gt;&lt;i&gt;&lt;b&gt;Students are breaking the rule nowadays and also going for some diploma courses. These courses are proved to be job guaranteed and are packed with handsome salary. On the other hand, the unemployment of number of graduates and post grads is huge.&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
10th standard is the starting and the most crucial point in the life of a student. After 10th a student’s life goes for a big change.&amp;nbsp; It is now that he takes up subjects of his choice and puts focused efforts for better career prospects in future. This is a time when most of the students get confused too much and takes a decision which he starts to dislike later. Students often find it difficult to decide which path they should choose and go. The question which stands in front of students are:&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;What actually a Stream is?&lt;/li&gt;
&lt;li&gt;Which stream should I choose after 10th?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Do I need to take competitive coaching After 10th&amp;nbsp; ? Is this the right time or its little bit earlier? &amp;nbsp;&amp;nbsp; &lt;/li&gt;
&lt;li&gt;Should I
 take state board or CBSE board or ICSE after 10th?&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Is Private Schools are better or should I go for government school?&amp;nbsp; &lt;/li&gt;
&lt;li&gt;Should I go for diploma 
or other courses or complete schooling After 10th?&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Choosing a career in a particular stream or profession right at this point of time has a long lasting impact on a student&#39;s future. It is very important for any student to choose carefully from various options available to him/her in which he/she is interested. In order to achieve success, one has to select the path which they like to walk on. Good judgment and right kind of aptitude when coupled with guidance in the right direction to pick up a definite stream helps one in choosing the right career option.&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
So from the very beginning a student should be careful in making choice of their stream.
&lt;br /&gt;
As soon as a student reaches 10th standard, some kind of pressure of choosing a career path linger in their mind. Because by then they are at the edge of completing their school life and it is peak time to choose ones career path than ever before.&lt;/div&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPqtepPnW7WMcUA40qaGdV14MUXYRxWmuPkqSPrbT22zuw3WJpcc3cWhlhIVJPNLLM-BBlTo8qhCe_fP_1sO_6bqoYoPvT_ror7RwvLigtMhu3zVKgA_DcJefT7F7xZ-8nbdmk_MB0CGD3/s1600/images+%2817%29.jpg&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPqtepPnW7WMcUA40qaGdV14MUXYRxWmuPkqSPrbT22zuw3WJpcc3cWhlhIVJPNLLM-BBlTo8qhCe_fP_1sO_6bqoYoPvT_ror7RwvLigtMhu3zVKgA_DcJefT7F7xZ-8nbdmk_MB0CGD3/s1600/images+(17).jpg&quot; /&gt;&lt;/a&gt;

&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Most people can say that 10th boards are not as important as 12th (Intermediate) in the career&#39;s point of view. But they&#39;re absolutely wrong. It can be easily seen that from the last couple of years, there are companies coming at school from both Private Sectors and from Government as well for &lt;i&gt;&lt;b&gt;Career Counseling&lt;/b&gt;&lt;/i&gt;.&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Career Counseling helps a student to know the job opportunities, possible Income and the possibilities in different type of jobs.&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
In India, there are a few main streams which are available for a student to choose from. We are not considering here various vocational courses which are designed to provide early employment options to various students.&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Once a child pass Class 10th, there are &lt;b&gt;&lt;i&gt;3 options&lt;/i&gt;&lt;/b&gt; in the form of streams in front of him/her. They are as follow :-
&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;span style=&quot;background-color: white; border: 0px; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 14px; line-height: 25px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;Science Stream&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;span style=&quot;background-color: white; border: 0px; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 14px; line-height: 25px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;
Commerce Stream&lt;/span&gt;
&lt;/h3&gt;
&lt;h3&gt;
&lt;span style=&quot;background-color: white; border: 0px; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 14px; line-height: 25px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;Arts Stream&lt;/span&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; border: 0px; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 15px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;/span&gt;
&lt;br /&gt;
&lt;h2 style=&quot;font-size: 18px;&quot;&gt;
&lt;span style=&quot;background-color: white; border: 0px; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 15px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;THE BEST TIME TO DECIDE AN CAREER OPTION&lt;/span&gt;&lt;/h2&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
The best time to explore career options is the time when one completes his or her high school days. In India, the board examination is the most important time for a student. It is the juncture of taking a right decision on what to choose from the available options.&lt;/div&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;
&lt;h3&gt;
Commerce Stream&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
This is the most popular stream among students of today&#39;s generation. Commerce stream can be illustrated as study of trade and business. The stream has been increasingly chosen by large chunk of students after completion of Class 10th standard due its attractiveness in terms of finding early employment and also beginning of entrepreneurship.
&lt;br /&gt;
In the present time, most of the students have a cherished longing to read in this stream, because they feel this stream provides ample arena of career options to pursue after 12th standard. But in order to make a successful career in Commerce stream one needs to have certain knack in this field of study such as good amount of liking towards numbers and arithmetic.
&lt;br /&gt;
The Commerce stream after completion of Class 10 is quite a popular one in India, as most students feel that the stream offers them a wide arena of career options to pursue after class 12, that would bring them both success as well as financial security easily.
&lt;br /&gt;
While pursuing a course in the field of commerce, one acquires the knowledge of business or trade, nature and fluctuations in market, basics of economics, fiscal policies, industrial policies etc.
&lt;br /&gt;
The concept of commerce consists of a wide range of interdisciplinary branches including Accountancy, Business Administration, E-Commerce, Finance, Economics and Marketing. Since the Indian economy is one of the fastest growing economies among the third world countries, the need for talented professionals, who can contribute towards the growth of the economy, is increasing.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;&lt;b&gt;&lt;i&gt;For&lt;/i&gt;&lt;/b&gt; &lt;b&gt;&lt;i&gt;any queries students can call&lt;/i&gt;&lt;/b&gt;&amp;nbsp;&lt;i&gt;&lt;b&gt;Class X Helpline&amp;nbsp;at&amp;nbsp;011-40360360&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
The major subjects that are covered under the Commerce stream are:&lt;/div&gt;
&lt;ul style=&quot;line-height: normal; text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Accountancy&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Economics&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Business Studies&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Economics&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Mathematics&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Informatics Practices&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;English&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
Career in commerce are like&lt;/h4&gt;
&lt;/div&gt;
&lt;ul style=&quot;line-height: normal; text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;BBA&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;B.Com&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;CA&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Management&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Civil services examinations like IAS,IPS,IES&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Bank exams, etc.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;
&lt;h4&gt;
Science Stream&lt;/h4&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Science stream offers very respective and highest career options to students after 12th standard. It opens up the career options majorly in Engineering and Medical sciences.
&lt;br /&gt;
The main subjects that are offered in the Science stream are &lt;b&gt;&lt;i&gt;Physics&lt;/i&gt;&lt;/b&gt;, &lt;b&gt;&lt;i&gt;Chemistry&lt;/i&gt;&lt;/b&gt;, &lt;b&gt;&lt;i&gt;Biology&lt;/i&gt;&lt;/b&gt;, &lt;b&gt;&lt;i&gt;English&lt;/i&gt;&lt;/b&gt;, &lt;b&gt;&lt;i&gt;Mathematics&lt;/i&gt;&lt;/b&gt;, &lt;b&gt;&lt;i&gt;Biotechnology&lt;/i&gt;&lt;/b&gt;, and &lt;b&gt;&lt;i&gt;Computer Science&lt;/i&gt;&lt;/b&gt;.&lt;/div&gt;
&lt;br /&gt;
For anyone who wants to study &lt;b&gt;&lt;i&gt;Engineering&lt;/i&gt; &lt;/b&gt;has to study Physics, Chemistry and Mathematics and those who want to study &lt;i&gt;&lt;b&gt;Medical sciences&lt;/b&gt;&lt;/i&gt; has to choose Biology as a main subject. A student has to take at least six subjects including English.
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h2&gt;
Career in sciences are like&lt;/h2&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Geology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Meteorology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Oceanography&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Biological Scientists and Biotechnology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Genetic Scientists&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Biochemistry&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;biotechnology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Anthropology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Food Technology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Horticulture&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Forestry&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Medical&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Environmental Science&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Oceanography&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Biological Scientists and Biotechnology,etc.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; text-shadow: gray 1px 2px 3px;&quot;&gt;
&lt;h3&gt;
Arts/Humanities Stream&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Deals with a very wide range of courses such as History, Geography, Political Science, Psychology, Sociology, languages, Anthropology, Human Resources, journalism etc. 
&lt;br /&gt;
The major subjects that are covered under the Arts stream are:&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Geography&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Political Science&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Psychology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Sociology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;English&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Sanskrit&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;History&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
Career in Arts&lt;/h4&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;designers&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;fashion technology&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;textile designers&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;accessory,jewelry,interior and exterior designers,&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;fine arts&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;cartoonist&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;photography&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;print journalism&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;mass communication&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;film making&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;advertising&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;public relations&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
You have to decide which streams better for you and what are your skills, so first of all select that what you have to do in future and according to them select your stream&lt;/div&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
MATHEMATICS :&lt;/h4&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;It is the largest stream generally selected by more number of students.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;It provides you with various career options.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;If you want to become an engineer then you can easily take up this stream and achieve your goal.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;If you are interested in pure mathematics then you can go for b.s.c mathematics and pursue your career.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
SCIENCE :&lt;/h4&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Science includes physics,chemistry,biology.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Physics and Chemistry are common subjects for both mathematics and biology.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Biology is the life science subject it also provides you with lot of career options.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;If you desire to become a doctor then definitely it is the best stream.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;It also provides you with many career opportunities in science field like pharmacy,agricultural science e.t.c.
&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
COMMERCE :&lt;/h4&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Now-a-days it has got a good demand in the field of education.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;If you take up commerce the main option is you can go for charted accountancy which is the best career option.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Other than CA you can also go for BBA also.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;These were the main streams now you should decide in which stream are you more interested.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
Role of a Student&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
The role of a student in choosing a career path is very important as it is him or her who has to continue their journey in their chosen path. Though there are no definite tools which can accurately determine what career one should choose yet a few simple steps can help one to make a decision in the right direction.&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;The interest should be evaluated with skills necessary to pursue them in the longer term. A detailed strength-weakness analysis can complement to sort out the top rated career options. There should be enough aptitude to make a successful career.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;One should explore or test the chosen option. One should act in the best possible practical way to find out what really excites him or her&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Attending career guidance seminars, educational fairs etc can also help a student in knowing the latest development in the outside world apart from the bookish knowledge. Once a student zeros on a particular option they should focus towards their destination with strong fortitude and utmost dedication. They should have a persistent focus towards his or her goal and can seek the help of their teachers, parents and elders.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;The role of a student in choosing a career path is very important as it is him or her who has to continue their journey in their chosen path. Though there are no definite tools which can accurately determine what career one should choose yet a few simple steps can help one to make a decision in the right direction.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;One should jolt down the subjects of interests. The interest should be evaluated with skills necessary to pursue them in the longer term. A detailed strength-weakness analysis can complement to sort out the top rated career options. There should be enough aptitude to make a successful career&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;One should consider external factors such as personal responsibilities and their priorities, financial strength to pursue the option and flexibilities in changing the path if in times of uncertainties one can change the career option with minimum obstacles.&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
Role of parents in choosing right career path for their children&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Parents have a vital role in building a bright career for their children. Parents should facilitate in exploration of the right career option for their children. However, they should not insist their children to pursue a career of their choice. They can help their children by giving advises of successful people and their career growth and supportive instructions&lt;br /&gt;
But they should be unprejudiced to allow their offspring to follow their own dream. If parents try to compel their children to select a stream according to their choice on which their children may not have interest, the result may sometimes be disastrous. So students should always be given preference for their choice and at the same time it should be complemented by advises of the parents. Valuable advises and good wishes of parents help children to forward their step in new path of life.&lt;/div&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
Agencies responsible in choosing the right career options for a student&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Due to existence of variety of options coupled with cut throat competition in the professional filed makes one confused as to what to pick up as career options. There are mainly three agencies which are largely responsible for a student’s choosing a career path. These are namely the student himself, parents, teachers and career counselors. Among all parents play the most vital role as they understand the real strength of their children and hence can guide suitably.&lt;/div&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
Subjects which are offered in Commerce stream&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
There are many degree and diploma courses which encompasses the Commerce stream. Some of the key subjects which are taught in the commerce stream are as below:

&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Economics&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Accountancy&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;color: #741b47; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;Business studies and business law&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;Some of the popular graduate courses offered through the commerce stream are B.Com, BBA, BMS, BBM, CFA, CA, ICWA, CFP etc. Mostly major commerce colleges offer subjects such as Business economics, financial accounting, Business communication, Marketing, Business law, Business finance, Auditing, Cost accounting, Income tax from which students has to choose their subject of interest. A student has to take total six subjects along with English and one additional subject.&lt;/span&gt;&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;h3 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;/h3&gt;
&lt;h3 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;
Some important tests for Commerce pursuer after passing 10th standard examination&lt;/span&gt;&lt;/h3&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;There are some competitive examinations which can be appeared by a student after passing 10th examination which are mentioned below.&lt;/span&gt;&lt;br /&gt;
&lt;ol style=&quot;background-color: white; line-height: 21px;&quot;&gt;
&lt;li style=&quot;margin-left: 15px;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;C.S Foundation course&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;
&lt;li style=&quot;margin-left: 15px;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;C.A Foundation course&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;
&lt;li style=&quot;margin-left: 15px;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;ICWA Foundation course&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;
&lt;li style=&quot;margin-left: 15px;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Business Studies&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;/h2&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;
Bright career option for a Commerce stream pursuers&lt;/span&gt;&lt;/h2&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;There is a sea of options in Commerce stream to make a bright career. If a student likes to choose the most widely chosen option, he/she can pursue Bachelor of commerce degree (B. Com) with specialization in any one subject. After completion of graduation one can opt for post graduation (M. com). One can also opt for Ph.D degree on their respective subject which can help in getting a respectable profession such as teaching, research scholar and also in the banking sector.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;There are other professional courses which are highly favored in the current day situation. Some of them are as follows:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Chartered accountancy (CA)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;is one of the most popular choices of a student. The main duty of a chartered accountant is auditing company’s books, stock brokers and income tax assesses. A student who has avid desire to become a chartered accountant should try to join a CA course either after the 10+2 board examination by registering for the Professional Education (PE)-I course (a 10-month course) or after graduating (with the specified percentage) by registering for the PE II course (also 10-months long).&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Mater of Business Administration (MBA)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;is another popular choice among the students. Through the course Students learn how to manage a business professionally and can opt for a degree or diploma in management. The duration of a regular MBA course is 2 years and an Executive MBA course is of 1 year. One can complete their MBA through correspondence also.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Chartered financial analyst (CFA)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;is another exiting course for Commerce pursuer students. The chief responsibility of a chartered financial analyst is to manage in the areas of financial accounting, management accounting, financial management, investment management, security evaluation, project planning, venture capital management and credit rating. The duration of the course is 3-years after post graduation degree.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Company secretary (CS)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;is other interesting career which a person has certain liability for ensuring the company meets its statutory obligations. Student can apply for a company secretary course after passing (10+2) examination.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;Cost accountant course can take a student who passes the Senior Secondary Examination (under the 10+2 scheme) of a recognized board.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;Commerce stream is very useful to one’s career prospects as it encompasses financial markets, economics to the latest management practices. Studying commerce can provide the proficiency and knowledge to even starting one’s own venture.&lt;/span&gt;&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;/h2&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;
Career options for a Science stream pursuer&lt;/span&gt;&lt;/h2&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Students opting for Engineering and Medical streams have to qualify entrance examinations conducted by recognized bodies. A few well known entrance test for students opting for the top notch engineering colleges and IITs are AIEEE and ITT-JEE. For others, who opt for Medical / Medicine stream has to qualify entrance exams like NEET ( National Eligibility cum Entrance Test ), AIPMT ( All India Pre Medical Test ), AIIMS ( All India Institute of Medical Sciences ), AFMC ( Armed Forces Medical College ), JIPMER ( Jawaharlal Nehru Post Medical Education and Research ) etc. Before enrollment to the course a s tudent must be comprehensible why he wants to pursue that career, how he will be successful in that career, find out the institutes of related courses, try to gather knowledge about the career options and last test his/her aptitude to appear in the Entrance Exams.&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;A student can pursue Bachelor of Science degree (B.Sc) taking any science subject as the major subject. Numerous colleges offer specialization in major subjects like as Chemistry, Mathematics, Zoology, Botany, Geology, Physics etc. One can go further and opt for Masters degree (M.Sc) also in their selected subjects after completion of graduation. For further education a student can do Ph.D degree on their particular subjects. Some alluring job option after doing B. Sc or M.Sc are teaching in schools and colleges, Professors (college/university), Scientist, Geologist, Chemists, Mathematician, physicists etc. A science graduate also can apply for UPSC exams, IAS, Banking, insurance exams and gets good jobs&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Various courses available for students opting for Medical Sciences are MBBS, BDS, BVS, B. Pharm, D Pharm and Nursing.
&lt;u style=&quot;background-color: white;&quot;&gt;M.B.B.S (Bachelor of Medicine and Bachelor of Surgery)&lt;/u&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp;offers courses on Human anatomy. The duration of the course is approximately 5 ½ years which includes one year of internship. Students can opt for Post Graduate specialization in different subjects such as Cardiology, Anesthesiology, Surgery, Dermatology, ENT, Gynecology, Neuro Sciences, Opthamology, Orthopedics and Paediatrics.&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;B.D.S (Bachelor in Dental Sciences)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;offers courses in Dental Surgery and duration of the course is 5 years with Internship. After completion of B.D.S one can do the Post Graduation (P.G) in Dental Sciences.&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white;&quot;&gt;B.V.S (Bachelor in Veterinary Sciences)&lt;/u&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp;encompasses courses of the Animal disease, prevention and surgery cases. This course takes 4 1/2 years time with a practical Internship. One can do P.G studies in different specializations after completion of B. V. S course.&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Bachelor of Pharmacy (B. Pharm)&amp;nbsp;is also an attractive career prospect one can pursue. It takes is 4 years to complete the course. After completion of the course one can start alluring career in departments such as Drugs Research or Production in various Pharmaceutical Industries. If anyone yearns to do Post Graduation (M.Pharmacy) they can chose specialization in subjects such as&amp;nbsp;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;a. Pharmacology&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;b. Pharmaceutics&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;c. Pharmaceutical Analysis&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;d. Pharmaceutical Chemistry&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;e. Pharm D&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Diploma course in Pharmacy (D.Pharmacy)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;offers a 2 years duration course after which one can start practicing as a Pharmacist in various Medicinal Institutions. One can also opt for further studies such as B.Pharmacy and later M.Pharmacy.&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Bachelor in Nursing (B.Sc Nursing)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;is a 4 year course which covers topics such as healthcare, medicine dispensing and caring of ailing patients.&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;There are various other courses which students can choose which are indirectly related to Medical / Medicine courses. These are Biotechnology, Bioinformatics, and Bachelor in Physiotherapy, Bachelor in Homeopathic Medicinal Sciences, Bachelor in Homeopathic Medicinal Sciences and Bachelor in Ayurveda Medicinal Sciences.
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;Biotechnology&lt;/u&gt;&amp;nbsp;describes is a series of enabling technologies involving manipulation of living organisms or their sub cellular components to provide useful products, processes or services for the betterment of mankind. This is 4 year course.
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Bioinformatics&amp;nbsp;is a relatively new concept which is related to storage, retrieval and analysis of biological data for drug discovery and drug design. It integrates information technology for processing biological information such as nucleic acid (DNA/RNA), protein sequence and structure. The duration of the course is 4 years or else can also go for B.Sc Bioinformatics where the course duration is 3 years.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;B.P.T (Bachelor in Physiotherapy&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;basically studies how to restore the functioning of the body which is affected by due to illness like paralysis, injury, shock. The basic duration of the course is 3 years.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;B.H.M.S ( Bachelor in Homeopathic Medicinal Sciences&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;offers courses how to increase the self healing power of our body by using medicine which are derived from natural and herbal sources. The duration of the course is 5 1/2 year.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;u style=&quot;background-color: white; line-height: 21px;&quot;&gt;B.A.M.S (Bachelor in Ayurveda Medicinal Sciences)&lt;/u&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&amp;nbsp;covers courses how to restore the balance of our body without side effects. Main focus of the courses are to regain balance of liver disorders, rheumatic and chronic conditions. The duration of the course is only 3 years.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;h3 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;Engineering as a career option&lt;/span&gt;&lt;/h3&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Engineering has a wide arena of career option. If anyone has an avid desire to pursue his/her career in engineering then they have to pass out 10+2 exam with Physics, Chemistry and Mathematics and with minimum qualifying marks. There are numerous government and non-government institutes in India which offers courses in various branches of Engineering. Among various colleges, Indian Institute of Technologies (IITs) are the most favored ones among the prospective students. The seven IITs are viz, Bombay, Delhi, Guwahati, Kanpur, Kharagpur, Madras and Roorkee. Apart from these there are 20 National Institute of Technologies (NITs), couple of IIITs and several private institutes in India which are able to offer a grand platform for making a good career.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;Different branches of engineering which boasts great potential for a blooming career in the engineering field are&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&lt;i&gt;Agricultural Engineering, Aeronautical Engineering, Architecture, Automobile Engineering, Biomedical Engineering, Biotechnology, Ceramic Technology, Chemical Engineering, Civil Engineering, Computer Engineering, Environmental Engineering, Electrical Engineering, Electronics Engineering, Genetic Engineering, Industrial &amp;amp; Production Engineering, Instrumentation Engineering, Marine Engineering, Mechanical Engineering, Metallurgical Engineering, Mining Engineering, Petroleum Engineering, Plastic Technology, Polymer Engineering, Rubber Technology, Space Technology, Textile Industry&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;etc.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;/h2&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: small;&quot;&gt;
Career options for Arts stream students&lt;/span&gt;&lt;/h2&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;br style=&quot;background-color: white; line-height: 21px;&quot; /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;After passing the higher secondary level examination a student can pursue Bachelor of Arts degree (BA) taking a special subject as the major subject.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;Arts stream has a wide variety of subjects which can offer exciting opportunities. Selection of Arts stream after 10th examination enables to pave the way for choosing some other gripping careers.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;This stream offers subject History, Geography, Political Science, Psychology, Sociology, English, Hindi and Sanskrit for the higher secondary level. But one has to opt for four compulsory subjects in addition to English and a Modern Indian Language.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; line-height: 21px;&quot;&gt;&amp;nbsp;If anyone has avid interest to pursue career in mass media, journalism, literature, sociology, social service, human psychology, politics, economics and history then they must be choose Arts stream after passing 10th examination.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Some important major subjects which are offered by various colleges are history, languages, literature, law, philosophy, religion, performing arts, anthropology, communication, sociology, psychology and many more. After getting the graduation degree a student can do masters degree (MA) in their selected subjects. For further high qualification one can opt for&amp;nbsp;Ph. D&amp;nbsp;degree in their respective subject. I have given some of the attractive career option for Arts stream pursuer. These are as&lt;/span&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&lt;b&gt;Psychologist, Counselor, Economist, Market analyst, Sociologist, Social Worker, Historian, Anthropologist, Human Resources, Personal Executive, Writer/journalist/Editor, lawyer, Media Personnel, School Teacher/College Professor/university &lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&lt;b&gt;Professor&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;etc.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 21px;&quot;&gt;Apart from these an Arts graduate student can apply for UPSC exams, IAS, Banking, insurance exams and gets good jobs.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;hr color=&quot;green&quot; width=&quot;100%&quot; /&gt;
&lt;h2 style=&quot;background-color: white; line-height: 21px; margin: 2px 2px 2px 1px;&quot;&gt;
&lt;/h2&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Hope these details was helpful to you. Keep visiting for more updates.
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;Choosing a career in a particular stream or profession right at the beginning has a long lasting impact on a student’s future. It is very important for any student to choose carefully from various options available to him or her vis a vis his or her interest. In order to achieve success, one has to select the path which they like to walk on.&amp;nbsp;&lt;b style=&quot;background-color: white; line-height: 21px;&quot;&gt;Good judgment&lt;/b&gt; and right kind of aptitude coupled with guidance in the right direction to pick up a definite stream helps one in choosing the right career option. So from the very beginning a student should be careful in making choice of their stream. As soon as a student reaches 10th standard, some kind of pressure of choosing a career path linger in their mind. Because by then they are at the edge of completing their school life and it is peak time to choose ones career path than ever before.&lt;/span&gt;


&lt;b&gt;Like This Post | Then also like our FB FanPage and Get Latest Education Updates&lt;/b&gt;
&lt;img rel=&quot;external nofollow&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhavq-VTBCLDgOaes8lIeoc27KabqCJaSVdFbc1qVc7YTbiFxwpeCASfdx84MynJIuU-Fzh-gVVsfpneaq_vA-hoRq86ZZWN5rOtQbm3qXXnKd17bDSw2KZd1b10RHYBQ16RATWWeWR-Jg/s1600/123.gif&quot; /&gt;
&lt;iframe allowtransparency=&quot;true&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FEduonline-24%2F428476753855062&amp;amp;width=550&amp;amp;height=208&amp;amp;colorscheme=light&amp;amp;show_faces=true&amp;amp;border_color&amp;amp;stream=false&amp;amp;header=false&quot; style=&quot;border: none; height: 258px; margin-bottom: -30px; overflow: hidden; width: 288px;&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/648850755574970988/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/streams-after-10th-Standard-2013.html#comment-form' title='58 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/648850755574970988'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/648850755574970988'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/streams-after-10th-Standard-2013.html' title='Which Stream To Choose After 10th In 2015 | Science, Commerce, Arts or any Other?'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPqtepPnW7WMcUA40qaGdV14MUXYRxWmuPkqSPrbT22zuw3WJpcc3cWhlhIVJPNLLM-BBlTo8qhCe_fP_1sO_6bqoYoPvT_ror7RwvLigtMhu3zVKgA_DcJefT7F7xZ-8nbdmk_MB0CGD3/s72-c/images+(17).jpg" height="72" width="72"/><thr:total>58</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-655115829734529622</id><published>2015-01-01T01:32:00.000-08:00</published><updated>2016-08-03T19:25:45.890-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cbse improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="Class 10th"/><category scheme="http://www.blogger.com/atom/ns#" term="Improvement Exam"/><title type='text'>CBSE 10th Improvement Exam Rules and Regulation (EIOP) 2014-2015</title><content type='html'>&lt;h3 style=&quot;color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica; font-size: 16px; margin: 0px; padding: 0px; text-align: center;&quot;&gt;
Improvement of Performance (IOP)&lt;/h3&gt;
&lt;br /&gt;

&lt;span style=&quot;background-color: #e8e8e8; color: red; font-family: Tahoma, Arial, Helvetica; font-size: 17px&quot;&gt;&lt;b&gt;Update&lt;/b&gt;&lt;/span&gt;

&lt;br /&gt;

&lt;img style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em&quot; alt=&quot;10th improvement&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNI3LziIGZVOXNiNUYXlPuoVnmYuY_th-DL2MFyH9ghfOEubdjasaas_U2_DX6oQvcTxE5J8Da7w63THPYFmQ8CPSsVmrINLo9K2leqScLSnPlbcpJPSaRuzes_wDYmVFQLxHErcx7DS8B/s268/10TH+IMPROVEMENT.jpg&quot; title=&quot;CBSE 10th Improvement Exam Rules and Regulation | 2013-2014&quot;&gt;&lt;/a&gt;

&lt;span style=&quot;background-color: #f8f8f8; color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;With an objective to provide a chance to students who could not score up to their expectations or having compartment in the Class 10 board examination, the Central Board of Secondary Education (CBSE) is all set to hold an Improvement of Performance Examination from July 16-23.&lt;/span&gt;



&lt;div style=&quot;background-color: #f8f8f8; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 19px; text-align: justify;&quot;&gt;The results of the Class 10 board were declared by the CBSE on May 30.&lt;/div&gt;
&lt;br /&gt;

&lt;span style=&quot;color: black; font-family: Tahoma, Arial, Helvetica; font-size: 15px; line-height: 19px; text-align: justify&quot;&gt;&lt;b&gt;EIOP&lt;/b&gt; stands for &lt;b&gt;Eligible for Improvement Of Performance&lt;/b&gt;.&lt;/span&gt;

&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 19px; text-align: justify&quot;&gt;The Central Board of Secondary Education (CBSE) has discontinued the practice of declaring ‘Compartment’or ‘Fail’.&lt;/span&gt;&lt;/div&gt;



&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify&quot;&gt;Further, it has also been informed that candidates who have obtained Grade ‘E1′ or ‘E2′ are required to improve their performance in one attempt.&lt;/span&gt;&lt;br /&gt;



&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h3 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; text-align: justify;&quot;&gt;
Eligibility for CBSE 10th Improvement&lt;/h3&gt;


&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;

A candidate obtaining Grades E1 or E2 in any or all the five subjects(excluding 6th additional subject as per the scheme of studies) under Scholastic Area A at the examination jointly conducted by the Board and School shall be eligible for improvement of performance in any or all the five subjects.&lt;br /&gt;
Candidates not having registered for subsequent attempts will not be allowed to appear at the examination. Regular and Patrachar Vidyalaya candidates should send their applications though school/Patrachar Vidyalaya and private candidates direct to the Board as per the schedule notified on Board’s website for the examination to be held in July on the prescribed from along with the requisite fee. In case a candidate appears without registration his/her examination will be cancelled. Those candidates who have obtained grade E1 or E2 in the subject shall have to improve their performance through an examination to be held only in July the same year.
&lt;/div&gt;
&lt;br /&gt;


&lt;h3 style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif&quot;&gt;
Procedure and Rules:&lt;/h3&gt;
&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;

&lt;span style=&quot;background-color: white; font-family: Tahoma,Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;(i)&lt;/span&gt;&lt;/b&gt; &lt;b&gt;&lt;span style=&quot;color: #990000;&quot;&gt;(a) &lt;/span&gt;&lt;/b&gt;
A candidate who has appeared for the Secondary School Examination and obtained Grades E1 or E2 in any or all the five subjects(excluding the 6th additional subject) under Scholastic Area A, as per the Scheme of Studies, shall be eligible for improving his/her performance in any or all the five subjects and may reappear at the Improvement of Performance examination to be conducted by the Board for all such candidates to be held only in July the same year. The candidate will be issued Statement of Subject wise Performance/Certificate of School Based Assessment/Grade Sheet cum Certificate of Performance provided she/he obtains minimum Grade D in at least five subjects (excluding the 6th additional subject) as per the Scheme of Studies and grades in the subjects under Scholastic Area B and Co- scholastic Areas.&lt;/span&gt;&lt;/div&gt;

&lt;br /&gt;


&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Tahoma,Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: #990000;&quot;&gt;(b)&lt;/span&gt;&lt;/b&gt;

A candidate who has appeared for the Secondary School Examination conducted by the Senior Secondary School affiliated to the Board and obtained Grades E1 or E2 in any or all the five subjects under Scholastic Area A(excluding the 6th additional subject) as per the Scheme of Studies shall be eligible for improving his/her performance in any or all the five subjects and may reappear at the only attempt, at the examination conducted by the Senior School affiliated to the Board. The candidate will be issued Statement of Subject wise Performance/Certificate of School-Based Assessment provided he/she obtains minimum Grade D in at least five subjects(excluding the 6th additional subject) as per the Scheme of Studies and grades in the subjects under Scholastic Area B and co- scholastic areas.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;

&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;
&lt;span style=&quot;background-color: white; color: #990000; font-family: Tahoma,Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;(c)&lt;/b&gt;&lt;/span&gt; 

&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #134f5c; margin-left: 4px;&quot;&gt;(i)&lt;/span&gt;&lt;/b&gt;

A candidate who has appeared for the Secondary School Examination conducted by Senior Secondary School affiliated to the Board and obtained grades E1 or E2 in any or all the five subjects (excluding the 6th additional subject) under Scholastic Area A, as per the Scheme of Studies, shall be eligible for improving his performance and may reappear at the 1 st chance Improvement of Performance examination to be conducted by the school to be held by July the same year. Candidates appearing for School Based Summative Assessment II shall , however, appear for their subsequent second, third, fourth and fifth chances of Improvement of Performance at the examination to be conducted by the Board. The candidate(s) will be issued Certificate of Continuous and Comprehensive Evaluation indicating the grades obtained in the subjects under Scholastic Area A and grades in the subjects under Scholastic Area B and Co-scholastic Areas.&lt;/div&gt;
&lt;br /&gt;


&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;
&lt;span style=&quot;color: #134f5c; margin-left: 4px;&quot;&gt;&lt;b&gt;(ii)&lt;/b&gt;&lt;/span&gt;



At the Secondary School Examination, a candidate who does not obtain minimum Grade D in the five subjects. (excluding the 6th additional subject) under Scholastic Area A at one or all the chances of Improvement of Performance shall be treated to have not qualified the examination and shall be required to reappear in all the subjects at the examination to be held in March of the subsequent year, in order to qualify the examination. The syllabus and courses shall be as laid down for Summative Assessment II for the year of examination concerned. The candidates’ grades obtained in all the Formative Assessments and Summative Assessments at the main examination shall be carried over till all the chances of Improvement of Performance.&lt;/div&gt;
&lt;br /&gt;



&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; text-align: justify;&quot;&gt;
&lt;span style=&quot;color: #134f5c; margin-left: 4px;&quot;&gt;&lt;b&gt;(iii)&lt;/b&gt;&lt;/span&gt;

A candidate who fails to obtain minimum grade D in the five subjects(excluding 6th additional subject) under Scholastic Area A at the Secondary School Examination conducted by the Board shall be provisionally admitted to Class XI till he takes in subsequent first chance Improvement of Performance to be held in that year. His admission shall be treated as cancelled if he fails to obtain minimum Grade D in the five subjects(excluding the 6th additional subject) under Scholastic Area A at the first chance Improvement of Performance.

&lt;br/&gt;
A candidate who fails to obtain minimum grade D in the five subjects(excluding 6th additional subject) under Scholastic Area A at the Secondary School Examination conducted by the Senior Secondary School affiliated to the Board shall be provisionally admitted to Class XI till he takes in the Improvement of Performance examination to be held in that year. His/her admission shall be treated as cancelled if he/she fails to obtain minimum Grade D in the five subjects(excluding the 6th additional subject) under Scholastic Area A.&lt;/div&gt;

&lt;br /&gt;


&lt;h3&gt;Eligibility for Improvement of Performance in Secondary Exams&lt;/h3&gt;

&lt;div style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px&quot;&gt;
A candidate obtaining Grade E1 or E2 in any or all the five subjects (excluding 6th additional subject as per the scheme of studies) shall be eligible for improvement of performance in any or all the five subjects through subsequent five attempts.

&lt;br /&gt;

Candidates not having registered for subsequent attempts will not be allowed to appear at the examination. Regular and Patrachar Vidyalaya candidates should send their applications though school/Patrachar Vidyalaya and private candidates direct to the Board as per the schedule notified on Board’s website for the examination to be held in July on the prescribed from along with the requisite fee. In case a candidate appears without registration his /her examination will be cancelled.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;


&lt;h3 style=&quot;color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 14px; line-height: 18.6666660308838px; margin: 0px; padding: 0px; text-align: start;&quot;&gt;
Result Date&lt;/h3&gt;

&lt;div style=&quot;color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px; text-align: start;&quot;&gt;
The results will be announced in the month of May at &lt;a href=&quot;http://cbseresults.nic.in/&quot; target=&quot;_blank&quot;&gt;CBSE&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/655115829734529622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2015/01/class-10th-marks-improvement-exam-2013-14.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/655115829734529622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/655115829734529622'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2015/01/class-10th-marks-improvement-exam-2013-14.html' title='CBSE 10th Improvement Exam Rules and Regulation (EIOP) 2014-2015'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNI3LziIGZVOXNiNUYXlPuoVnmYuY_th-DL2MFyH9ghfOEubdjasaas_U2_DX6oQvcTxE5J8Da7w63THPYFmQ8CPSsVmrINLo9K2leqScLSnPlbcpJPSaRuzes_wDYmVFQLxHErcx7DS8B/s72-c/10TH+IMPROVEMENT.jpg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-6311797258046247286</id><published>2015-01-01T01:01:00.000-08:00</published><updated>2015-11-17T18:12:41.263-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="12th improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="2015"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="Improvement Exam"/><category scheme="http://www.blogger.com/atom/ns#" term="Improvement FAQ&#39;s"/><title type='text'>FAQ&#39;s About CBSE Improvement 2014-2015</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;


&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgC2lHCrOqqO-4LOTPGmFnEWvBJVNiZaDL3fpcT6AkDnMOLmqxkOlDEimyC1imYW_SHi-_0GaAJjVEQcfQrA0Sng5x_pA1JeHihqye-ThhUC8NxnB65WdWhdh4JTDDcQF-_d497kp3POVM/s1600/cbse+faqs.jpg&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; color=&quot;red&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgC2lHCrOqqO-4LOTPGmFnEWvBJVNiZaDL3fpcT6AkDnMOLmqxkOlDEimyC1imYW_SHi-_0GaAJjVEQcfQrA0Sng5x_pA1JeHihqye-ThhUC8NxnB65WdWhdh4JTDDcQF-_d497kp3POVM/s200/cbse+faqs.jpg&quot; style=&quot;text-decoration: none;&quot; width=&quot;172&quot; /&gt;&lt;/a&gt;

&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
Before starting this CBSE FAQ&#39;s section i suggest you to also consider &lt;b&gt;&lt;a color=&quot;red&quot; href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-12th-improvement-rules.html&quot; style=&quot;text-decoration: none;&quot; target=&quot;_blank&quot;&gt;CBSE Improvement Rules and Regulation 2015&lt;/a&gt;&lt;/b&gt; or &lt;b&gt;&lt;a color=&quot;red&quot; href=&quot;http://eduonline24.blogspot.in/2012/11/CBSE-Improvement-Exam-Admit-Card-2012-13.html&quot; rel=&quot;&quot; style=&quot;text-decoration: none;&quot; target=&quot;_blank&quot;&gt;CBSE Improvement Admit Card&lt;/a&gt;&lt;/b&gt;, which are related to this post.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#1.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is improvement exam mark sheet is valid in all states?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt; &lt;span style=&quot;margin-left: 4px;&quot;&gt;Yes, The mark-sheet will be valid in all states of India but keep one thing in mind you have to choose the all India type i.e. AISSCE.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#2.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;How many times can a candidate appear for Improvement examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt; &lt;span style=&quot;margin-left: 4px;&quot;&gt;For improvement examination only one chance in the succeeding year is permitted.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#3.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is a student required to appear in all subjects in improvement examination?&lt;/span&gt;&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 9px;&quot;&gt;No, the student can appear in one or more than one subject(s) as per his/her choice. However, improvement exam. can be taken only in the successive year of passing Class XII exams.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#4.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Can a candidate simultaneously appear for Improvement as well as Additional subject examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 4px;&quot;&gt; No, a candidate appearing for Improvement in one or more subjects cannot appear for additional subject examination simultaneously.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#5.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;I wish to improve my performance in Chemistry and Maths in class XII. Is it possible and how?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 4px;&quot;&gt; A candidate who has passed Class XII examination of the Board may reappear for improvement of performance in one or more subjects in the main examination in the succeeding year only. The candidate may appear privately; those re-appearing for whole examination can also appear as regular candidate if admitted by the school.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#6.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;What is the eligibility criteria for a student to appear as a private candidate in Board examination?&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 4px;&quot;&gt; The Board prescribes following conditions under which a candidate can appear privately: -&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ol&gt;
&lt;li&gt;Failed candidates&lt;/li&gt;
&lt;li&gt;Teachers serving in educational institutions&lt;/li&gt;
&lt;li&gt;Women candidates who are bonafide residents of NCT of Delhi and&lt;/li&gt;
&lt;li&gt;Physically handicapped students&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#7.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is it possible for a student who has failed in Science stream in Class XII to change subjects to pass at subsequent examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 4px;&quot;&gt; Yes, but with prior permission of the Board.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#8.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;I appeared in the compartment examination in July-August, but failed again, do I now have to re-appear in all subjects again?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 4px;&quot;&gt; The Board gives three chances to clear the compartment examination. The first examination is held in July-August followed by second chance in March-April and the third chance in July-August. Unsuccessful candidates after these three attempts are required to appear afresh in all subjects there on.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#9.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;I wish to improve my performance in Chemistry and Maths. Is it possible and how?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 9px;&quot;&gt;A candidate who has passed Class X or XII examination of the Board may re-appear for improvement of performance in one or more subjects in the main examination in the succeeding year only. The candidate may appear privately; those re-appearing for whole examination can also appear as regular candidate if admitted by the school.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;For subjects involving practical work, if the candidate has passed the practical examination, he or she will be allowed to appear only in theory part.&lt;/li&gt;
&lt;li&gt;Only a statement of marks is issued by the Board after the improvement of performance. &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#10.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is it compulsory to pass in theory and practical exams. Separately?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 14px;&quot;&gt;Yes, it is compulsory to pass separately in the subjects involving theory and practical in Class XII.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#11.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is a student required to appear in all subjects in improvement examination?&lt;/span&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 14px;&quot;&gt;No, the student can appear in one or more than one subject(s) as per his/her choice. However, improvement exam. can be taken only in the successive year of passing Class X/XII exams.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#12.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is the candidate allowed to see the answer script in case the result is not as per the expectations?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 14px;&quot;&gt;No. There is no provision of showing answer scripts. The candidate can apply for scrutiny, for reconfirmation of marks.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#13.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;If a candidate passes in the additional subject but fails in one of the main subjects, what will the result show?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 14px;&quot;&gt;The candidate will be considered as having passed the examination in such a case. A language will replace a language only. For further details the scheme of examinations can be referred to.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#14.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;What is the procedure followed in marking the answers?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Each answer is divided that a copy of Marking Scheme be procured to get a clear idea.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#15.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;The result of Patrachar candidates is always very poor, is the evaluation of private/patrachar candidates different from that of regular candidates?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;There is no difference in the evaluation procedures. However, it depends entirely on the level of preparation and performance of individual candidates irrespective of their status.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#16.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Can a candidate simultaneously appear for Improvement as well as Additional subject
examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;No, a candidate appearing for Improvement in one or more subjects cannot appear for additional subject examination simultaneously.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#17.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;How many times can a candidate appear for Improvement or additional subject examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;span style=&quot;margin-left: 12px;&quot;&gt;For improvement examination only one chance in the succeeding year is permitted, and for the additional subject, the candidate may appear within 6 years of passing the Main examination.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#18.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;What is the procedure to apply for Improvement or Additional Examination?&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;The admission forms for improvement or additional examination are available in the month of August every year. The examination is held along with the main examination in the month of March/April in the following year. Outstation candidates can contact their respective regional offices for the same.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#19.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Is a consolidated or combined Marks Statement issued after improvement or additional examination?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ol&gt;
&lt;li&gt;After improvement a consolidated marks statement reflecting the marks of main&amp;nbsp;examination and improvement examination is issued.&lt;/li&gt;
&lt;li&gt;But for additional subject examination, marks statement in the concerned subject only is&amp;nbsp;issued.&lt;/li&gt;
&lt;li&gt;In case of compartment examination a fresh marks statement is issued if the student&amp;nbsp;passes that subject.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div class=&quot;margin&quot; style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#20.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;What is the pass criteria for Class X and XII?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;A candidate has to pass in all five subjects to be declared Pass. However, for class X a candidate is placed in compartment up to two unqualified subjects and if he fails in one subject in Class XII the candidate is placed in compartment.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;#21.&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;Can one appear for improvement exam along with the compartment. Exam conducted by the Board in the month of July/August?&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: blue;&quot;&gt;Ans&lt;/span&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;.&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;margin-left: 12px;&quot;&gt;No, a candidate can appear for improvement exam only in the very next year of passing the main exam in March.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 17px; padding: 0px; text-align: justify;&quot;&gt;
Having more questions other than this. Ask here by leaving a comment.&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;span style=&quot;color: #cc0000;&quot;&gt;&lt;b&gt;&lt;a color=&quot;&quot; href=&quot;https://plus.google.com/103476317329742563696/&quot; red=&quot;&quot; style=&quot;text-decoration: none;&quot;&gt;Pradeep Singh&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/u&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/6311797258046247286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Improvement-FAQs-Problems-2013.html#comment-form' title='214 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6311797258046247286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6311797258046247286'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Improvement-FAQs-Problems-2013.html' title='FAQ&#39;s About CBSE Improvement 2014-2015'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgC2lHCrOqqO-4LOTPGmFnEWvBJVNiZaDL3fpcT6AkDnMOLmqxkOlDEimyC1imYW_SHi-_0GaAJjVEQcfQrA0Sng5x_pA1JeHihqye-ThhUC8NxnB65WdWhdh4JTDDcQF-_d497kp3POVM/s72-c/cbse+faqs.jpg" height="72" width="72"/><thr:total>214</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-984131710556224135</id><published>2014-12-30T03:57:00.000-08:00</published><updated>2015-11-17T18:14:13.672-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="12th improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="2014-15"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse improvement"/><title type='text'>CBSE 12th Improvement Exam Rules and Regulation | 2014-15</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;

&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial,Helvetica,sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
As you should already be knowing that this is one of the most popular, most searched and an evergreen post on this blog and on WWW as well.
&lt;br /&gt;
&lt;div class=&quot;margin&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9wyQ3vJ3DZ_3Gwerdz-sWWHU8CISugLEKX52Kd_3t6RR_TPo4b8QIA5i4v7oW1SfnNG_88BRg5wgYVXiOruCdD1I9SwIh-zBiPl02T7R8_EgBFN2_EWPwqC-ro45Pbr4zetcTcWZ84j_8/s1600/images+(3).jpg&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9wyQ3vJ3DZ_3Gwerdz-sWWHU8CISugLEKX52Kd_3t6RR_TPo4b8QIA5i4v7oW1SfnNG_88BRg5wgYVXiOruCdD1I9SwIh-zBiPl02T7R8_EgBFN2_EWPwqC-ro45Pbr4zetcTcWZ84j_8/s1600/images+(3).jpg&quot; /&gt;&lt;/a&gt;I suggest you to visit &lt;span style=&quot;color: #783f04; font-family: Trebuchet MS, Trebuchet, Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-Improvement-FAQs-Problems-2013.html&quot; style=&quot;color: #783f04;&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;CBSE Improvement FAQ&#39;S&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; to clear any more doubt or you may also want to know about &lt;span style=&quot;color: #783f04; font-family: Trebuchet MS, Trebuchet, Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://eduonline24.blogspot.in/2012/11/CBSE-Improvement-Exam-Admit-Card-2012-13.html&quot; style=&quot;color: #783f04;&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Admit Cards&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; or may be about &lt;span style=&quot;color: #783f04; font-family: Trebuchet MS, Trebuchet, Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://eduonline24.blogspot.in/2013/05/class-10th-marks-improvement-exam-2013-14.html&quot; style=&quot;color: #783f04;&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;CBSE 10th Improvement Rules 2015&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot;&gt;
CBSE Improvement Exam takes place succeeding year when you give class 12th board 
exams. The exam is same as regular board exams and you get a whole year 
to prepare for the improvement exam.&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;color: black; font-family: Tahoma,Arial,Helvetica,sans-serif; font-size: 22px; line-height: 25px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;ABOUT CBSE 12th Board Improvement Exam&lt;/b&gt;&lt;/h2&gt;
&lt;div class=&quot;margin&quot;&gt;
You can appear for improvement exam for &lt;span style=&quot;color: #333300;&quot;&gt;any one&lt;/span&gt; or &lt;span style=&quot;color: #333300;&quot;&gt;all of the passing subjects&lt;/span&gt; and not in the subjects in which you have been declared fail .
&lt;/div&gt;
&lt;div class=&quot;margin&quot;&gt;
A candidate appearing for improvement exam in one or more subjects can not appear for additional subject 
simultaneously.
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;div class=&quot;margin&quot;&gt;
Forms will be available from July or August &lt;span style=&quot;color: #333300;&quot;&gt;till October&lt;/span&gt; and can be collected from any &lt;a href=&quot;http://eduonline24.blogspot.in/2012/09/cbse-improvement-syndicate-banks.html&quot; style=&quot;color: #783f04;&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;Syndicate Bank branches&lt;/b&gt;&lt;/a&gt; or &lt;span style=&quot;color: #783f04;&quot;&gt;&lt;a href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-Address-Phone-Numbers-Contacts-Jee-CTET-NEET-Helpline.html&quot; style=&quot;color: #783f04;&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;CBSE Regional office&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and you have to submit the form and fees at syndicate bank branches only list of all branches in India can be checked at the above given link.
&lt;/div&gt;
&lt;br /&gt;
&lt;h2 style=&quot;color: black; font-family: Tahoma,Arial,Helvetica,sans-serif; font-size: 22px; line-height: 25px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;Important Points to be noted about the CBSE Improvement Exam:&lt;/b&gt;&lt;/h2&gt;
&lt;br /&gt;
&lt;div class=&quot;margin&quot;&gt;
&lt;/div&gt;
&lt;ol&gt;

&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhd0pSBbTrQAEfMpZuNYaCYDmd5mJnmqmx7UUQC4CMf2snmk-jzwvX60WRJ2F81mUdW6iAtLvfMgQ4l8gO-11M8jtSIbMA-1v8oB1iPJXZsB330povgZTk48j79KJ8xSHip44Icvt39A9RV/s1600/images+(2).jpg&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhd0pSBbTrQAEfMpZuNYaCYDmd5mJnmqmx7UUQC4CMf2snmk-jzwvX60WRJ2F81mUdW6iAtLvfMgQ4l8gO-11M8jtSIbMA-1v8oB1iPJXZsB330povgZTk48j79KJ8xSHip44Icvt39A9RV/s1600/images+(2).jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;li&gt;A candidate who has passed Secondary School Examination of the Board may 
reappear at the examination for improvement of performance in one or 
more subjects in the main examination next year only and he/she cannot 
pursue higher studies in the mean time. They shall appear as a private 
candidate. Those reappearing in the whole examination, may appear as 
regular school candidates also. Students may appear in the failing 
subject(Sixth subject) at the Compartment Examination to be held in 
July/August the same year.&lt;/li&gt;
&lt;br /&gt;


&lt;br /&gt;
&lt;li&gt;A candidate appearing for improvement in subject(s) involving practical shall appear only in theory and 
previous practical marks shall be carried forward and accounted for.&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;A candidate appearing for improvement of performance shall be issued only
 Statement of Marks reflecting the marks obtained at the improvement 
examination in the subject(s).&lt;/li&gt;
&lt;br /&gt;


&lt;br /&gt;
&lt;li&gt;If the candidate has passed in practical exam, he/she have to appear in the theory part only and marks
 in practical obtained shall be carried forward and accounted for. In 
case the candidate has failed in practical he/she&amp;nbsp;have to appear in 
theory and practical both irrespective of the fact that he/she has 
already cleared the theory examination.&lt;/li&gt;
&lt;br /&gt;


&lt;br /&gt;
&lt;li&gt;There is NO COMPARTMENT EXAM FOR IMPROVEMENT EXAM and hence you will have to be with your new 
marks whatever they are low or high, however the best marks of two years
 are counted upon.&lt;/li&gt;
&lt;br /&gt;


&lt;br /&gt;
&lt;li&gt;Candidates who appear for improvement of performance will be issued only Statement of 
Marks reflecting the marks of the main examination as well as those of 
the improvement examination. He/she will not be provided with a new 
passing certificate. Cost of the CBSE Improvement Exam form is &lt;b&gt;Rs.10&lt;/b&gt;.&lt;/li&gt;
&lt;br /&gt;

&lt;/ol&gt;
There are two types of forms, one for Delhi is “&lt;b&gt;DISSCE&lt;/b&gt;” (only for govt schools in Delhi) and one for All India is “&lt;b&gt;AISSCE&lt;/b&gt;” (for private schools).&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial,Helvetica,sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;u style=&quot;color: #660000;&quot;&gt;&lt;b&gt;NOTE&lt;/b&gt;&lt;/u&gt;: One should remember carefully about the last date for filling the 12th improvement form because once missing you have no chance to improve your marks again.&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial,Helvetica,sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;


&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-HAWEShFwSJs%2FUXysMW6hUGI%2FAAAAAAAAAk4%2FhZ9f2k5c_8k%2Fs1600%2Fimages%2B&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhd0pSBbTrQAEfMpZuNYaCYDmd5mJnmqmx7UUQC4CMf2snmk-jzwvX60WRJ2F81mUdW6iAtLvfMgQ4l8gO-11M8jtSIbMA-1v8oB1iPJXZsB330povgZTk48j79KJ8xSHip44Icvt39A9RV/s1600/images+&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F1.bp.blogspot.com%2F-4V7qKRVFCPA%2FUXysNKSGLFI%2FAAAAAAAAAlA%2F-eqT7a4tNL0%2Fs1600%2Fimages%2B&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9wyQ3vJ3DZ_3Gwerdz-sWWHU8CISugLEKX52Kd_3t6RR_TPo4b8QIA5i4v7oW1SfnNG_88BRg5wgYVXiOruCdD1I9SwIh-zBiPl02T7R8_EgBFN2_EWPwqC-ro45Pbr4zetcTcWZ84j_8/s1600/images+&quot; --&gt;</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/984131710556224135/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2014/12/CBSE-12th-improvement-exam-2015.html#comment-form' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/984131710556224135'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/984131710556224135'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2014/12/CBSE-12th-improvement-exam-2015.html' title='CBSE 12th Improvement Exam Rules and Regulation | 2014-15'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9wyQ3vJ3DZ_3Gwerdz-sWWHU8CISugLEKX52Kd_3t6RR_TPo4b8QIA5i4v7oW1SfnNG_88BRg5wgYVXiOruCdD1I9SwIh-zBiPl02T7R8_EgBFN2_EWPwqC-ro45Pbr4zetcTcWZ84j_8/s72-c/images+(3).jpg" height="72" width="72"/><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-7430341562923353811</id><published>2014-05-16T08:35:00.000-07:00</published><updated>2014-05-16T08:35:23.466-07:00</updated><title type='text'>hello to alllll</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
After a long tym i am writing on my blog. This is only due to the busy shedule i am having. There are a lot of lykes comments and visits for the blog. I am very glad to see this. I will try to reply for all the comments but it will take tym. I will be publishing some new posts on the latest trending topics and issues as well as i will edit older most visited posts such as improvent exam, entrance related issues, etccc.&lt;br /&gt;I hope u enjoyyed the election season (some may b not) it is definite that namo will change the system but the question is will this change going to benefit us or not.&lt;br /&gt;Actuallly mr. narendra damodar dad modi clean sweeped it shows the majority. But i think mr. AK sufferred due to the transfer of divided vote in between them and congress.&lt;br /&gt;Lets uss see what happens next.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/7430341562923353811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2014/05/hello-to-alllll.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7430341562923353811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7430341562923353811'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2014/05/hello-to-alllll.html' title='hello to alllll'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-6283885008838421815</id><published>2013-06-21T00:01:00.001-07:00</published><updated>2016-08-06T09:05:00.946-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><category scheme="http://www.blogger.com/atom/ns#" term="JEE Preparation"/><title type='text'>IIT JEE Preparation Tips Tricks &amp; Strategies</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;



&lt;h3 style=&quot;color: black; font-size: large; line-height: 42px; text-align: left;&quot;&gt;
What is IIT... A brief intro&lt;/h3&gt;
&lt;div style=&quot;background-color: white; color: black; font-size: 15px; line-height: 24px; text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Tahoma, Verdana, sans-serif;&quot;&gt;IIT JEE &amp;nbsp;is one of the most reputed as well as toughest engineering entrance exam as we all know it. It is the way to the IITs as well as many other institutions. A deep knowledge of the subjects mentioned in JEE syllabus is compulsory to clear this exam.&lt;/span&gt;&lt;/div&gt;

&lt;h3 style=&quot;color: black; font-size: large; line-height: 42px; text-align: left;&quot;&gt;
What To Do&lt;/h3&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,&#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;
&lt;li&gt;Believe in yourself rather in others.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Take breaks. Do not study all day. Read, play, enjoy with your friends. These will actually help in long term in keeping you relaxed and stress free.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Eat healthy. Remember you need to stay healthy in order to study hard.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Remember that you know yourself better than anyone else.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Sleep properly, for 7-8 hours a day.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;You will need it. Make routine of every subject. This will help you in giving time go each and every subject. Start the preparation right after you pass class 10 boards.&lt;/li&gt;
&lt;li&gt;If you start late you may not be able to cover the entire syllabus properly.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;


&lt;h3 style=&quot;color: black; font-size: large; line-height: 42px; text-align: left;&quot;&gt;
What Not To Do&lt;/h3&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,&#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;
&lt;li&gt;First of all DO NOT use too many reference books.&lt;/li&gt;
&lt;li&gt;DO NOT start new topics that you haven’t done before.&lt;/li&gt;
&lt;li&gt;Do not waste time on trying to solve a problem or question. Look for the solution in the answer booklet, understand and move on to the next one since time is of essence here.&lt;/li&gt;
&lt;li&gt;Never ever adopt your classmates method of studying. Generally students get influenced by their peers. Everyone is unique and you should study according to your comfort for best concentration.&lt;/li&gt;
&lt;li&gt;Always start from the basic concepts. Avoid cramming.&lt;/li&gt;
&lt;li&gt;Don’t look for solutions without attempting to get the right answer.&lt;/li&gt;
&lt;li&gt;Don&#39;t keep your work pending. You might not be able to catch up later.&lt;/li&gt;
&lt;li&gt;But never leave any chances.Catch each and every opportunity so that you won&#39;t be sad later.Work hard to your greatest extent, rest will be given to you.&lt;/li&gt;
&lt;li&gt;Don&#39;t ignore school work, especially after the new rules are in place.&lt;/li&gt;
&lt;li&gt;Whatever happens, don&#39;t take IIT-JEE too seriously. IIT is just a college. Even if you don&#39;t get in as an undergraduate you shall have another chance to join as a post graduate student. Remember, missing out on IIT-JEE isn&#39;t the end of the world.&lt;/li&gt;
&lt;li&gt;“Avoid looking at the questions asked in past IIT exams. Some students try to solve these questions to get an edge but this is not required if you have solved AIEEE papers and revised Class 12 syllabus well.&lt;/li&gt;
&lt;li&gt;Avoid writing lengthy solutions for problems — particularly while doing your preparations.&lt;/li&gt;
&lt;li&gt;Do not worry if the first two hours of the paper prove to be average for you. Make sure that you do well in the third hour. Your target should be to solve one-third of the paper to be able to make it to the top 1.5 candidates.&lt;/li&gt;
&lt;/ul&gt;



&lt;h3 style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 42px;&quot;&gt;
You&#39;ll Need&lt;/h3&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,&#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;
&lt;li&gt;Proper guidance&lt;/li&gt;
&lt;li&gt;Good books and study materials&lt;/li&gt;
&lt;li&gt;Motivation&lt;/li&gt;
&lt;/ul&gt;



&lt;h3 style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 42px;&quot;&gt;
Subjects and Difficulty Levels&lt;/h3&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: tahoma, helvetica ,arial; font-size: 15px; line-height: 24px;&quot;&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Clearing JEE (Main) is not a difficult task. “A systematic approach when preparing for it will help students crack it. In AIEEE 2012, mathematics and physics were definitely difficult as compared to AIEEE 2011. Chemistry was relatively simple. About 25% questions in the paper are easy, 50% are average and 25% are difficult. The cut-off for JEE (Main) is generally around 60% for NITs and IIITs,” says Ramesh Batlish, Noida centre head, FIITJEE.
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;According to Anand Kumar, founder, Super 30, Patna, “The tough chapters include probability, permutation and combination and integral calculus in maths; rotational dynamics and geometrical optics in physics; solid state and inorganic chemistry in chemistry; 3D images in engineering drawing; and logical reasoning in aptitude. Revision of the Class 11 and 12 syllabus and practising the last 10 years’ question papers of the AIEEE helps a lot. For logical reasoning, solving GRE questions is a good idea.”&lt;/span&gt;

&lt;br /&gt;
&lt;br /&gt;



&lt;h3 style=&quot;color: black; font-family: tahoma, arial; font-size: large; line-height: 42px;&quot;&gt;Structure of the Exam&lt;/h3&gt;
&lt;div style=&quot;background-color: white; color: #783f04; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 18px; line-height: 42px;&quot;&gt;
&lt;b&gt;Paper 1&lt;/b&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;This is a three-hour paper comprising three sections: part 1 - physics, part 2 - chemistry and part 3 - mathematics. There are 30 questions in each of three subjects; which are of objective type-multiple choice with single correct answer. In each section there are 30 questions of four marks each. One should be very careful as there is one-fourth negative marking for every question&lt;/span&gt;

&lt;br /&gt;
&lt;div style=&quot;background-color: white; color: #783f04; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 18px; line-height: 42px;&quot;&gt;
&lt;b&gt;Paper 2&lt;/b&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;This three-hour paper consists of part 1 - mathematics, part 2 - aptitude and part 3 - drawing. The mathematics section has 30 objective-type multiple choice questions with single correct option and one-fourth negative marking. In this part, the syllabus for mathematics includes common topics from Class 11 and 12 CBSE or state Boards. The aptitude section has 50 objective, multiple choice questions with four options and one-fourth negative marking.&lt;/span&gt;

&lt;br /&gt;
&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 22px;&quot;&gt;
Combined Preparation: JEE and Boards&lt;/h4&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;The new selection system gives importance to Class 12 board marks as well, hence one must prepare for both the exams simultaneously. The student must practice all NCERT problems, while brushing up JEE concepts. But the last choice is yours.&lt;/span&gt;&lt;br /&gt;


&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 22px;&quot;&gt;
Join Test Series&lt;/h4&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;For better preparation and to know where one stands, one can join a popular test series programme. These tests not only check an individual’s level of preparation for the JEE but also make aware of one’s command over the subject, strong and weak areas and writing speed.&lt;/span&gt;

&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 42px;&quot;&gt;
Time Management&lt;/h3&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;While dealing with exam pressure, time management plays a crucial role. Plan and divide the time remaining aptly for the three subjects. You can prepare a chapter-wise and topic-wise revision schedule. It is recommended to create short notes, list all formulas and points to remember. This will help in quick revision at a later stage.&lt;/span&gt;

&lt;br /&gt;
&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 22px;&quot;&gt;
Correct Methodology&lt;/h4&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;The correct approach for those taking the exam for the first or second (last) time is to stick to limited source and not refer to a numerous books and study material available in the market. The syllabus and paper pattern for JEE Main, JEE Advance and Board Exams are different. Identify your strengths and weaknesses and prepare accordingly.&lt;/span&gt;

&lt;br /&gt;
&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 22px;&quot;&gt;
Month-wise Planning&lt;/h4&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: tahoma, arial; font-size: 15px; line-height: 26px;&quot;&gt;Develop month-wise plan and break it into weeks. Initial about three to four months, one can focus on developing concepts for each chapter separately. March should be Kept for board exams, except for certain days when you can simultaneously solve previous year papers papers of AIEEE and IIT-JEE. April and May can be used to revise formulae and take mock tests.

&lt;span style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;span style=&quot;background-color: white; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;&quot;&gt;All three subjects: Physics, Chemistry and Mathematics are equally important, thus one must devote at least two to three hours to each subject on a daily basis. It’s the quality of time spent on self-study that matters, not quantity.&lt;/span&gt;

&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;


&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: large; line-height: 22px;&quot;&gt;Important Topics&lt;/h4&gt;

&lt;span style=&quot;color: black; font-family: tahoma, arial; font-size: 15px; line-height: 26px;&quot;&gt;The syllabus of &lt;i&gt;Class 11&lt;/i&gt; and &lt;i&gt;12&lt;/i&gt; contribute about &lt;b&gt;45% and 55% &lt;/b&gt;of IIT-JEE question papers, respectively. While preparing, put more stress on the following topics.&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;&lt;strong&gt;Mathematics:&lt;/strong&gt; Quadratic equations and expressions, complex numbers, probability, vectors, matrices in algebra; circle, parabola, hyperbola in coordinate geometry; functions, limits, continuity and differentiability, application of derivatives, definite integral in calculus.&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;&lt;strong&gt;Physics:&lt;/strong&gt; Mechanics, fluids, heat and thermodynamics, waves and sound, capacitors and electrostatics, magnetics, electromagnetic induction, optics and modern physics.&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;&lt;strong&gt;Chemistry:&lt;/strong&gt; Coordination chemistry and chemical bonding in inorganic chemistry, electrochemistry, chemical and ionic equilibrium, mole concept in physical chemistry and organic chemistry.&lt;/span&gt;
&lt;br /&gt;



&lt;h4 style=&quot; color: black; font-family: tahoma, arial; font-size: 15px; line-height: 22px;&quot;&gt;Practice Makes Perfect&lt;/h4&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;Practice as much questions as you can for JEE. Keep in mind the following tips while preparing:&lt;/span&gt;
&lt;br /&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 42px;&quot;&gt;&lt;span style=&quot;background-color: white; color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px; line-height: 26px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px;&quot;&gt;
&lt;li&gt;Study on a regular basis and proper sleep is must.&lt;/li&gt;
&lt;li&gt;Keep in touch with like-minded students to get that extra edge&lt;/li&gt;
&lt;li&gt;Problem-solving should be more qualitative than quantitative&lt;/li&gt;
&lt;li&gt;With the right attitude, even an average student can clear it successfully&lt;/li&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/ul&gt;




&lt;h2 style=&quot;text-align: left&quot;&gt;Summary At a Glance&lt;/span&gt;&lt;/h2&gt;
&lt;ol style=&quot;background-color: white; color: black; font-family: Tahoma,&#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;
&lt;li&gt;Always&amp;nbsp;&lt;b&gt;study in the morning&lt;/b&gt;&amp;nbsp;time and set a target to finish at least one chapter of every subject.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;If you have any problem or question related to your subject try to&amp;nbsp;&lt;b&gt;watch YouTube&lt;/b&gt;&amp;nbsp;videos related to that topic or simply&amp;nbsp;&lt;b&gt;Google it&lt;/b&gt;.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;In most of the books objective questions are given, if you have no special books for the jee main and jee advanced preparation try to solve these questions (given at the end of every chapter)&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Divide the time&lt;/b&gt;&amp;nbsp;into three times, always give a break to your mind and physique so that when you start again you will be fresh enough to understand your next topic. And manage it on your own way like you can attempt first mathematics, then chemistry, and at last physics etc.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Believe in yourself&lt;/b&gt;. This is the first thing you should have that is a strong belief in yourself that you have the ability to become an IITian . Work hard. Someone has rightly said where there is a will, there is a way.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Work hard&lt;/b&gt;. Try to give as much time as you can in understanding the topics being covered. Even if you are not feeling well for solving problems, read popular articles on the topics or&amp;nbsp;&lt;i&gt;Wikipedia&lt;/i&gt;&amp;nbsp;pages related to the topics. Having a clear concept is more important than being able to solve problems.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Have a proper guidance&lt;/b&gt;. A good and experienced teacher or coaching institute will generally be of help. They are familiar with the pattern of the examination, and the kind of effort that a student needs to put in. So joining a well reputed institute can make things easier for you.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Concentrate on each topic&lt;/b&gt;. You should go through each chapter with a lot of concentration. If suppose you are unable to solve a problem choose another problem of the similar type. Try to understand the basics of each topic instead of solving all problems. Very often a thorough understanding of a few topics proves better than a superficial idea about all topics.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Revise&lt;/b&gt;. Whatever is being taught to you in school or tuition immediately revise it once you&#39;re back home. This will help you to keep in touch with all topics, since a lot needs to be covered in a short time.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Put in effort continuously&lt;/b&gt;. Don&#39;t lose your heart if you are unable to do something. You will have to work hard everyday till you reach your destination. The journey is not that easy but if u have strong determination you can do it with ease.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Have good study materials at your disposal&lt;/b&gt;. Go for&amp;nbsp;&lt;i&gt;HC VERMA&lt;/i&gt;&amp;nbsp;in physics and&amp;nbsp;&lt;i&gt;NCERT&lt;/i&gt;. Go for&amp;nbsp;&lt;i&gt;arihant&lt;/i&gt;&amp;nbsp;publications for chemistry. For maths go for arihant and NCERT too. Plus, have a question bank of previous 34 years by arihant publications or FIITJEE archive. solve this and you will have a sharp edge over others.You need to work on Chemistry&amp;nbsp;&lt;i&gt;O.P Tandon&lt;/i&gt;&amp;nbsp;also, it helps you a lot.&lt;/li&gt;
&lt;li style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Manage your time&lt;/b&gt;&amp;nbsp;very efficiently, as the IIT JEE requires has a vast syllabus and has to be cover over a limited period of time.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/6283885008838421815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/06/IIT-JEE-Preparation-Tips-Tricks-Strategies.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6283885008838421815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6283885008838421815'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/06/IIT-JEE-Preparation-Tips-Tricks-Strategies.html' title='IIT JEE Preparation Tips Tricks &amp; Strategies'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-1206816832157400354</id><published>2013-05-27T23:53:00.003-07:00</published><updated>2013-07-06T01:38:11.490-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Board"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Class 9"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE IX Syllabus"/><title type='text'>CBSE CCE System and Examination Reforms 2013-14</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h2 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px; line-height: 1.4em;&quot;&gt;
EXAMINATION REFORMS AND CONTINUOUS AND COMPREHENSIVE EVALUATION (CCE)&lt;/h2&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.4em;&quot;&gt;&lt;b&gt;C&lt;/b&gt; – Continuous &lt;b&gt;C&lt;/b&gt; – Comprehensive &lt;b&gt;E&lt;/b&gt; – Evaluation 

&lt;br /&gt;&lt;br /&gt;

Continuous stands for assessment of a student throughout the year, not just at the end of a term. It may be done formally or in an informal way using different techniques of evaluation . 
&lt;br /&gt;
Comprehensive takes care of assessment of all round development of a child’s personality. A child will be assessed not only in terms of his knowledge about a subject but his participation in other activities also. Broadly, we assess a child’s growth in two areas – Scholastic and Co-scholastic. The term Scholastic refers to those aspects , which are related to intellect or the brain. It is related to the assessment of learners in curricular subjects. It includes assignments, projects, practical etc.&lt;/span&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;


&lt;br /&gt;

&lt;h5 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px;&quot;&gt;New scheme of evaluation&lt;/h5&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;As a part of this new system, student&#39;s marks will be replaced by grades which will be evaluated through a series of curricular and extra-curricular evaluations along with academics. The aim is to reduce the workload on students and to improve the overall skill and ability of the student by means of evaluation of other activities. Grades are awarded to students based on work experience skills, dexterity, innovation, steadiness, teamwork, public speaking, behavior, etc. to evaluate and present an overall measure of the student&#39;s ability. This helps the students who are not good in academics to show their talent in other fields such as arts, humanities, sports, music, athletics, etc.&lt;/span&gt;

&lt;br /&gt;

&lt;h5 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px;&quot;&gt;
How will the assessment be done ?&lt;/h5&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;A school session is divided into two terms: First term – April to September. Second term – October to March. Each term has two &lt;b&gt;Formative Assessments (FA)&lt;/b&gt; and one &lt;b&gt;Summative Assessment (SA)&lt;/b&gt;. Syllabus covered in the first term will not be included in the second term.&lt;/span&gt;

&lt;br /&gt;&lt;br /&gt;

&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px;&quot;&gt;Marks and grades&lt;/h4&gt;

&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.4em;&quot;&gt;In CCE, the marks obtained in an exam are usually not revealed. However, equivalent grades, which would be deduced using a special method by the teachers during evaluation would be revealed. This is considered as a drawback since a child with 92 marks will get the same grade as the child with 100 marks and their talents cannot be recognized by anyone else other than their teachers. Though this system might have some drawbacks it instills this value that students need to compete with themselves to get a better grade and not with others. The grading system is as follows -&lt;/span&gt;

&lt;br /&gt;
&lt;table class=&quot;wikitable&quot; style=&quot;background-color: #f9f9f9; border-collapse: collapse; border: 1px solid rgb(170, 170, 170); color: black; font-family: Tahoma, sans-serif; font-size: 13px; line-height: 19.1875px; margin: 1em 0px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th style=&quot;background-color: #f2f2f2; border: 1px solid rgb(170, 170, 170); padding: 0.2em; text-align: center;&quot;&gt;CGPA&lt;/th&gt;&lt;th style=&quot;background-color: #f2f2f2; border: 1px solid rgb(170, 170, 170); padding: 0.2em; text-align: center;&quot;&gt;Grade&lt;/th&gt;&lt;th style=&quot;background-color: #f2f2f2; border: 1px solid rgb(170, 170, 170); padding: 0.2em; text-align: center;&quot;&gt;Qualified?&lt;/th&gt;&lt;th style=&quot;background-color: #f2f2f2; border: 1px solid rgb(170, 170, 170); padding: 0.2em; text-align: center;&quot;&gt;Merited?&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;9.1-10.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;A1&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;8.1-9.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;A2&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;7.1-8.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;B1&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;6.1-7.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;B2&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;yes&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;5.1-6.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;C1&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Yes&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;4.1-5.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;C2&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Upon upgradation&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;3.1-4.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;D&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;Upon upgradation&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;2.1-3.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;E1&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;1.1-2.0&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;E2&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(170, 170, 170); padding: 0.2em;&quot;&gt;No&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px; line-height: 1.4em;&quot;&gt;
Time Schedule and Weightage&lt;/h4&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.4em;&quot;&gt;First Term (40%)&lt;/span&gt;

&lt;br /&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.4em;&quot;&gt;
&lt;li&gt;FA I – April to July 10%&lt;/li&gt;
&lt;li&gt;FA 2 – July to Sept. 10%&lt;/li&gt;
&lt;li&gt;SA I – End of Sept. 20%&lt;/li&gt;
&lt;/ul&gt;

&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.4em;&quot;&gt;Second Term (60%)&lt;/span&gt;

&lt;br /&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.4em;&quot;&gt;
&lt;li&gt;FA 3 – Oct. to Dec. 10%&lt;/li&gt;
&lt;li&gt;FA 4 – Dec. to Feb. 10%&lt;/li&gt;
&lt;li&gt;SA 2 – End of March 40%&lt;/li&gt;
&lt;/ul&gt;

&lt;br /&gt;&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.4em;&quot;&gt;FOR STUDENTS PRESENT IN CLASS IX&lt;/span&gt;

&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;Since we have only second term in hand, we will take the 40% weightage from WT I and Mid Year Examination.&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.4em;&quot;&gt;FA 3 includes :&lt;/span&gt;

&lt;br /&gt;
&lt;ol style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;li&gt;WT 2&lt;/li&gt;
&lt;li&gt;Home work&lt;/li&gt;
&lt;li&gt;Class work&lt;/li&gt;
&lt;li&gt;Group Activity/Experiments&lt;/li&gt;
&lt;li&gt;Individual Activity&lt;/li&gt;
&lt;/ol&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1em;&quot;&gt;
&lt;li&gt;FA 4 will be conducted on the similar lines.&lt;/li&gt;
&lt;li&gt;Syllabus for SA 2 (March 2010) is available on CBSE website and known to students also.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.4em;&quot;&gt;FORMATIVE ASSESSMENT (FA)&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;Formative assessment includes all types of tests, formal and informal. Assessment can be done during the teaching process or after completing a unit. It includes :&lt;/span&gt;

&lt;br /&gt;
&lt;ul style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;li&gt;Class work&lt;/li&gt;
&lt;li&gt;Quizzes&lt;/li&gt;
&lt;li&gt;Home work&lt;/li&gt;
&lt;li&gt;Worksheets&lt;/li&gt;
&lt;li&gt;Oral tests&lt;/li&gt;
&lt;li&gt;Assignments&lt;/li&gt;
&lt;li&gt;Group discussion&lt;/li&gt;
&lt;li&gt;Group activity&lt;/li&gt;
&lt;li&gt;Experiments&lt;/li&gt;
&lt;li&gt;Projects&lt;/li&gt;
&lt;li&gt;Conversation/Interview&lt;/li&gt;
&lt;/ul&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;The record of FA will be maintained by the class teacher and subject teachers.&lt;/span&gt;

&lt;br /&gt;&lt;br /&gt;

&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.4em;&quot;&gt;SUMMATIVE ASSESSMENT (SA)&lt;/h4&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;This is the most traditional way of testing that is paper pen test based on the curriculum taught during the specified time period. The question paper of SA will be set by the CBSE.&lt;/span&gt;

&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;The centre of examination will be the child’s own school. Answer sheets will be checked by the school teachers.&lt;/span&gt;

&lt;br /&gt;&lt;br /&gt;

&lt;h4 style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px; line-height: 1.4em;&quot;&gt;GRADING SYSTEM&lt;/h4&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;The performance of a child in scholastic area will be assessed in terms of marks. Marks will be known to the student but his report card will show grades only. Marks will be converted into grades as per following pattern :&lt;/span&gt;

&lt;table id=&quot;customers&quot; style=&quot;border-collapse: collapse; color: black; font-family: &#39;Trebuchet MS&#39;, Arial, Helvetica, sans-serif; width: 639px;&quot;&gt;&lt;tbody&gt;


&lt;tr&gt;
&lt;th style=&quot;background-color: #a7c942; border: 1px solid rgb(152, 191, 33); color: white; font-size: 1.1em; padding: 5px 7px 4px;&quot;&gt;Marks Range&lt;/th&gt;
&lt;th style=&quot;background-color: #a7c942; border: 1px solid rgb(152, 191, 33); color: white; font-size: 1.1em; padding: 5px 7px 4px;&quot;&gt;Grade&lt;/th&gt;
&lt;th style=&quot;background-color: #a7c942; border: 1px solid rgb(152, 191, 33); color: white; font-size: 1.1em; padding: 5px 7px 4px;&quot;&gt;Grade Point&lt;/th&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;91-100&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;A1&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;10&lt;/td&gt;&lt;/tr&gt;

&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;81-90&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;A2&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;9&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;71-80&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;B1&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;8&lt;/td&gt;&lt;/tr&gt;

&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;61-70&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;B2&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;7&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;51-60&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;C1&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;6&lt;/td&gt;
&lt;/tr&gt;

&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;41-50&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;C2&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;5&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;33-40&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;D&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;4&lt;/td&gt;&lt;/tr&gt;

&lt;tr class=&quot;alt&quot;&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;21-32&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;E1&lt;/td&gt;
&lt;td style=&quot;background-color: #eaf2d3; border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;--&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;00-20&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;E2&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(152, 191, 33); font-size: 1em; padding: 3px 7px 2px;&quot;&gt;--&lt;/td&gt;&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;Central Board of Secondary Education (CBSE)&lt;/strong&gt;, New Delhi has recently issued a teacher&#39;s manual on CCE for class 9 and class 10. From the current session 2009-2010, this new scheme of (CCE) continuous and comprehensive evaluation is being implemented in class 9th and the same will be implemented in class 10th too from next session i.e. 2010-2011. CCE is a continuous and comprehensive evaluation that aimed at evaluating performance on the basis of end term examinations and on academics, co-curricular sports etc on a regular basis. In this new grading system, CBSE board will not conduct board exams for &lt;strong&gt;class 10&lt;/strong&gt; and the school authorities will be issued a certificate of school as per the guidelines given by CBSE board.
&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.4em;&quot;&gt;
The proposed Certificate of School Based Assessment will be divided into three parts:
&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;strong&gt;1. Part 1 will consist of Scholastic areas &lt;/strong&gt;

&lt;br /&gt;

The academic performance of the learner in the classes 9th and 10th will reflect in the form of grades and percentile rank. During a year, two terms have been suggested, term 1 from April to September and term 2 from October to March for classes 9th and class 10th. Each term will carry two formative and one summative assessment. The grading scale for scholastic domain will be a nine point scale based on direct grading.

&lt;br /&gt;&lt;br /&gt;

&lt;strong&gt;2. Part 2 will comprise of co-scholastic areas which include Life-Skills and attitudes and values.&lt;/strong&gt;

&lt;br /&gt;

A five point grading scale for assessment in Life-Skills and a three point scale for assessment in attitudes and values have been proposed.

&lt;br /&gt;&lt;br /&gt;

&lt;strong&gt;3. Part 3 consists of co-scholastic activities which include participation in Literary, Scientific, aesthetic and Club activities.&lt;/strong&gt;

&lt;br /&gt;

Under this head , second sub-section includes Health and Physical Education. It is proposed that students will access on a three point scale in all these areas.
&lt;/SPAN&gt;

&lt;br /&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;b&gt;Evaluation of Scholastic areas&lt;/b&gt;
&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
Each term will carry two Formative assessments and one Summative assessment for the evaluation of Scholastic areas.
&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;b&gt;Formative Assessment:&lt;/b&gt; Formative assessment is a tool that will be used by the teacher to continuously monitor student progress in a non-threatening as well as supportive environment. If used effectively, it can improve the performance of a student tremendously while raising the self esteem of the child and reducing the work load of the teacher. Some of the great features of Formative assessment are that it is diagnostic and remedial that provides effective feedback to students and allows for the active involvement of students in their own learning, enables teachers for adjusting teaching to take account of the results of assessment and recognizes the profound influence that assessment has on the motivation and self-esteem of students, both of which are crucial influences in learning. It is advisable that the school should not restrict the Formative assessment to only a paper-pencil test. There are other means of testing for e.g. through quizzes, interviews, conversations, visual testing, oral testing, projects, practicals and assignments. For the current year, there will be only two Formative assessments for 
&lt;b&gt;Class IX&lt;/b&gt; for the (remaining) second term. It is advised that the Schools may conduct more than two such assessments and take the best two out of those. Assessments done periodically will be shown to the students or parents for encouraging continuous participatory improvement.
&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;b&gt;Summative Assessment&lt;/b&gt;: The Summative assessment is the terminal assessment of performance at the end of instruction. Under the end term Summative assessment, the students will be tested internally that will based on the following criteria:-
&lt;/span&gt;
&lt;br /&gt;

&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;a)&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt; Curriculum and Syllabus for Classes IX will be the same as circulated by the &lt;strong&gt;CBSE Board &lt;/strong&gt; earlier.&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;b)&lt;/b&gt;&lt;/span&gt; 
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;The Summative assessment will be in the form of a pen-paper test that is conducted by the schools themselves. It will be conducted at the end of each term.&lt;/span&gt; 

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;c)&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;In order to ensure standardization, and to ensure uniformity, the Question Banks in different subjects for generating question papers will be forwarded by the Board to schools in March 2010.&lt;/span&gt; 

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;d)&lt;/b&gt;&lt;/span&gt; 
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;In order to cater to difference in the pace of responding, the Schools will give flexible timing to the students during end term Summative assessment.&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;e)&lt;/b&gt;&lt;/span&gt; 
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;For the current year, there will be only one term end Summative assessment for the (remaining) second term to be conducted in March 2010 for Class IX students.&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;f)&lt;/b&gt;&lt;/span&gt; 
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;Evaluation of answer scripts will be done by the school Teachers themselves on the basis of the Marking Scheme provided by the Board.&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;color: #000099;&quot;&gt;&lt;b&gt;g)&lt;/b&gt;&lt;/span&gt; 
&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;There will be random verification of the assessments procedures carried on by schools by the Board officials/nominees appointed by the Board.&lt;/span&gt;

&lt;br /&gt;&lt;br /&gt;

&lt;span style=&quot;background-color: white; color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.4em;&quot;&gt;
&lt;b&gt;The Weightage of Formative Assessment (FA) and Summative Assessment (SA) will be as follows:&lt;/b&gt;&lt;/SPAN&gt;

&lt;tbody&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; style=&quot;width: 513px;&quot;&gt;&lt;colgroup&gt;&lt;col width=&quot;63&quot;&gt;&lt;/col&gt;&lt;col width=&quot;92&quot;&gt;&lt;/col&gt;&lt;col width=&quot;80&quot;&gt;&lt;/col&gt;&lt;col width=&quot;134&quot;&gt;&lt;/col&gt;&lt;col width=&quot;122&quot;&gt;&lt;/col&gt;&lt;/colgroup&gt;&lt;tbody style=&quot;border: 0px; line-height: 16px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td bgcolor=&quot;#ffd320&quot; width=&quot;63&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Term&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td bgcolor=&quot;#ffd320&quot; width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Type of Assessment&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td bgcolor=&quot;#ffd320&quot; width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Percentage of weightage in Academic session&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td bgcolor=&quot;#ffd320&quot; width=&quot;134&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Term – wise weightage&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td bgcolor=&quot;#ffd320&quot; width=&quot;122&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Total&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td rowspan=&quot;3&quot; width=&quot;63&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;FIRST TERM (April – Sept.)&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment I&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;10%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td rowspan=&quot;2&quot; width=&quot;134&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment-1+2=20%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td rowspan=&quot;6&quot; width=&quot;122&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0.2in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative = 40%&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; margin-bottom: 0.2in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Summative = 60%&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Total 100%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment 2&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;10%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Summative Assessment 1&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;20%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;134&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Summative Assessment -1=20%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td rowspan=&quot;3&quot; width=&quot;63&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;SECOND TERM (Oct. – March)&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment 3&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;10%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td rowspan=&quot;2&quot; width=&quot;134&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment-3+4=20%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Formative Assessment 4&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;10%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;border: 0px; margin: 0px; outline: 0px; padding: 0px;&quot;&gt;&lt;td width=&quot;92&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Summative Assessment 2&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;80&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;40%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td width=&quot;134&quot;&gt;&lt;div style=&quot;border: 0px; margin-bottom: 0in; outline: 0px; padding: 0px;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;Summative Assessment-2=40%&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;

&lt;div style=&quot;background-color: #ffffff;color: #000000; font-family:TAHOMA, Arial, Helvetica, sans-serif;&quot;&gt;
However, considering that CCE has been introduced in middle of the academic year, it will only be implemented for the second term for &lt;strong&gt;Class IX&lt;/strong&gt;. The schools have the choice to implement one of the following for this academic year:&lt;/div&gt;


&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/1206816832157400354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/CCE-System-Examination-Reforms-2014.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/1206816832157400354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/1206816832157400354'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/CCE-System-Examination-Reforms-2014.html' title='CBSE CCE System and Examination Reforms 2013-14'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-542818464267354512</id><published>2013-05-26T08:00:00.000-07:00</published><updated>2017-12-09T22:23:14.486-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Biology"/><category scheme="http://www.blogger.com/atom/ns#" term="Class 11th"/><category scheme="http://www.blogger.com/atom/ns#" term="Class 12th"/><category scheme="http://www.blogger.com/atom/ns#" term="Science"/><title type='text'>Biology 11th &amp; 12th All Full Forms (Abbreviations) - Most Viewed</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;In this post, you will find all high school biology short forms and their expansion. Many times they are asked in examination as &quot;&lt;b&gt;S&lt;/b&gt;hort &lt;b&gt;A&lt;/b&gt;nswer &lt;b&gt;Q&lt;/b&gt;uestions&quot;. Sometimes in &quot;&lt;b&gt;L&lt;/b&gt;ong &lt;b&gt;A&lt;/b&gt;nswer &lt;b&gt;Q&lt;/b&gt;uestions&quot; also you will find that they are extremely Useful.&lt;/span&gt;&lt;br /&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;PMC &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Pollen Mother Cell&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;MMC &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Megaspore Mother Cell&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;PEN &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Primary Endosperm Nucleus&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;PEC &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Primary Endosperm Cell&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;IUDs &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Intra Uterine Devices&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;MTP &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Medical Termination of Pregnancy&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;STDs &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Sexually Transmitted Devices&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ET &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Embryo Transfer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;IVF &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;In&amp;nbsp;Vitro&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;Fertilization&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ART &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Assisted Reproductive&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;Technologies&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ZIFT &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Zygote Intra Fallopian Transfer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;PIDs &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Pelvic&amp;nbsp;Inflammatory Diseases&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;AI &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Artificial Insemination&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;IUI &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Intra Uterine Insemination&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;IUT &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Intra Uterine Transfer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;GIFT &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Zygote&amp;nbsp;Intra Fallopian Transfer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;MOET &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Multiple Ovulation Embryo Transfer&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;SCP &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; &amp;nbsp;Single Cell&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;Protein&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;LAB &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Lactic Acid Bacteria&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;STPs &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Sewage Treatment Plants&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;BOD &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Biochemical Oxygen Demand&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;MALT &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Mucosal Associated Lymphoid Tissues&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;CMI &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Cell-Mediated Immunity&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;AIDS &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;&amp;nbsp;Acquired&amp;nbsp;Immuno Deficiency&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;Syndrome&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;NACO &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; National Aids Control Organisation&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;HIV &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Human Immuno-deficiency Virus&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;CT &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; &amp;nbsp;Computed Tomography&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;MRI &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp;Magnetic Resonance Imaging&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ELISA &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Enzyme Linked Immuno-Sorbant Essay&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;PMNL &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Polymorpho-Nuclear Leukocytes&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;AMI &amp;nbsp; &amp;nbsp; &lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Antibody Mediated Immunity&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ICSI &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Inta Cytoplasmic Sperm Injection&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;RTIs &amp;nbsp; &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; Reproductive Tract Infections&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&lt;b&gt;ICBN &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;→ &amp;nbsp; International Code for&amp;nbsp;Botanical&amp;nbsp;Nomenclature&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;b&gt;ICZN &amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px;&quot;&gt;→ &lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 12px; line-height: 16px;&quot;&gt;&amp;nbsp; International Code for&amp;nbsp;Zoological&amp;nbsp;Nomenclature&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/542818464267354512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Biology-11th-12th-Full-Forms-Abbreviation.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/542818464267354512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/542818464267354512'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Biology-11th-12th-Full-Forms-Abbreviation.html' title='Biology 11th &amp; 12th All Full Forms (Abbreviations) - Most Viewed'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-7183490291179034463</id><published>2013-05-14T05:05:00.003-07:00</published><updated>2017-12-23T01:13:29.611-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="mathematics"/><category scheme="http://www.blogger.com/atom/ns#" term="Number System"/><title type='text'>Number System | Binary | Hexadecimal | Roman | Fractions</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h2 style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 30px;&quot;&gt;
Types of Numbers&lt;/h2&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
&lt;b&gt;Natural numbers&lt;/b&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;span style=&quot;font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;&lt;b&gt;(ℕ)&lt;/b&gt;&lt;/span&gt;

&lt;br /&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;The counting numbers {1, 2, 3, ...}, are called natural numbers. They include all the counting numbers i.e. from 1 to infinity.&lt;/i&gt;&lt;/div&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Whole numbers &lt;span style=&quot;color: #20124d;&quot;&gt;(w)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;
They are the natural numbers including zero. Not all whole numbers are natural numbers, but all natural numbers are whole numbers.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Integers &lt;span style=&quot;color: #20124d;&quot;&gt;(Z)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;
Positive and negative counting numbers, as well as zero.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Rational numbers &lt;span style=&quot;color: #20124d;&quot;&gt;(Q)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;
Numbers that can be expressed as a fraction of an integer and a non-zero integer.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Real numbers &lt;span style=&quot;color: #20124d;&quot;&gt;(ℝ)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;All numbers that can be expressed as the limit of a sequence of rational numbers. Every real number corresponds to a point on the number line.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Irrational numbers&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;A real number that is not rational is called irrational.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Complex Numbers &lt;span style=&quot;color: #20124d;&quot;&gt;(C)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;Includes real numbers and imaginary numbers, such as the square root of negative one.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #161640; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 26px;&quot;&gt;
Hypercomplex numbers &lt;span style=&quot;color: #20124d;&quot;&gt;(C)&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;color: #006600; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
&lt;i&gt;Includes various number-system extensions: quaternions, octonions, tessarines, coquaternions, and biquaternions.&lt;/i&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 26px;&quot;&gt;
Number representations&lt;/h2&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Decimal&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
The standard Hindu–Arabic numeral system using base ten.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Binary&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
The base-two numeral system used by computers.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Roman&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
The numeral system of&amp;nbsp;ancient Rome, still occasionally used today.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Fractions&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
A representation of a non-integer as a ratio of two integers. These include improper fractions as well as mixed numbers.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Scientific Notation&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
A method for writing very small and very large numbers using powers of 10. When used in science, such a number also conveys the precision of measurement using significant figures.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: #073763; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 17px;&quot;&gt;
Knuth&#39;s up-arrow notation and Conway chained arrow notation&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: &amp;quot;tahoma&amp;quot; , &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif; font-size: 15px;&quot;&gt;
Notations that allow the concise representation of extremely large integers such as Graham&#39;s number.&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/7183490291179034463/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Number-System-Binary-Hexadecimal-Roman-Fractions.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7183490291179034463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7183490291179034463'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Number-System-Binary-Hexadecimal-Roman-Fractions.html' title='Number System | Binary | Hexadecimal | Roman | Fractions'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-2065686944624883161</id><published>2013-05-06T03:36:00.003-07:00</published><updated>2015-01-02T03:29:02.166-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="mathematics"/><category scheme="http://www.blogger.com/atom/ns#" term="Quadrangles"/><category scheme="http://www.blogger.com/atom/ns#" term="Quadrilaterals"/><title type='text'>Types and Properties of Quadrilaterals (Quadrangles)</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13; font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;&lt;i&gt;A quadrilateral is a polygon with four sides (edges) or four vertices or four corners&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;color: #274e13; font-family: Arial, Helvetica, sans-serif; font-size: x-large;&quot;&gt;&lt;i&gt;it can also be called as a &lt;span style=&quot;color: #444444;&quot;&gt;TETRAGON&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #274e13; font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #444444;&quot;&gt;&amp;nbsp;&lt;/span&gt; &lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzvweIq81BHMsncfcs0bMAbkYUtjtL46Xu2ncdJg5URczPC7yW3qEc-n28cinRPwbuoX76WlEfcOsW_0K1U41O14O0FpQC11VlkFUlgZsF1v8kWCdTYv1-fPZ8cC9-hAy3MttAQk4r8dsz/s1600/QUADRILATERAL.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzvweIq81BHMsncfcs0bMAbkYUtjtL46Xu2ncdJg5URczPC7yW3qEc-n28cinRPwbuoX76WlEfcOsW_0K1U41O14O0FpQC11VlkFUlgZsF1v8kWCdTYv1-fPZ8cC9-hAy3MttAQk4r8dsz/s1600/QUADRILATERAL.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;There are different types and varieties of quadrilaterals&amp;nbsp;having different properties such as different angles and sides. You can learn them here in a very easy and informative way.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;After reading this tutorial you can answer these questions like&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;What are the properties of quadrilateral?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;What is a diagonal and what are adjacent sides?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;How many types of quadrilaterals are there in Geometry? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;What is a cyclic &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;quadrilateral and what are its properties&lt;/span&gt;&lt;/span&gt;?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;And at last but not the least all types and properties of parallelogram, rhombus, square, rectangle, kite, oblong, trapezoid, etc.&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2 font-family=&quot;helvetica,sans-serif;&quot; style=&quot;color: black; font-size: 22px; text-align: left;&quot;&gt;
&lt;b&gt;Properties of Quadrilaterals:&lt;/b&gt;&lt;/h2&gt;
-Four sides.&lt;br /&gt;
-Four vertices (corners).&lt;br /&gt;
-Interior angles sum to 360&lt;sup&gt;°&lt;/sup&gt;.&lt;br /&gt;
-Exterior angles sum to 360&lt;sup&gt;°&lt;/sup&gt;.&lt;br /&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2 arial=&quot;&quot; font-family:=&quot;&quot; helvetica=&quot;&quot; sans-serif=&quot;&quot; style=&quot;color: black; font-size: 22px; text-align: left;&quot;&gt;
&lt;b&gt;Important Terms Related to Quadrilateral:&lt;/b&gt;&lt;/h2&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;Diagonals&lt;/span&gt;&lt;/u&gt;:-&lt;/b&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;i&gt;Diagonals are line segments that join two opposite vertices of a quadrilateral (corners).&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
A quadrilateral can have maximum two diagonal&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggDHfrc0CYz9PvZuIJxcery4DW3Tm2dM-bzwnjreu5bMDUa9h2AuGOL4S_cWgqj8hmjOx9VESqwDc2vkthTmk6JzFfJinO0cKHahj5n618ut2yfeP8_2WS_RraSkLQTSnxhBVvSZmW-WQO/s1600/Diagonal+of+a+Quadrilateral.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggDHfrc0CYz9PvZuIJxcery4DW3Tm2dM-bzwnjreu5bMDUa9h2AuGOL4S_cWgqj8hmjOx9VESqwDc2vkthTmk6JzFfJinO0cKHahj5n618ut2yfeP8_2WS_RraSkLQTSnxhBVvSZmW-WQO/s1600/Diagonal+of+a+Quadrilateral.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;Where AD is the line segment joining two opposite vertices A and D&lt;/span&gt;&lt;/div&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;Adjacent Sides&lt;/span&gt;&lt;/u&gt;:-&lt;/b&gt;

&lt;/h3&gt;
&lt;i&gt;Two sides are adjacent, if they share a common vertex.&lt;/i&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizYe_ePI46FodmduqDSe0WLKDdC_X8r8S88CLOg1DBc4uNZlo72fEa4Z5t0XdDtulkVRYOfkIkGa5A3v7CzFBC0ntOIy9FKFQHDFRzTHlFJawinxQ9BKXr5O1hmavCs1y0Gwg3RUcNcNfH/s1600/Adjacent+Sides.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizYe_ePI46FodmduqDSe0WLKDdC_X8r8S88CLOg1DBc4uNZlo72fEa4Z5t0XdDtulkVRYOfkIkGa5A3v7CzFBC0ntOIy9FKFQHDFRzTHlFJawinxQ9BKXr5O1hmavCs1y0Gwg3RUcNcNfH/s1600/Adjacent+Sides.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;In the quadrilateral shown above the 4 pair of adjacent sides are:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&amp;nbsp;AD and DC&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;DC and BC&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;BC and AB&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;AB&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;and&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;AD&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #20124d; font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;Adjacent Angles&lt;/span&gt;&lt;/u&gt;:-&lt;/b&gt;

&lt;/h3&gt;
&lt;i&gt;Two angles are adjacent, if they share a common side.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj63krUUNt4i3raqV8SxnV0pyGmdTOFe7nMA19eIe8xvEmb58B9rToEYbCS2XBXyeLDjDv5eBjdLECopaeXD-zDLj3IhvZt5g5LWSqXNgEQykR71gMvYzKCVy5_V37nxrThUwFmgbAwIoGP/s1600/Adjacent+Angles.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj63krUUNt4i3raqV8SxnV0pyGmdTOFe7nMA19eIe8xvEmb58B9rToEYbCS2XBXyeLDjDv5eBjdLECopaeXD-zDLj3IhvZt5g5LWSqXNgEQykR71gMvYzKCVy5_V37nxrThUwFmgbAwIoGP/s1600/Adjacent+Angles.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;In the quadrilateral shown above the 4 pair of adjacent angles are:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px;&quot;&gt;∠1 and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;∠3&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px;&quot;&gt;∠3 and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;∠4&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px;&quot;&gt;∠2 and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;∠4&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px;&quot;&gt;∠1 and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 15px;&quot;&gt;∠2&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;color: #cc0000; text-align: left;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Types of Quadrilaterals&lt;/span&gt;&lt;/h3&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;div align=&quot;left&quot;&gt;
There are special types of quadrilateral:                                     &lt;/div&gt;
&lt;img alt=&quot;Types of Quadrilateral&quot; src=&quot;http://www.mathsisfun.com/geometry/images/quadrilaterals.gif&quot; height=&quot;98&quot; width=&quot;611&quot; /&gt;&lt;/div&gt;
Some  types are also included in the definition of other types! For example a &lt;b&gt;square&lt;/b&gt;, &lt;b&gt;rhombus&lt;/b&gt; and &lt;b&gt;rectangle&lt;/b&gt; are also &lt;b&gt;&lt;i&gt;parallelograms&lt;/i&gt;&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #cc0000;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Concave Quadrilaterals&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;background-color: white; color: #555555; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; margin-bottom: 15px; padding: 0px; zoom: 0 !important;&quot;&gt;
A quadrilateral that contains a reflex angle.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #555555; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; margin-bottom: 15px; padding: 0px; zoom: 0 !important;&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h4 style=&quot;color: black; font-family: Arial, Helvetica, sans-serif; text-align: left;&quot;&gt;

&lt;b&gt;1.&amp;nbsp;&lt;a href=&quot;http://eduonline24.blogspot.in/2013/05/Parallelogram-Properties-Perimeter-Area-Types-Formulas.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Parallelogram&lt;/a&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;A parallelogram is a quadrilateral with two pairs of parallel and equal sides&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;img alt=&quot;Parallelogram&quot; src=&quot;http://www.mathsisfun.com/images/quadrilateral-parallelogram.gif&quot; height=&quot;124&quot; width=&quot;205&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Parallelogram &lt;/b&gt;:-&lt;/h4&gt;
&lt;ul class=&quot;_kYe&quot;&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite sides are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite angels are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Consecutive angles are supplementary (i.e., Sum of consecutive angle = 180°).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;If one angle is right angle, then all angles are right angle(i.e., It is a square).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals of a parallelogram bisect each other to form two pairs of congruent triangles.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;2. &lt;a href=&quot;http://eduonline24.blogspot.in/2013/04/Rhombus-Properties-Area-Perimeter.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Rhombus&lt;/a&gt;&amp;nbsp;(Rhomb) {Equilateral Quadrangle&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;div style=&quot;clear: left; float: left; margin-bottom: 1em; margin-left: 1em;&quot;&gt;
&lt;div style=&quot;clear: left; float: left; margin-bottom: 1em; margin-left: 1em;&quot;&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;&lt;i&gt;A rhombus is a parallelogram all of whose all four sides are congruent&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;img alt=&quot;Rhombus&quot; src=&quot;http://www.mathsisfun.com/images/quadrilateral-rhombus.gif&quot; height=&quot;125&quot; width=&quot;388&quot; /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Rhombus :-&lt;/b&gt;&lt;/h4&gt;
&lt;ul class=&quot;_kYe&quot;&gt;
&lt;li class=&quot;_AXc&quot;&gt;All four sides are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite sides are parallel(i.e., It&#39;s a parallelogram). &lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite angels are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Consecutive angles are supplementary (i.e., Sum of consecutive angle = 180°).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals of a rhombus bisect pairs of opposite angles.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;If one angle is right angle, then all angles are right angle(i.e., It is a square).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Four congruent triangles are formed by diagonals. &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;3. Rhomboid &lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;&lt;i&gt;A rhomboid is a parallelogram in which adjacent sides are of unequal lengths and oblique angles&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;img class=&quot;rg_i&quot; data-src=&quot;https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS7KMCUh_PKqOKGtRrog8SqJnb1rqXEO9ec9VnkwQ6za92k__bV7g&quot; data-sz=&quot;f&quot; name=&quot;SxbP9zJNvZoKNM:&quot; src=&quot;https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS7KMCUh_PKqOKGtRrog8SqJnb1rqXEO9ec9VnkwQ6za92k__bV7g&quot; style=&quot;height: 120px; margin-left: 0px; margin-right: 0px; margin-top: 0px; width: 176px;&quot; /&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Rhomboid :-&lt;/b&gt;&lt;/h4&gt;
&lt;ul class=&quot;_kYe&quot;&gt;
&lt;li class=&quot;_AXc&quot;&gt;All four sides are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite angels are congruent(i.e., Equal in length).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite angels are parallel(i.e., It&#39;s a parallelogram).&lt;br /&gt;
&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Consecutive angles are supplementary (i.e., Sum of consecutive angle = 180°).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;If one angle is right angle, then all angles are right angle(i.e., It is a square).&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals bisect each other to form two pairs of congruent triangles. &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt; &lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;4. &lt;a href=&quot;http://eduonline24.blogspot.in/2013/04/Rectangles-Properties-Area-Perimeter-Character-Definition.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Rectangle &lt;/a&gt;[Equiangular Quadrangle]&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;A rectangle is a plane figure with four straight sides and four right angles&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Properties of Rhombus :-&lt;/b&gt;&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Opposite sides that are congruent and parallel.&lt;/li&gt;
&lt;li&gt;Adjacent sides are of unequal length&amp;nbsp; &lt;/li&gt;
&lt;li&gt;
            Consecutive angles are supplementary, and&lt;/li&gt;
&lt;li&gt;
            Diagonals bisect each other.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;5. &lt;a href=&quot;http://eduonline24.blogspot.in/2013/04/Square-Definition-Area-Perimeter.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Square &lt;/a&gt;{Regular Quadrilateral}&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;A square is a rhombus whose all angles are right angles&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Square :-&lt;/b&gt;&lt;/h4&gt;
&lt;div class=&quot;_yXc&quot;&gt;
&lt;ul class=&quot;_kYe&quot;&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals bisect each other and at right angle.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals bisect its angles.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;Opposite sides parallel and congruent.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;All four angles square are congruent.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;All four sides square are congruent.&lt;/li&gt;
&lt;li class=&quot;_AXc&quot;&gt;The diagonals are congruent.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;6. Oblong&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;A oblong is a rectangle which has unequal&amp;nbsp;adjacent&amp;nbsp;sides.&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of oblong :-&lt;/b&gt;&lt;/h4&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li class=&quot;_AXc&quot;&gt;&lt;div class=&quot;answer_text&quot;&gt;
Two sets of parallel lines meeting at right angles.&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;answer_text&quot;&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;7. Kite&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;b&gt;&lt;i&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;A kite is a quadrilateral whose two pair of adjacent sides are equal&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Kites:-&lt;/b&gt;&lt;/h4&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Two sets of parallel lines meeting at right angles.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Two disjoint pairs of consecutive sides are congruent by definition&amp;nbsp;&amp;nbsp; &lt;b&gt;Note:&lt;/b&gt; &lt;i&gt;Disjoint&lt;/i&gt; means that the two pairs are totally separate.&lt;/li&gt;
&lt;li&gt;The diagonals are perpendicular.&lt;/li&gt;
&lt;li&gt;One diagonal is the perpendicular bisector of the other diagonal&lt;/li&gt;
&lt;li&gt;The main diagonal bisects a pair of opposite angles.&lt;/li&gt;
&lt;li&gt;The opposite angles at the endpoints of the cross diagonal are congruent.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;8. Trapezoid (Trapezium)&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;i&gt;A quadrilateral with at least one pair of&amp;nbsp;parallel&amp;nbsp;sides is known as a trapezoid&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;h4 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Properties of Kites:- &lt;/b&gt;&lt;/h4&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;The bases are parallel by definition.&lt;/li&gt;
&lt;li&gt;
  Each lower base angle is supplementary to the upper base angle on the same side.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #cc0000;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;Cyclic Quadrilaterals&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;background-color: white; font-family: Arial, sans-serif; font-size: 13px; line-height: 19.1875px; margin-bottom: 0.5em; margin-top: 0.4em;&quot;&gt;
A &lt;b&gt;cyclic quadrilateral&lt;/b&gt; &lt;b&gt;(inscribed quadrilateral)&lt;/b&gt; is a quadrilateral drawn inside a circle so that its corners lie on the circumference of the circle&lt;/div&gt;
&lt;/div&gt;
whose vertices all lie on a single circle. This circle is called the &lt;i&gt;circumcircle&lt;/i&gt;&amp;nbsp;or&amp;nbsp;circumscribed circle, and the vertices are said to be &lt;i&gt;concyclic&lt;/i&gt;. The center of the circle and its radius are called the &lt;i&gt;circumcenter&lt;/i&gt; and the &lt;i&gt;circumradius&lt;/i&gt; respectively. Other names for these quadrilaterals are &lt;b&gt;concyclic quadrilateral&lt;/b&gt; and &lt;b&gt;chordal quadrilateral&lt;/b&gt;, the latter since the sides of the quadrilateral are chords of the circumcircle.
&lt;br /&gt;
&lt;div style=&quot;background-color: white; line-height: 19.1875px; margin-bottom: 0.5em; margin-top: 0.4em;&quot;&gt;
&lt;/div&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Properties of Cyclic Quadrilaterals:&lt;/b&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;div style=&quot;border: 0px; font-family: &#39;Helvetica Neue&#39;, Arial, &#39;Liberation Sans&#39;, FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; padding: 0px; vertical-align: baseline;&quot;&gt;
(a) &lt;b&gt;the opposite angles of a cyclic quadrilateral sum to 180°&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; font-family: &#39;Helvetica Neue&#39;, Arial, &#39;Liberation Sans&#39;, FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; padding: 0px; vertical-align: baseline;&quot;&gt;
i.e. a+ c = 180°&lt;br /&gt;
b + d = 180°&lt;/div&gt;
&lt;div style=&quot;border: 0px; font-family: &#39;Helvetica Neue&#39;, Arial, &#39;Liberation Sans&#39;, FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; padding: 0px; vertical-align: baseline;&quot;&gt;
(b)&lt;b&gt; the exterior angle of a cyclic quadrilateral is equal to the interior&lt;br /&gt;opposite angle&lt;/b&gt;&lt;br /&gt;
i.e. e = c&lt;/div&gt;
&lt;hr color=&quot;green&quot; style=&quot;line-height: normal;&quot; width=&quot;100%&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border: 0px; line-height: 19px; margin-bottom: 20px; padding: 0px; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;color: #cc0000;&quot;&gt;&lt;span style=&quot;background-color: #ffffe8; line-height: 28px;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;Summary&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
Here is a list of all the properties of quadrilaterals that we have mentioned along with the classes of the quadrilaterals that possess those properties:&lt;/div&gt;
&lt;div class=&quot;shift&quot; style=&quot;background-color: #ffffe8; font-family: &#39;trebuchet ms&#39;, Verdana, Arial, Helvetica, sans-serif; line-height: 28px; margin-left: 80px;&quot;&gt;
&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;font-size: large; line-height: 28px;&quot; valign=&quot;top&quot;&gt;&lt;b&gt;Property&lt;/b&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;font-size: large; line-height: 28px;&quot;&gt;&lt;b&gt;Quadrilaterals&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Orthodiagonal&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Kite, Dart, Rhombus, Square&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Cyclic&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Square, Rectangle, Isosceles Trapezoid&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Inscriptible&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Kite, Dart, Rhombus, Square&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Having two parallel sides&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Rhombus, Square, Rectangle, Parallelogram, Trapezoid&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Having two pairs of parallel sides&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Rhombus, Square, Rectangle, Parallelogram&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Equilateral&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Rhombus, Square&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Equiangular&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot;&gt;&lt;/td&gt;&lt;td style=&quot;line-height: 28px;&quot; valign=&quot;top&quot;&gt;Rectangle, Square&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/2065686944624883161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Quadrilaterals-Quadrangles-Types-Properties-Angle-Sum.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2065686944624883161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2065686944624883161'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/Quadrilaterals-Quadrangles-Types-Properties-Angle-Sum.html' title='Types and Properties of Quadrilaterals (Quadrangles)'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzvweIq81BHMsncfcs0bMAbkYUtjtL46Xu2ncdJg5URczPC7yW3qEc-n28cinRPwbuoX76WlEfcOsW_0K1U41O14O0FpQC11VlkFUlgZsF1v8kWCdTYv1-fPZ8cC9-hAy3MttAQk4r8dsz/s72-c/QUADRILATERAL.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-5716326062043171231</id><published>2013-05-04T04:16:00.000-07:00</published><updated>2013-05-04T22:40:58.420-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Board"/><category scheme="http://www.blogger.com/atom/ns#" term="latest news"/><category scheme="http://www.blogger.com/atom/ns#" term="May 2013"/><category scheme="http://www.blogger.com/atom/ns#" term="vocational courses"/><title type='text'>Skill development vocational courses | CBSE to make students employable</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;Taking education a step further, the Central Board of Secondary Education (&lt;b&gt;CBSE&lt;/b&gt;) has now introduced Skill Development in schools from standard 9 onward.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;With its recent changes in curriculum, the Board has asked affiliated schools to start Skill development vocational courses. This will prepare students to handle challenges of the job market with ease.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;CBSE has shortlisted some private institutes which offer special training programs for Skill development.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;In order to take this initiative to a maximum number of students, CBSE has asked schools to tie up with these private institutes.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;The list, drawn up by CBSE, includes 35 skill knowledge providers in 11 areas, including retail, information technology, security, automobile, banking and insurance, hospitality and tourism, mass media and media production, health and beauty, music production, design, and medical diagnostics.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;CBSE Chairman, &lt;b&gt;Mr.Vineet Joshi&lt;/b&gt; said, “This course is essential for students to excel and emerge successful in real life situations of work.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;This course will give them basic information of a working environment as they graduate from school. Skilled manpower and right exposure will help students to attain the best positions in various organizations.”&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;The objective of introducing such a subject is to create a positive impact for the inclusive growth of students.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;Students studying in CBSE-affiliated schools will be given a choice to opt for these competency-based skill courses along with the general academic subjects in order to enhance their skills in their chosen field.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #555555; font-family: arial; font-size: 12px; line-height: 24px;&quot;&gt;Skill development courses will not only ensure &lt;b&gt;employment of students post school&lt;/b&gt; but will also help them in &lt;b&gt;pursuing higher studies&lt;/b&gt; in their favorite field due to the academic teaching given to them during this span.&lt;/span&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/5716326062043171231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/CBSE-Skill-development-vocational-courses-students-employable.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/5716326062043171231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/5716326062043171231'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/CBSE-Skill-development-vocational-courses-students-employable.html' title='Skill development vocational courses | CBSE to make students employable'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-7143026600161194833</id><published>2013-05-04T03:23:00.000-07:00</published><updated>2015-11-21T04:34:56.170-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Board Exams"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Board"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Result"/><category scheme="http://www.blogger.com/atom/ns#" term="Education"/><category scheme="http://www.blogger.com/atom/ns#" term="Education News"/><category scheme="http://www.blogger.com/atom/ns#" term="latest news"/><category scheme="http://www.blogger.com/atom/ns#" term="May 2013"/><title type='text'>CBSE Class 12 and Class 10 Result 2013 for All Regions </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;

&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h1&gt;
CBSE 12th Result 2013&lt;/h1&gt;
&lt;/div&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9rno8_kPkMfhcNzwxdSj_SXZ9XGlqYCvfyTOHRvJvXQseCybFAcQ6tBo253in9XfObeg4vIDPa68unFeydU5brIQ2pGehEE75sVKTGYFxYjczygHRs5DeBOJeNPoIdVN9HsBJKJGR_JDg/s226/download+(28).jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img alt=&quot;12th results | Eduonline 24 | Pradeep Singh&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9rno8_kPkMfhcNzwxdSj_SXZ9XGlqYCvfyTOHRvJvXQseCybFAcQ6tBo253in9XfObeg4vIDPa68unFeydU5brIQ2pGehEE75sVKTGYFxYjczygHRs5DeBOJeNPoIdVN9HsBJKJGR_JDg/s226/download+(28).jpg&quot; title=&quot;CBSE Class 12 and Class 10 Result 2013 for All Regions &quot; /&gt;&lt;/a&gt;


&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
The CBSE 12th Result 2013 is expected to be up on the CBSE website by end of May for all regions.&lt;br /&gt;
The CBSE Class 12th Examination 2013 was conducted from 1 March 2013 to 17 March 2013.&lt;br /&gt;
Since the CBSE class 12 results 2012 were declared on 28 May 2012 with a pass percentage of 80%, candidates can expect their result around the same time and they should keep their roll number with them.&lt;br /&gt;
CBSE Board was set up by the Government of India in 1929 as a joint Board named ‘Board of High School and Intermediate Education, Rajputana’. In 1952, it became the ‘Central Board of Secondary Education’. The board functions under the overall supervision of the Controlling Authority which is vested with the Secretary Education, Government of India, Ministry of Human Resource Development. &lt;br /&gt;
Candidates who had appeared for CBSE Class 10 Examination 2013 can expect their result in the last week of May. In 2012, the CBSE board had declared result on 24 May 2013 and hence the CBSE 10th result can be expected around the same time.
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
The Central Board of Secondary Education (CBSE) conducted Class 10th examination from 2 March 2013 to 15 March 2013. The Central Board of Secondary Education (CBSE) Board also introduced Continuous and Comprehensive Evaluation (CCE) for the first time in 2011. &lt;br /&gt;
The CBSE Board presently affiliates all Kendriya Vidyalayas, Jawahar Navodaya Vidyalayas, private schools, Government Schools, Independent Schools and Central Tibetean Schools. In order to execute its functions effectively Regional Offices were set up by the CBSE Board in Allahabad, Ajmer, Chennai, Guwahati, Panchkula, and Delhi. Schools located outside India are looked after by regional office Delhi.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h2&gt;
CBSE 2013 Results via SMS for Class 10th and 12th&lt;/h2&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
Are you looking for your 10th or 12th results of CBSE board? What about getting results by SMS as soon as it get published. If you own a mobile, you can get your board results right into your mobile inbox as an sms.&lt;br /&gt;
The results of 10th Grade &amp;amp; 12th grade exams will be declared after 26th of this month. CBSE has not officially declared the date when results will be declared but students are anxiously waiting for their result as the marks matters a lot for higher studies.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 20px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h2&gt;
Follow these steps to Get CBSE Board Results via SMS&lt;/h2&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;Go to resutls.gov.in and register. click &lt;a color:=&quot;#663300&quot; href=&quot;http://results.gov.in/StudentRegistration.aspx&quot; target=&quot;_blank&quot; title=&quot;register for cbse result by sms&quot; vertical-align:=&quot;&quot;&gt;here&lt;/a&gt; to register&lt;/li&gt;
&lt;li&gt;While registering submit your board there properly &amp;amp; check all services including sms service&lt;/li&gt;
&lt;li&gt;After successful registration, you will be getting sms just after the declaration of your result.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;b&gt;Alternative ways&lt;/b&gt;:
The sms channel for CBSE board results 2013 is also available for almost all kind of prepaid postpaid telecommunication services. Needless to say that you need to pay for every sms you will be sending or for each result.
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Price for One Result via SMS is &lt;b&gt;0.50 INR&lt;/b&gt; Apx. (depending upon different corporation service charge and taxes)&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h4&gt;
Getting Board results via sms:&lt;/h4&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
All You need to write and send an SMS to the channel to get your result (once result gets declared). Type &lt;b&gt;CBSE 10 YOUR ROLL NUMBER&lt;/b&gt; and send it to these numbers (according to your network provider)
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
SSC Results for 10th Board Results&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;ol&gt;
&lt;li&gt;Airtel: 54321202, 55077&lt;/li&gt;
&lt;li&gt;BSNL: 57766&lt;/li&gt;
&lt;li&gt;Vodafone: 56735&lt;/li&gt;
&lt;li&gt;IDEA: 55456068&lt;/li&gt;
&lt;li&gt;Tata Docomo/Tata Indicom: 54321, 51234,5333300&lt;/li&gt;
&lt;li&gt;Aircel: 5800002&lt;/li&gt;
&lt;li&gt;MTNL: 52001&lt;/li&gt;
&lt;li&gt;NIC: 9212357123&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 17px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;h3&gt;
Class 12 or HSSC Part 2 Results&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma,Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
For getting class 12th results, you need to type &lt;b&gt;cbse10 and your roll no.&lt;/b&gt; and send it to the number below (according to your network provider)

&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Airtel: 54321202, 55077&lt;/li&gt;
&lt;li&gt;BSNL: 57766&lt;/li&gt;
&lt;li&gt;Vodafone: 56735&lt;/li&gt;
&lt;li&gt;IDEA: 55456068&lt;/li&gt;
&lt;li&gt;Tata Docomo/Indicom: 54321, 51234,5333300&lt;/li&gt;
&lt;li&gt;MTNL: 52001&lt;/li&gt;
&lt;li&gt;Aircel: 5800002&lt;/li&gt;
&lt;li&gt;NIC: 9212357123&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/7143026600161194833/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/05/cbse-class-12-and-class-10-result-2013.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7143026600161194833'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/7143026600161194833'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/05/cbse-class-12-and-class-10-result-2013.html' title='CBSE Class 12 and Class 10 Result 2013 for All Regions '/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9rno8_kPkMfhcNzwxdSj_SXZ9XGlqYCvfyTOHRvJvXQseCybFAcQ6tBo253in9XfObeg4vIDPa68unFeydU5brIQ2pGehEE75sVKTGYFxYjczygHRs5DeBOJeNPoIdVN9HsBJKJGR_JDg/s72-c/download+(28).jpg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-2875480161685875102</id><published>2013-04-27T23:40:00.000-07:00</published><updated>2015-01-02T01:43:57.113-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Contact"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Email"/><category scheme="http://www.blogger.com/atom/ns#" term="Helpline Numbers"/><title type='text'>CBSE, NEET, JEE, CTET and JNVST Helpline, Contact and Email Numbers </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;color: black; font-family: Verdana; font-size: 18px; line-height: 16px;&quot;&gt;In order to execute its functions effectively Regional Offices have been set up by the Board in different parts of the country to be more responsive to the affiliated schools. The Board has regional offices in Allahabad, Ajmer, Chennai, Guwahati, Panchkula and Delhi. Schools located outside India are looked after by regional office Delhi.&lt;/span&gt;

&lt;br /&gt;
&lt;h2 style=&quot;color: #39251c; font-family: Verdana; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;CBSE Contact Numbers and Email&lt;/span&gt;&lt;/h2&gt;
&lt;ul style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;h3&gt;
&lt;strong&gt;Chairman, Secretary &amp;amp; Chief Vigilance Officer&lt;/strong&gt;&lt;/h3&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;span style=&quot;color: navy;&quot;&gt;&lt;strong&gt;Vineet Joshi, IAS&lt;/strong&gt;&lt;/span&gt;&lt;/blockquote&gt;
&lt;blockquote style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel. 91-11-22023737, 22467263, 22549628&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;blockquote style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: blue;&quot;&gt;Email:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;a href=&quot;mailto:secy-cbse@nic.in&quot; style=&quot;outline: none;&quot;&gt;secy-cbse@nic.in&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;ul style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;h3&gt;
&lt;strong&gt;Examination Matters&lt;/strong&gt;&lt;/h3&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;M C Sharma,&lt;br /&gt;Controller of Examination&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;span style=&quot;color: blue;&quot;&gt;Tel. 91-11-22515828&lt;br /&gt;Email:&lt;/span&gt;&amp;nbsp;&lt;a href=&quot;mailto:mcsharma.cbse@nic.in&quot; style=&quot;outline: none;&quot;&gt;&lt;span style=&quot;font-family: Arial; font-size: 10pt;&quot;&gt;mcsharma.cbse@nic.in&lt;/span&gt;&lt;/a&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;strong style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;AIEEE&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;blockquote style=&quot;color: #39251c; font-family: Verdana; font-size: 12px; line-height: 16px; text-align: justify;&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Pitam Singh&lt;br /&gt;Head of Deptt.(Special Exams)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;font-family: Arial; font-size: 10pt;&quot;&gt;Tel.&amp;nbsp; 91-11-22235774&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;background-color: white; font-family: Georgia, Times New Roman, serif;&quot;&gt;CBSE has set up a dedicated Call Centre for handling routine&amp;nbsp;inquiries&amp;nbsp;and grievances pertaining to various activities and functions of the Board. Students&amp;nbsp;presently studying in various CBSE affiliated schools, candidates appearing in private examination, pass out students of CBSE Board, parents, School management, new school seeking CBSE affiliation, awardees of CBSE scholarship schemes, aspirants and applicants for NEET, JEE, CTET, JNVST and general public can approach the CBSE Call Centre for obtaining information of the procedures/rules and regulations of various activities of the Board.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: #222222; font-family: Arial, Verdana; font-size: 14px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; vertical-align: baseline;&quot;&gt;
Through Telephone/Mobile phone one can contact us on all working&amp;nbsp;weekdays between 9:30 am to 7 pm on the following telephone nos.&lt;/div&gt;
&lt;blockquote style=&quot;background-color: white; border-left-color: rgb(202, 218, 231); border-left-style: solid; border-width: 0px 0px 0px 3px; color: #666666; font-family: Arial, Verdana; font-size: 14px; font-style: italic; line-height: 20px; margin: 1.5em; overflow: hidden; padding: 0px 0px 0px 9px; quotes: &#39;&#39;; text-align: justify; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;border: 0px; font-family: inherit; font-style: inherit; margin-bottom: 10px; padding: 0px; text-align: center; vertical-align: baseline;&quot;&gt;
&lt;strong&gt;1800 118 002 [Toll Free]&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;011-22509257&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;011-22509258&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;011-22509259&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;011-22509256 [Tele-fax]&lt;/strong&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: #222222; font-family: Arial, Verdana; font-size: 14px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; vertical-align: baseline;&quot;&gt;
On all days 24×7 one can e-mail us giving details of his/her grievance/query along with contact number and details at:&lt;/div&gt;
&lt;blockquote style=&quot;background-color: white; border-left-color: rgb(202, 218, 231); border-left-style: solid; border-width: 0px 0px 0px 3px; color: #666666; font-family: Arial, Verdana; font-size: 14px; font-style: italic; line-height: 20px; margin: 1.5em; overflow: hidden; padding: 0px 0px 0px 9px; quotes: &#39;&#39;; text-align: justify; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;border: 0px; font-family: inherit; font-style: inherit; margin-bottom: 10px; padding: 0px; text-align: center; vertical-align: baseline;&quot;&gt;
&lt;strong&gt;cbsecc@gmail.com&lt;/strong&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: #222222; font-family: Arial, Verdana; font-size: 14px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify; vertical-align: baseline;&quot;&gt;
Through post one may contact us by sending a letter through Speed Post at:&lt;/div&gt;
&lt;div style=&quot;background-color: white; border: 0px; color: #222222; font-family: Arial, Verdana; font-size: 14px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: center; vertical-align: baseline;&quot;&gt;
&lt;strong&gt;Joint Secretary (Administration&amp;amp; Vigilance)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;Central Board of Secondary Education [CBSE], Shiksha Kendra&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;2, Community Centre, Preet Vihar, Delhi-110301 INDIA&lt;/strong&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot; style=&quot;background-color: white; border: 0px; color: #222222; font-family: Arial, Verdana; font-size: 14px; line-height: 20px; margin-bottom: 10px; padding: 0px; vertical-align: baseline;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/2875480161685875102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Contact-Email-Helpline-NEET-JEE-CTET-JNVST-Numbers.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2875480161685875102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2875480161685875102'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Contact-Email-Helpline-NEET-JEE-CTET-JNVST-Numbers.html' title='CBSE, NEET, JEE, CTET and JNVST Helpline, Contact and Email Numbers '/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-835181188583103919</id><published>2013-04-27T23:23:00.002-07:00</published><updated>2015-01-02T01:38:53.777-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE Contact"/><category scheme="http://www.blogger.com/atom/ns#" term="CBSE emails"/><title type='text'>CBSE Contact Addresses and Phone Numbers 2015</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
CBSE has set up a dedicated Call Centre for handling routine enquiries and grievances pertaining to various activities and functions of the Board. Students&amp;nbsp;presently studying in various CBSE affiliated schools, candidates appearing in private examination, pass out students of CBSE Board, parents, School management, new school seeking CBSE affiliation, awardees of CBSE scholarship schemes, aspirants and applicants for NEET, JEE, CTET, JNVST and general public can approach the CBSE Call Centre for obtaining information of the procedures/rules and regulations of various activities of the Board.&lt;/div&gt;
&lt;blockquote style=&quot;background: rgb(244, 245, 247); border: 1px dashed rgb(204, 204, 204); color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin: 5px 0px; padding: 8px 8px 8px 10px;&quot;&gt;
&lt;h3 style=&quot;font-size: 14px; margin: 0px; padding: 0px;&quot;&gt;
General Enquiry:&amp;nbsp;011-22509256 – 59, 011-22239177-80&lt;/h3&gt;
&lt;/blockquote&gt;
&lt;blockquote style=&quot;background: rgb(244, 245, 247); border: 1px dashed rgb(204, 204, 204); color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin: 5px 0px; padding: 8px 8px 8px 10px;&quot;&gt;
&lt;h3 style=&quot;font-size: 14px; margin: 0px; padding: 0px;&quot;&gt;
CBSE Helpline Number:&amp;nbsp;1800 11 8002&lt;/h3&gt;
&lt;/blockquote&gt;
&lt;blockquote style=&quot;background: rgb(244, 245, 247); border: 1px dashed rgb(204, 204, 204); color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin: 5px 0px; padding: 8px 8px 8px 10px;&quot;&gt;
&lt;h3 style=&quot;font-size: 14px; margin: 0px; padding: 0px;&quot;&gt;
JEE (Main) Helpline Number: 8506061071-78&lt;/h3&gt;
&lt;/blockquote&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
&lt;span style=&quot;margin: 0px; padding: 0px; text-decoration: underline;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px;&quot;&gt;Note&lt;/strong&gt;&lt;/span&gt;: One can call on all working&amp;nbsp;days from Monday to Friday between 9:30 am to 7 pm.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
One can also e-mail queries to directoracad.cbse@nic.in, mcsharma2007@rediffmail.com.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
One can also contact CBSE through a postal letter on the following address:&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
&lt;strong style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;em style=&quot;margin: 0px; padding: 0px;&quot;&gt;Central Board of Secondary Education [CBSE], Shiksha Kendra&lt;/em&gt;&lt;/strong&gt;&lt;br style=&quot;margin: 0px; padding: 0px;&quot; /&gt;&lt;strong style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;em style=&quot;margin: 0px; padding: 0px;&quot;&gt;2, Community Centre, Preet Vihar, Delhi-110301 INDIA&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
For better accessibility and convenience of the students, CBSE has for the first time setup a Centralized Call System. The students can call on the above number and get in touch with counselors for one to one telephonic counseling&amp;nbsp;from 8 a.m upto mid-night.&lt;/div&gt;
&lt;div style=&quot;background-color: white; color: #333333; font-family: Verdana, &#39;BitStream vera Sans&#39;, Tahoma, Helvetica, sans-serif; font-size: 12px; line-height: 18.6666660308838px; margin-bottom: 12px; margin-top: 12px; padding: 0px;&quot;&gt;
For further convenience of the students, a toll free number has now been installed. Students can call&amp;nbsp;the number&amp;nbsp;from any part of the country. The operators will answer general queries and also connect them to the counselors for counseling.&lt;/div&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 550px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;div align=&quot;center&quot;&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;h3&gt;
&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: large;&quot;&gt;Contact&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;center&gt;
Central Board of Secondary Education Head Office&lt;br /&gt;&quot;Shiksha Kendra&quot;, 2, Community Centre, Preet Vihar, Delhi - 110 092.&lt;/center&gt;
&lt;table border=&quot;1&quot; bordercolor=&quot;black&quot; style=&quot;border-collapse: collapse; width: 100%px;&quot;&gt;&lt;/table&gt;
&lt;table border=&quot;1&quot; bordercolor=&quot;black&quot; style=&quot;border-collapse: collapse; width: 100%px;&quot;&gt;&lt;tbody&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;20%&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Chairman&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td width=&quot;40%&quot;&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Vineet Joshi, IAS&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td width=&quot;40%&quot;&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22023737, 23220154&lt;br /&gt;&lt;br /&gt;Email: chmn-cbse@nic.in&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Affiliation, Administration and Scholarship Matters&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;&lt;br /&gt;Secretary &amp;amp; CVO&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22549627, 22549628&lt;br /&gt;&lt;br /&gt;Email: secy-cbse@nic.in&lt;br /&gt;Tel. (CVO) : 91-11-22524152, Fax:22025545&lt;br /&gt;Email: cvo.cbse@gmail.com&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Examination Matters&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;M C Sharma,&lt;br /&gt;Controller of Examination&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel.&amp;nbsp;&amp;nbsp; 91-11-22515828&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email: mcsharma.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;CTET/JNV&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Pitam Singh&lt;br /&gt;Director (Special Exams &amp;amp; CTET)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel.&amp;nbsp; 91-11-22235774&lt;br /&gt;Fax: 91-11-22235775&lt;/span&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email:&amp;nbsp;&lt;/span&gt;pitams.cbse@nic.in&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Training &amp;amp; Academics&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Dr Sadhana Parashar&lt;br /&gt;Director (Training)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel.&amp;nbsp; 91-11-23212603,23234324&lt;br /&gt;Fax.&amp;nbsp;91-11-23234324&lt;/span&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;sadhanap.cbse@nic.in&lt;/span&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;br /&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Advisor&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;B.M Gupta&lt;br /&gt;Advisor&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel . 91-11-22542693&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email&lt;b&gt;&amp;nbsp;:&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;bmgupta.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;I.T. Department&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Dr. Antriksh Johri&lt;br /&gt;Director (IT)&lt;br /&gt;&lt;br /&gt;Kamal Kumar Khandelwal&lt;br /&gt;Deputy Secretary (IT)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy;&quot;&gt;Tel. 91-11-22239188&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email:&amp;nbsp; director-it@cbse.gov.in&lt;br /&gt;&lt;br /&gt;Email:&amp;nbsp; kamalcbse@gmail.com&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;EDUSAT &amp;amp; Vocational Education;&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;P I Sabu&lt;br /&gt;Director (EDUSAT)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Delhi Region&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;M V V Prasada Rao&lt;br /&gt;Director (Delhi Region)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel: 011-22248885&lt;br /&gt;Fax: 011-22248990&lt;br /&gt;Email: rodelhi.cbse@nic.in&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;JEE (Main)&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Rajbir Singh&lt;br /&gt;Joint Secretary&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;J K Yadav&lt;br /&gt;Deputy Secretary&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22246095&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email:&amp;nbsp; rajbir.cbse@nic.in&lt;br /&gt;&lt;br /&gt;Email:&amp;nbsp;jkyadav.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;NEET&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Joseph Emmanuel&lt;br /&gt;Joint Secretary (OSD)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22059683&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email: josephe.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Online Affiliation and Affiliation website&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Shambhu Lal Prasad&lt;br /&gt;Programmer&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;Tel: 011-22520242, Fax: 011-22540655&lt;br /&gt;
Email:&amp;nbsp; cbse.aff@nic.in&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;CTET&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Jaiprakash Chaturvedi&lt;br /&gt;Assistant Secretary (CTET)&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 22240104&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email: ctet@cbse.gov.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Public Relations&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Mrs Rama Sharma&lt;br /&gt;Public Relations Officer/ Public Information Officer&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22440083&lt;br /&gt;Telefax. 91-11-22440083&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Email: ramas.cbse@nic.in&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;LIBRARY&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Dr B N Singh&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #20124d;&quot;&gt;Library &lt;/span&gt;&lt;span style=&quot;color: navy;&quot;&gt;and Information Officer&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;Tel. 91-11-22521081&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;Scholarship Matters&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;011-22509256-59 Ext. 218&lt;/b&gt;&lt;br /&gt;&lt;b&gt;Email: scholarship.cbse@nic.in&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;General Enquiry&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;Tel. 91-11-22509256 - 59&lt;br /&gt;RO Delhi: 22239177-80&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;JEE (Main) Helpline&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&lt;span style=&quot;color: #0c343d;&quot;&gt;8506061071&lt;/span&gt;-&lt;span style=&quot;color: #0c343d;&quot;&gt;78&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: x-small;&quot;&gt;CBSE Helpline Number&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&lt;div align=&quot;left&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: x-small;&quot;&gt;&lt;b&gt;1800-11-8002&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: large;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;b&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: large;&quot;&gt;Regional Offices&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;table border=&quot;1&quot; bordercolor=&quot;black&quot; style=&quot;border-collapse: collapse; width: 100%px;&quot;&gt;&lt;tbody align=&quot;left&quot; valign=&quot;top&quot;&gt;
&lt;tr&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Director (Delhi Region):&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;M V V Prasada Rao&lt;br /&gt;Tel: 011-22248885&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, PS-1-2, Institutional Area, I.P.Extn. Patparganj, Delhi-110 092.&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;NCT of Delhi, Foreign Schools&lt;/span&gt;&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel:91-11-22239177-80&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-family: Arial;&quot;&gt;Fax: 91-11-22248990&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;&lt;br /&gt;rodelhi.cbse@nic.in&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;D T S Rao&lt;br /&gt;Tel: 91-44-26162213-14, 26161100&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central board of Secondary Education, Plot No. 1630 A, &quot;J&quot; Block, 16th Main Road&lt;br /&gt;Anna Nagar West, Chennai-600040.&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Tamil Nadu,Kerala, Andhra Pradesh, Karnataka, Maharashtra, Goa, Puducherry, Andaman and Nicobar Islands, Daman and Diu&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel. 91-44-26162214 /26162213&lt;br /&gt;Fax:91-44-26162212&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;rochennai.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;K K Choudhary&lt;br /&gt;Tel: 0361-2229992-94, 85&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, Shilpogram Road (Near Sankardev Kalakshetra),&lt;br /&gt;Panjabari, Guwahati-781037&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Assam, Nagaland, Manipur, Meghalaya, Tripura, Sikkim, Arunachal Pradesh, Mizoram.&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Telfax:91-361-2229992, 2229995&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;roguwahati.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;Pushpa K Wadhwa&lt;br /&gt;Tel: 0145-2627460, 2629928&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, Todarmal Marg, Ajmer-305 030&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Rajasthan,Gujarat, Madhya Pradesh, Dadra and Nagar Haveli&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel:91-145-2627451/2627139&lt;br /&gt;Fax:91-145-2421543&lt;/span&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;roajmer.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;R. J. Khanderao&lt;br /&gt;Tel: 0172-2585193&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, Sector- 5 , Panchkula - 134109 (Haryana)&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Haryana,U.T.of Chandigarh, Punjab, J&amp;amp;K, Himachal Pradesh.&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel: 91-172-2585193/2583547&lt;br /&gt;Fax:91-172-2585163&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;ropanchkula.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;S Devadas&lt;br /&gt;Tel: 0532-2407970, 2407710&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, 35 B, Civil Station, M.G. Marg , Civil Lines, Allahabad-211 015&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Uttar Pradesh, Uttaranchal&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel:91-532-2407970-72&lt;br /&gt;Fax:91-532-2408977&lt;br /&gt;&lt;br /&gt;roallahabad.cbse@nic.in&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;S U Sorte&lt;br /&gt;Tele Fax: 0612-2295008&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, Ambika Complex, Behind State Bank Colony, Near Brahmsthan,&lt;br /&gt;Sheikhpura, Bailey Road&lt;br /&gt;Patna-800 014.&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;Bihar, Jharkhand&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;New Regional Office opened&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;Tel:91-612-2295048&lt;br /&gt;Tel: 2295008, 2295080&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ropatna.cbse@nic.in&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;182&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Regional Officer:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: navy;&quot;&gt;A S Verma&lt;br /&gt;Tel: 0674-2547312&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;strong&gt;&lt;span style=&quot;color: red; font-family: Arial; font-size: 10pt;&quot;&gt;Regional Office&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: navy; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;br /&gt;Central Board of Secondary Education, 6th Floor, Alok Bharti Building, Shaheed Nagar, Bhubaneswar&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;West Bengal, Orissa, Chhattisgarh&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;New Regional Office opened&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;td valign=&quot;top&quot; width=&quot;182&quot;&gt;&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;table style=&quot;color: #408080; font-family: Arial; font-size: 10pt;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;Computer Section&lt;/td&gt;&lt;td&gt;91-674-2548412&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Administration&lt;/td&gt;&lt;td&gt;91-674-2548512&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Examination&lt;/td&gt;&lt;td&gt;91-674-2548612&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Asstt Secretary&lt;/td&gt;&lt;td&gt;91-674-2548212&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;AB Cell&lt;/td&gt;&lt;td&gt;91-674-2548712&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
rocbsebbsr@rediffmail.com&lt;br /&gt;
robhubaneshwar.cbse@nic.in&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/835181188583103919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Address-Phone-Numbers-Contacts-Jee-CTET-NEET-Helpline.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/835181188583103919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/835181188583103919'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/04/CBSE-Address-Phone-Numbers-Contacts-Jee-CTET-NEET-Helpline.html' title='CBSE Contact Addresses and Phone Numbers 2015'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-9014741379868738298</id><published>2013-04-26T23:38:00.000-07:00</published><updated>2013-05-04T22:42:17.214-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="CTET"/><title type='text'>Teacher not able to Clear CTET ( Mandatory Test ) of CBSE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #3f3f3f; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;KOCHI: It has been made mandatory by the government for schools to appoint teachers who&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOKu6b1_tuGoBUiBbnZ6Y7AW2cK4POfs1WiCYAS9112BmnQpHeWflUxMYutS4p-ZfMK7YtrtAPBUGgDEw2i09x9ibR9veaRRJKDRqI_lPsk7XQ0H3Dtw2QA2AC_YuHZke2-f2QxvMRZCYd/s1600/download+(8).jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOKu6b1_tuGoBUiBbnZ6Y7AW2cK4POfs1WiCYAS9112BmnQpHeWflUxMYutS4p-ZfMK7YtrtAPBUGgDEw2i09x9ibR9veaRRJKDRqI_lPsk7XQ0H3Dtw2QA2AC_YuHZke2-f2QxvMRZCYd/s1600/download+(8).jpg&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;have cleared the central teacher eligibility test (CTET) to improve the quality of teachers. However, with hardly any CTET-qualified candidates available in the state, the CBSE schools are busy hiring teaching staff before the academic session begins in June.&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;area&quot; id=&quot;area-article-first-block&quot; style=&quot;background-color: white; border: 0px; color: #3f3f3f; line-height: 18px; margin: 0px; padding: 10px 0px 0px;&quot;&gt;
&lt;div class=&quot;mod-timesofindiaarticletext mod-articletext&quot; id=&quot;mod-a-body-first-para&quot; style=&quot;border: 0px; margin: 4px 0px 10px; padding: 0px 10px 0px 0px;&quot;&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Sources reveal that hardly 5% teachers selected in CBSE schools in the state have cleared the test conducted by the board. Meanwhile, the state government has already made entrance exam compulsory for recruitment of teachers in government and aided schools.&lt;/span&gt;&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;mod-timesofindiaarticletextwithadcpc mod-timesofindiaarticletext mod-articletext&quot; id=&quot;mod-a-body-after-first-para&quot; style=&quot;background-color: white; border: 0px; color: #3f3f3f; line-height: 18px; margin: 0px 0px 10px; padding: 0px 10px 0px 0px;&quot;&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&quot;The CBSE has given five years to existing teachers in CBSE schools to clear the entrance exam but not many from the state are appearing for the test. Also, CBSE insists that the qualifying exam for new appointments should be CTET, but we barely come across teachers who have cleared CTET. We appoint teachers with NET or SET,&quot; said Kerala CBSE school management association president T P M Ibrahim Khan.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;CTET is conducted for the appointment of candidates at two levels -- primary-level teachers (Class 1 to V) and junior-level teachers (Class VI to VIII) -- in accordance with the provisions of the Right to Education Act.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The rationale for including CTET as a minimum qualification for a person to be eligible for appointment as teacher is that it would bring national standards and benchmark of teacher quality in the recruitment process. Sources said it was also expected to induce teacher education institutions and students from these institutions to further improve their performance standards besides sending a positive signal to all stakeholders that the government lays special emphasis on teacher quality. The validity period of CTET qualifying certificate for appointment is seven years from the date of declaration of results for all categories. There is also no restriction on the number of attempts a person can take for clearing the test. A person who has qualified CTET may also appear again for improving his/her score.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&quot;We get almost 25 to 30 candidates for one teaching post. But none of them are CTET qualified. At present, we have difficulty in getting a teacher with language proficiency, good communication skills and excellent subject knowledge. In such a scenario, we can&#39;t really hope to hire a CTET-qualified candidate,&quot; said K Unnikrishnan, president of the Confederation of Kerala Sahodaya Complexes.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border: 0px; line-height: 20px; margin-bottom: 15px; padding: 0px;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Sources reveal that hardly 5% teachers selected in CBSE schools in the state have cleared the test conducted by the board.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/9014741379868738298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2013/04/Teacher-not-Clear-CTET-CBSE.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/9014741379868738298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/9014741379868738298'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2013/04/Teacher-not-Clear-CTET-CBSE.html' title='Teacher not able to Clear CTET ( Mandatory Test ) of CBSE'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOKu6b1_tuGoBUiBbnZ6Y7AW2cK4POfs1WiCYAS9112BmnQpHeWflUxMYutS4p-ZfMK7YtrtAPBUGgDEw2i09x9ibR9veaRRJKDRqI_lPsk7XQ0H3Dtw2QA2AC_YuHZke2-f2QxvMRZCYd/s72-c/download+(8).jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-2789724417804408734</id><published>2012-11-04T06:37:00.002-08:00</published><updated>2015-01-02T01:29:36.517-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="12th improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="Admit Card"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse improvement"/><title type='text'>CBSE 12th Improvement Exam Admit Card 2014-15</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;style&gt;
a:link {text-decoration:&quot;none&quot;}
a:visited {text-decoration:&quot;color:green&quot;}
a:active {text-decoration:&quot;color:blue&quot;}
a:hover {text-decoration:&quot;underline; color: red;&quot;}
&lt;/style&gt;

&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRHLkyyKO22O0g2Z-zmaUQfhvclP0r89DpQsBwuVxbHo10sHAW3sX2ka8YvpxeEef-TsmqsFlP1q3VBEbSVdEUKLrxkGjWEvN2jgx2N3ZvKfLpDwgkQgKn1tbx65x7TUJz6jnZMrQZV9et/s1600/admit.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRHLkyyKO22O0g2Z-zmaUQfhvclP0r89DpQsBwuVxbHo10sHAW3sX2ka8YvpxeEef-TsmqsFlP1q3VBEbSVdEUKLrxkGjWEvN2jgx2N3ZvKfLpDwgkQgKn1tbx65x7TUJz6jnZMrQZV9et/s1600/admit.jpg&quot; /&gt;&lt;/a&gt;


&lt;br /&gt;
&lt;div style=&quot;color: black; color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 16px; line-height: 20px; margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
This tutorial helps you to get an info about CBSE Improvement Exam Admit Card 2014-15. Hope it helps. Also consider similar posts that i had written on &lt;a color=&quot;#663300&quot; href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-12th-improvement-rules.html&quot; style=&quot;text-decoration: none;&quot; target=&quot;_blank&quot;&gt;CBSE 12th Improvement Rules&lt;/a&gt;, &lt;a color=&quot;#663300&quot; href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-Improvement-FAQs-Problems-2013.html&quot; target=&quot;_blank&quot;&gt;CBSE 12th Improvement FAQ&#39;S&lt;/a&gt; and &lt;a color=&quot;#663300&quot; href=&quot;http://eduonline24.blogspot.in/2013/05/class-10th-marks-improvement-exam-2013-14.html&quot; target=&quot;_blank&quot;&gt;CBSE 10th Improvement (EIOP) Rules&lt;/a&gt;
&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 10px; padding: 0px; text-align: justify;&quot;&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
Candidates (For Improvement Exam, Compartment Exam and Private Candidates) willing to sit in examinations conducted by board will receive an intimation letter from CBSE pertaining to roll number and examination centre. Candidates are requested to show the letter at the examination centre they are allotted to collect their admit card from the centre itself. &lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
Further you have to show this letter and collect your Admit Card and verify your date sheet from the above noted centre, from 15th February onwards. Please check all entries of your admit card including photo and in case of any discrepancy contact the CBSE office immediately on third (IIIrd) floor in case of Class XII and fourth (IVth) floor in case of Class X.&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;
 &lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
CBSE Admit card 2013 will soon be released by the Central Board of Secondary Education on their official website. So, students looking for CBSE admit card or Hall Ticket 2015 should visit this page frequently for regular updates or can follow the official website of CBSE for getting the required information on CBSE admit Card 2013.
 &lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
The admit card of CBSE Improvement Exam will may or may not be posted to your homes, It depends on your CBSE region. If you get a letter from CBSE about your new exam center then you may have to collect your admit card from there.
 &lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
Students appearing for CBSE Improvement Exam will get a letter from CBSE
 informing them about the exam center allotted to them. Then students will have to contact the exam center and collect the admit card from 
their respective exam centers. You may receive the admit card by post itself.&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
You will have to confirm from the respective exam center that weather they have collected the admit cards from the CBSE for you or not. Generally they collect the admit cards from CBSE by 15th February and allow students to collect admit cards from there by 25th February. Kindly note that these dates can change and you should contact your exam center as soon as you get the letter from 
CBSE.

&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
If you don’t get the admit card even 2-3 days before the exam then you should &lt;a color=&quot;#663300&quot; href=&quot;http://eduonline24.blogspot.in/2013/04/CBSE-Address-Phone-Numbers-Contacts-Jee-CTET-NEET-Helpline.html&quot; rel=&quot;follow&quot; target=&quot;_blank&quot;&gt;Contact CBSE offices&lt;/a&gt; at your nearby location.

&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h2&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;CBSE Private Candidate Admit Card 2014&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;Central Board of Secondary Education (CBSE) governs the regular as well as private exams for providing the comprehensive education to the students. The private exams are for those students who have not managed to pass the regular exam and want to reappear in the subsequent Board Exam. The private forms can be filled in for the class 10th and class 12th standards. The forms are made available in the regional offices of the CBSE in the months of Sept/Oct. it can be obtained by filling up the Application Form, three photographs of passport size and paying the charges within the last date. The Admit Card for the exams can be obtained from the official website or from the Regional Offices of the CBSE.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;h2&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;Procedure to Download Admit Card for CBSE Private Exam:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;1. Visit the official link of the CBSE and open the link for the CBSE Private Admit Card for Class 10th or Class 12th.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;2. Enter the details such as Name, Date of Birth, and Father’s Name Etc. in the spaces provided and gets the Admit Card through online.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;3. Print this Admission Card so as to bring it on the exam dates. Information regarding Admit Card for the private exam can also be received from the Regional Offices of the CBSE and in case, the Admit Card is lost, it can be issued from the R.O against the submission of application and charges required.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&lt;u&gt;&lt;span style=&quot;color: #660000;&quot;&gt;NOTE&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;: The Admit Card for the theory paper exams should be retained till the marks card or qualifying status for the exam is received. Students can get more info regarding CBSE Private&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;Admit Card from the Official Website of the CBSE: cbse.nic.in&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: normal; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: normal; text-align: left;&quot;&gt;
&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;&lt;a href=&quot;http://cbse.nic.in/welcome.htm&quot; rel=&quot;nofollow&quot; style=&quot;border: none; color: red; outline: none; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;Click here to download Admit Card&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: normal; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;
&lt;a href=&quot;https://plus.google.com/103476317329742563696&quot;&gt;&lt;u style=&quot;color: #cc0000;&quot;&gt;&lt;i&gt;&lt;b&gt;Pradeep Singh &lt;/b&gt;&lt;/i&gt;&lt;/u&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/2789724417804408734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2012/11/CBSE-Improvement-Exam-Admit-Card-2012-13.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2789724417804408734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/2789724417804408734'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2012/11/CBSE-Improvement-Exam-Admit-Card-2012-13.html' title='CBSE 12th Improvement Exam Admit Card 2014-15'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRHLkyyKO22O0g2Z-zmaUQfhvclP0r89DpQsBwuVxbHo10sHAW3sX2ka8YvpxeEef-TsmqsFlP1q3VBEbSVdEUKLrxkGjWEvN2jgx2N3ZvKfLpDwgkQgKn1tbx65x7TUJz6jnZMrQZV9et/s72-c/admit.jpg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-93861191937814293.post-6735285756203500420</id><published>2012-09-09T00:50:00.000-07:00</published><updated>2016-08-06T21:30:30.977-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="12th improvement"/><category scheme="http://www.blogger.com/atom/ns#" term="2015"/><category scheme="http://www.blogger.com/atom/ns#" term="cbse"/><category scheme="http://www.blogger.com/atom/ns#" term="Syndicate Banks"/><title type='text'>List of Syndicate Bank Branches for CBSE 12th Improvement 2014-15</title><content type='html'>&lt;div style=&quot;font-family:Tahoma, Arial, Verdana; font-size: 15px&quot;&gt;
CBSE students who are willing to apply for the improvement exam or the Private Candidates who are from Delhi or NCR can 
get examination form and deposit forms at the following branches of Syndicate Bank in Delhi/New Delhi area. 
&lt;br /&gt;
Private forms can be submitted to the said branches of Syndicate bank along with the examination fee. 
All the details about eligibility criteria and other procedure is mentioned in the form-cum-prospectus.
&lt;br /&gt;
The application forms for Improvement examination will be available &lt;b&gt; from July onward&lt;/b&gt;.
 You can purchase the forms of &lt;b&gt;class X and XII&lt;/b&gt; from these syndicate bank branches in Delhi. Kindly note that application forms for private/Improvement 
Candidate will be available in these branches during normal business hours i.e.&lt;b&gt;10.00 A.M. to 02.00 P.M.&lt;/b&gt;
&lt;br /&gt;

&lt;span style=&quot;color: red; font-size: 16px;&quot;&gt;*&lt;/span&gt;Marked branches where the timings will be 9.00 A.M. to 1.00 P.M.
&lt;br /&gt;

&lt;/div&gt;

&lt;br /&gt;
&lt;h2&gt;LIST OF SYNDICATE BANKS&lt;/h2&gt;
&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
#customers
{
font-family:&quot;Trebuchet MS&quot;, Arial, Helvetica, sans-serif;
width:100%;
border-collapse:collapse;
}
#customers td, #customers th 
{
font-size:1em;
border:1px solid #98bf21;
padding:3px 7px 2px 7px;
}
#customers th 
{
font-size:1.1em;
text-align:left;
padding-top:5px;
padding-bottom:4px;
background-color:#A7C942;
color:#ffffff;
}
#customers tr.alt td 
{
color:#000000;
background-color:#EAF2D3;
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;table id=&quot;customers&quot;&gt;
&lt;tr&gt;
&lt;th&gt;Sr.&lt;/th&gt;
  &lt;th&gt;Name of Branch&lt;/th&gt;
  &lt;th&gt;Address&lt;/th&gt;
  &lt;th&gt;Weekly Off&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1.&lt;/td&gt;
&lt;td&gt;East Patel Nagar&lt;/td&gt;
&lt;td&gt;Sethi Bhawan, Rajendra Place&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;2.&lt;/td&gt;
&lt;td&gt;R K Puram&lt;/td&gt;
&lt;td&gt;Tamil Sangam Building, Sec. 5, R K Puram&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3.&lt;/td&gt;
&lt;td&gt;Old Rajinder Nagar&lt;/td&gt;
&lt;td&gt;Old Rajinder Nagar Main Market&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;4.&lt;/td&gt;
&lt;td&gt;Peera Garhi&lt;/td&gt;
&lt;td&gt;DTC Depot, Outer Ring Road&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5.&lt;/td&gt;
&lt;td&gt;Asaf Ali Road&lt;/td&gt;
&lt;td&gt;Asaf Ali Road, Humdard Building&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;6.&lt;/td&gt;
&lt;td&gt;Azad Pur&lt;/td&gt;
&lt;td&gt;A-257, G. T. Karnal Road, Derawal Nagar, Azad Pur&lt;/td&gt;
&lt;td&gt;Wednesday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7.&lt;/td&gt;
&lt;td&gt;Najafgarh&lt;/td&gt;
&lt;td&gt;1643, Thana Road, Najafgarh&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;8.&lt;/td&gt;
&lt;td&gt;Punjabi Bagh&lt;/td&gt;
&lt;td&gt;Building No. 2 and 3, Central Market, Main West Punjabi Bagh&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9.&lt;/td&gt;
&lt;td&gt;Kashmere Gate&lt;/td&gt;
&lt;td&gt;Church Road Near Ritz Cinema&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;10.&lt;/td&gt;
&lt;td&gt;Lajpat Nagar-IV&lt;/td&gt;
&lt;td&gt;Delhi Institute for Hotel Management, Behind Lady Sriram College for Women&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;11.&lt;/td&gt;
&lt;td&gt;Nangloi&lt;/td&gt;
&lt;td&gt;1 Najafgarh Road&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;12.&lt;/td&gt;
&lt;td&gt;Narela&lt;/td&gt;
&lt;td&gt;2114, Bawana Road&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;13.&lt;/td&gt;
&lt;td&gt;Mayur Vihar&lt;/td&gt;
&lt;td&gt;A-1, Acharya Niketan, Mayur Vihar Phase-1&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;14.&lt;/td&gt;
&lt;td&gt;Patparganj&lt;/td&gt;
&lt;td&gt;DTC Depot&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15.&lt;/td&gt;
&lt;td&gt;I. P. Estate&lt;/td&gt;
&lt;td&gt;Bahadur Shah Jafar Marg&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;16.&lt;/td&gt;
&lt;td&gt;Ashok Vihar&lt;/td&gt;
&lt;td&gt;Central Market Near Deep Cinema&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;17.&lt;/td&gt;
&lt;td&gt;Hauz Khas&lt;/td&gt;
&lt;td&gt;2, Kaushalaya Marg Park&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;&lt;span style=&quot;color: red; font-size: 16px;&quot;&gt;*&lt;/span&gt;18.&lt;/td&gt;
&lt;td&gt;Yamuna Vihar&lt;/td&gt;
&lt;td&gt;DTC Depot&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style=&quot;color: red; font-size: 16px;&quot;&gt;*&lt;/span&gt;19.&lt;/td&gt;
&lt;td&gt;Nand Nagari&lt;/td&gt;
&lt;td&gt;DTC Depot&lt;/td&gt;
&lt;td&gt;Monday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;20.&lt;/td&gt;
&lt;td&gt;Seema Puri&lt;/td&gt;
&lt;td&gt;DTC Depot&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style=&quot;color: red; font-size: 16px;&quot;&gt;*&lt;/span&gt;21.&lt;/td&gt;
&lt;td&gt;Dev Nagar&lt;/td&gt;
&lt;td&gt;16B/6 D B Gupta Road&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;22.&lt;/td&gt;
&lt;td&gt;G.T.B. Nagar&lt;/td&gt;
&lt;td&gt;Kingsway Camp GTB Nagar&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;23.&lt;/td&gt;
&lt;td&gt;Janak Puri&lt;/td&gt;
&lt;td&gt;C-31, Community Center Near Janak Cinema&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;24.&lt;/td&gt;
&lt;td&gt;Malviya Nagar&lt;/td&gt;
&lt;td&gt;C-35, Malviya Nagar V&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;25.&lt;/td&gt;
&lt;td&gt;Rohini&lt;/td&gt;
&lt;td&gt;CSC-2 Competent Plaza Comm Complex Sec. 5, Rohini&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;26.&lt;/td&gt;
&lt;td&gt;K.G. Marg&lt;/td&gt;
&lt;td&gt;Connaught Place, Jevan Prakash Building&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;27.&lt;/td&gt;
&lt;td&gt;Nirman Vihar&lt;/td&gt;
&lt;td&gt;Vikas Marg&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;28.&lt;/td&gt;
&lt;td&gt;Sukhdev Vihar&lt;/td&gt;
&lt;td&gt;Okhla DTC Depot&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;29.&lt;/td&gt;
&lt;td&gt;Uttam Nagar&lt;/td&gt;
&lt;td&gt;WZ-13 A and B, Main Najafgarh Road&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;alt&quot;&gt;
&lt;td&gt;30.&lt;/td&gt;
&lt;td&gt;Paschim Vihar&lt;/td&gt;
&lt;td&gt;B-2 DDA Market, opp. Gurudwara, Paschim Vihar&lt;/td&gt;
&lt;td&gt;Sunday &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;

</content><link rel='replies' type='application/atom+xml' href='http://eduonline24.blogspot.com/feeds/6735285756203500420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://eduonline24.blogspot.com/2012/09/cbse-improvement-syndicate-banks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6735285756203500420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/93861191937814293/posts/default/6735285756203500420'/><link rel='alternate' type='text/html' href='http://eduonline24.blogspot.com/2012/09/cbse-improvement-syndicate-banks.html' title='List of Syndicate Bank Branches for CBSE 12th Improvement 2014-15'/><author><name>Pradeep Singh</name><uri>http://www.blogger.com/profile/02586909259185141193</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>