Skip to main content

Critical Essay on the Syllabus of English (8611 02)

Question 02: Write down a critical essay on the current syllabus of English taught in grade five.Answer:Critical Analysis of Grade 5 English Book
After a first glance on the contents of the book it could be noticed that the book was divided into three parts, each partconsist ten units in their respective part to further. There was a workbook, Supplementary and English reader which are included in the one book with the name called new English Reader. It also seemed to be following a pattern in its organization of the lessons. The first page of every unit presented the aims of the unit to the students; the a first lesson started with a reading section and then moved on to a grammar section, the final section of lesson presented practice materials. The second part began with a listening secti followed by grammar and practice sections. The third supplementary part was spread over referred to a previous parts/units related to the topic and language taught in previous parts. Distribution of language skills The overall weighting of the sections devoted to skills in the textbook it was evident that there was an imbalance between writing and the other skills (graph 1). Writing seemed to be given more importance throughout the book with 10 sections of the book focusing on writing. Furthermore, by comparing the number of speaking sections to the number of listening sections and the number of writing sections to reading sections, it could be inferred that productive skills received greater attention than receptive skills.
Although the format of the whole textbook attempted to take in new methodologies and focused on the four language skills the learners. needed to develop and claimed to be following the guidelines of NCERT, the design of the tests resembled a very traditional and out-dated approach. The authors could have based their tests on formats of contemporary validated tests for A2 levels in which grammar and vocabulary did not appear as sections but were rather assessed through the use of the four language skills in a communicative context. Finally, an issue of content validity of the tests could arise here, since learners were not given the opportunity to be assessed on the skills the textbook claimed to develop and the tests would fail to examine whether the learners had developed their language skills.

Comments

Popular posts from this blog

Jeeto Pakistan Show Essay

Jeeto Pakistan Jeeto Pakistan is a popular and successful show  world wide. It is on aired twice a weak; on Friday and Sunday 11 month of the year and daily during Ramadan. It was started 4 years ago during Ramadan and it is hosted by Pakistan’s celebrity of showbiz industry Fahad Mustafa. Fahad Mostafa is youngest celebrity of Pakistan and he is hosting this show from the very first day till now. He has also done work in many drama serials and movies, his recent famous movie was Actor in Law. Jeeto Pakistan show is on aired at ARY channel in evening from 19:30 to 22:30. It is totally a commercial show which is sponsored by different companies like Q. Mobilejk , Sogo, Qarshi and many other companies. This show includes many segments and each segment offers different prizes like bikes, cars, gold, ummrah tickets, commercial plots and many other appliances are distributed among people. People are selected for this show by Lucky Draw and one can be selected by doing shopping of ...

Area Calculation By ImageJ

  Area Calculation By ImageJ      Open the Software      File => Open       Zoom in the Image and select the straight line        Mark the small line on graph and go to analyse => set scale      Set known distance 01, unit cm and click ok       Go to free hand and cover the area you want to calculate       Then press (ctrl + m) repeat the process for 3 time       After that go to the result and summarize 

Weight conversion program using functions in c++

#include<iostream> using namespace std; int num(int n) { cout<<"num of chocolate:"; cin>>n; return n; } int ounce(int a) { cout<<"weight in ounce:"; cin>>a; return a; } int pound(int b) { cout<<"weight in pound:"; cin>>b; return b; } int main () { int n, a, b; char choice; cout<<"enter choice 'o' for ounce and 'p' for pounds:"; cin>>choice; int x, y, z; x = num(n); y = ounce(a); z = pound(b); if (choice == 'o') {cout<<"total weight in ounce:"<<x*y;} if (choice == 'p') {cout<<"total weight in pounds:"<<x*z;} return 0; } ************************** Output: