Skip to main content

UP TET 2011 Syllabus and Exam Pattern

Teacher Eligibility Test (UP TET) 2011 Syllabus and Exam Pattern

TETs 2011 in UP, MP, Karnataka,AP, Bengal,Tamilnadu, Kerala and Other States.

Details of notification and state specific terms of the exam and weightages in teachers recruitment and details of application procedure will be available on the websites of education departments of concerned states. National Council for Teacher Education (NCTE) has initiated new regulation for those aspiring to become teachers in schools under Government, private, unaided and aided categories. Now the candidates have to qualify in Central Teacher Eligibility Test (CTET) to be conducted at state level by state boards. CTET will be a compulsory and essential requirement for securing a teaching job in all types of schools.

Eligibility: B Ed degree. Validity of qualifying certificate (B.Ed.) will be decided by the state government/ Centre. The certificate can not be more than 7 years old. 

Exam pattern and Scheme: There will be 2 papers with objective multiple choice questions. Each paper will consist of 150 questions. These papers are intended for different levels of teaching as described below:

1. Paper I: For those want to become teachers for classes I-V.
2. Paper II: For those want to teach classes between VI and VIII.
3. Paper I and II: Those interested in teaching from Class I to VIII will have to appear and qualify in both the papers.

All paper subject will have 30 objective multiple choice type questions carrying one mark each. Duration of the exam is 1 hours and 30 minutes. Following are the papers:

1. Child development and pedagogy
2. Language I (the medium of instruction)
3. Language II (chosen from a list other than language I)
4. Mathematics
5. Environmental studies

Comments

  1. Education is the backbone of a generation. To keep pace with the world, generations need to be educated with proper way. This blog will be helpful to explore some new finding in education for the future. Thank you for sharing.

    ReplyDelete

Post a Comment

Popular posts from this blog

UP TET 2011 Exam Application,UPTET 2011 Result | UPTET 2011 Revised Result

UPTET 2011 Result | UPTET 2011 Revised Result | UPTET 2011 Updated Result |Board of High School and Intermediate Education Uttar Pradesh, Allahabad UP TET Advertisement 2011 and Exam Detail/Admit Card/Call Letter Download UP TET 2011 FORM & DETAILS  GET LATEST DETAIL ABOUT 72825 Primary Teacher Merit List UP TET 2011 Application form submission last date is 18-Oct-2011.Forms will be distributed from PNB bank all over UP.According to latest news Appearing B.Ed student also eligible for TET exam 2011 so they can also submit their forms to concern District.There is no requirement for Rojgar Registration No and Bank receipt within the application form.UP TET 2011 exam results will be avail on http://www.uptet2011.com . Now you can easily get Application from from the P.N.B bank Branches. UPTET 2011 Result | UPTET 2011 Revised Result | UPTET 2011 Updated Result |  Board of High School and Intermediate Education Uttar Pradesh, Al...

DataView Rowfilter With Like % in C#.Net

DataView RowFilter Syntax in C#,ASP.Net Example This example describes syntax of DataView.RowFilter expression. It shows how to correctly build expression string (without "SQL injection" ) using methods to escape values. Column names If a column name contains any of these special characters ~ ( ) # \ / = > < + – * % & | ^ ' " [ ], you must enclose the column name within square brackets [ ]. If a column namecontains right bracket ] or backslash \, escape it with backslash (\] or \\). [C#] dataView.RowFilter = "id = 10″; // no special character in column name " id " dataView.RowFilter = "$id = 10″; // no special character in column name " $id " dataView.RowFilter = "[#id] = 10″; // special character " #" in column name "#id" dataView.RowFilter = "[[id\]] = 10″; // special characters in column name " [id] " Literals String values are enclosed within single qu...

Print Div ,HTML or Table Content in Asp.net Using C#

Following is the code for printing  Div ,HTML or Table to printer using C# in Asp.net < script type ="text/javascript" language ="javascript">     function print()     {     var printFriendly = document.getElementById( "div1" )     var printWin = window.open( "about:blank" , "Voucher" , "menubar=no;status=no;toolbar=no;" );     printWin.document.write( "<html><head><title>Voucher Report</title></head><body><h1>Agent Wise Report</h1>" + printFriendly.innerHTML + "</body></html>" );     printWin.document.close();     printWin.window.print();        printWin.close();     }         </ script > add this script lines in your header section of given page. < div id ="div1"> < table ...