admin's blog

Disclaimer: This website is NOT associated with CBSE, for official website of CBSE visit - www.cbse.gov.in

(Paper) Sample Question Paper For Class XII Year 2011 (Economics) Paper - 2

Sample Question Paper For Class XII Year 2011

  • Subject: Economics
  • Time: 03 Hrs
  • Max Marks: 100

1. The two features of resources that give rise to an economic problem are (i) resources are limited and (ii) they have alternative uses.
2. Total expenditure will increase.
3. Equilibrium price will increase.
4. It is the price at which market demand and market supply are equal.
5. Cost of producing a good is the sum of actual expenditure on inputs and the imputed expenditure on the inputs supplied by the owner.
6. The factors causing an increase in demand of a commodity are:
(i) Rise in the price of substitute goods.
(ii) Fall in the price of complementary goods.
(iii) Rise in income of its buyers (in case of a normal good).
(iv) Fall in income of its buyers (in case of an inferior good).
(v) Favourable change in taste etc for the good.
(vi) Increase in the number of its buyers. (Any three)

7. Es = 1, at any point on the supply curve if it touches the origin when extended.
Es >1, at any point on the supply curve if it touches the y-axis when extended.
Es<1, at any point on the supply curve if if it touches the x-axis when extended.
Note: This question if answered with the help of diagrams will also be treated as correct.

8. Production Possibility Frontier (PPF) is a downward sloping, concave curve. It shows increasing Marginal Rate of Transformation (MRT) as more quantity of one good is produced by reducing quantity of the other good. This behaviour of the MRT is based on the assumption that all resources are not equally efficient in production of all goods. As more of one good is produced, less and less efficient resources have to be transferred to the production of the other good which raises marginal cost i.e. MRT.

GENERAL: 
Subjects: 
Exam / Class: 

(Model Paper) Andhra Pradesh Board Intermediate 2nd Year Model Question Papers (Economics)

Board of Intermediate Education, Andhra Pradesh

Economics Part-I

Time : 3 Hours
Max Marks : 100

Section – A

(Essay Question) 3x10 = 30 Marks

Answer any three of the following.

(1) Explain the role of Education and Health in India.

(2) Indian Economics is an Agricultural Economics. Discuss.

(3) Examine the various defects in agriculture marketing in India.

(4) Critically examine the I.P.R of 1991.

(5) Elucidate the inequalities of Income and Wealth. Examine the factors that influence inequalities.

GENERAL: 
Subjects: 

(Paper) Sample Question Paper For Class XII Year 2011 (Economics) Paper - 1

Sample Question Paper For Class XII Year 2011

  • Subject: Economics
  • Time: 03 Hrs
  • Max Marks: 100

Instructions:
1. All questions in both the sections are compulsory.
2. Marks for questions are indicated against each.
3. Question Nos. 1-5 and 17-21 are very short-answer questions carrying 1 mark each. They are required to be answered in one sentence each.
4. Question Nos. 6-10 and 22-26 are short-answer questions carrying 3 marks each. Answer to them should not normally exceed 60 words each.
5. Question Nos. 11-13 and 27-29 are also short-answer questions carrying 4 marks each. Answer to them should not normally exceed 70 words each.
6. Question Nos. 14-16 and 30-32 are long-answer questions carrying 6 marks each. Answer to them should not normally exceed 100 words each.
7. Answer should be brief and to the point and the above word limit be adhered to as far as possible.

Section A:

1. State two features of resources that give rise to an economic problem. (1)
2. What happens to total expenditure on a commodity when its price falls and its demand is price elastic? (1)
3. What happens to equilibrium price of a commodity if there is an ‘increase’ in its demand and ‘decrease’ in its supply? (1)
4. Give the meaning of equilibrium price. (1)
5. What is meant by cost in economics? (1)
6. State any three factors that cause an ‘increase’ in demand of a commodity. (3)
7. What will be the price elasticity of supply at a point on a positively sloped, straight line supply curve? (3)

8. Explain the shape of a production possibility frontier.
OR
Explain the meaning of the market economy and the centrally planned economy. (3)

9. How does the nature of a commodity influence its price elasticity of demand? (3)
10. Explain the changes that will take place in the market for a commodity if the prevailing market price is less than the equilibrium price. (3)
11. Calculate the price elasticity of demand for a commodity when its price increases by 25% and quantity demanded falls from 150 units to 120 units. (4)

12. Explain the relation between marginal revenue and average revenue when a firm is able to sell more quantity of output
(i) at the same price.
(ii) only by lowering the price.
OR
Explain the effect of the following on the supply of a commodity:
(a) Fall in the prices of factor inputs.
(b) Rise in the prices of other commodities. (4)

GENERAL: 
Subjects: 
Exam / Class: 

(Paper) Sample Question Paper For Class XII Year 2011 (Computer Science) Paper - 2

Sample Question Paper For Class XII Year 2011

  • Subject: Computer Science (Theory)
  • Time: 03 Hrs
  • Max Marks: 70

Question 1:

(a) What is the difference between Actual Parameter and Formal Parameters? Also, give a suitable C++ code to illustrate both.

(b) Write the names of the header files to which the following belong:
(i) frexp()
(ii) isalnum()

(c) Rewrite the following program after removing the syntactical errors (if any). Underline each correction.

#include <iostream.h>
struct Pixels
{ int Color,Style;}
void ShowPoint(Pixels P)
{ cout<<P.Color,P.Style<<endl;}
void main()
{
Pixels Point1=(5,3);
ShowPoint(Point1);
Pixels Point2=Point1;
Color.Point1+=2;
ShowPoint(Point2);
}

(d) Find the output of the following program:

#include <iostream.h>
void Changethecontent(int Arr[ ], int Count)
{
for (int C=1;C<Count;C++)

Arr[C-1]+=Arr[C];
}
void main()
{
int A[]={3,4,5},B[]={10,20,30,40},C[]={900,1200};
Changethecontent(A,3);
Changethecontent(B,4);
Changethecontent(C,2);
for (int L=0;L<3;L++) cout<<A[L]<<'#';
cout<<endl;
for (L=0;L<4;L++) cout<<B[L] <<'#';
cout<<endl;
for (L=0;L<2;L++) cout<<C[L] <<'#';
}

GENERAL: 
Subjects: 
Exam / Class: 

(Paper) Sample Question Paper For Class XII Year 2011 (Computer Science) Paper - 1

Sample Question Paper For Class XII Year 2011

  • Subject: Computer Science (Theory)
  • Time: 03 Hrs
  • Max Marks: 70

Question 1:

(a) What is the difference between Global Variable and Local Variable? Also, give a suitable C++ code to illustrate both.

(b) Which C++ header file(s) will be essentially required to be included to run / execute the following C++ code:

void main()
{
char Msg[ ]="Sunset Gardens";
for (int I=5;I<strlen(Msg);I++)
puts(Msg);
}

(c) Rewrite the following program after removing the syntactical errors (if any). Underline each correction.

#include [iostream.h]
class MEMBER
{
int Mno;float Fees;
PUBLIC:
void Register(){cin>>Mno>>Fees;}
void Display{cout<<Mno<<" : "<<Fees<<endl;}
};
void main()
{
MEMBER M;
Register();
M.Display();
}

(d) Find the output of the following program:

#include <iostream.h>
struct GAME
{ int Score, Bonus;};
void Play(GAME &g, int N=10)
{
g.Score++;g.Bonus+=N;
}
void main()
{
GAME G={110,50};
Play(G,10);
cout<<G.Score<<":"<<G.Bonus<<endl;
Play(G);
cout<<G.Score<<":"<<G.Bonus<<endl;
Play(G,15);
cout<<G.Score<<":"<<G.Bonus<<endl;
}

GENERAL: 
Subjects: 
Exam / Class: 

(Paper) Sample Question Paper For Class XII Year 2011 (Informatics Practices)

Sample Question Paper For Class XII Year 2011

  • Subject: Informatics Practices
  • Time: 03 Hrs
  • Max Marks: 70

Question 1:
(a)
Tara Nathani wants to upload and download files from/to a remote intenet server, write the name of the relevant communication protocol, which will let her do the same.

(b) Two doctors in the same room have connected their Palm Tops using Bluetooth for working on a Group presentation. Out of the following, what kind of Network they have formed?
LAN, MAN, PAN, WAN

(c) Arrange the following communication channels in ascending order of their data transmission rates.  Ethernet Cable, Optical Fiber, Telephone Cable, Co-axial Cable

(d) Which of the following is not a characteristic of Open Source Software?

  • Its source code is available for modification
  • It is owned by a company or an individual
  • It can be downloaded from internet

(e) Jai Khanna is confused between the terms Domain Name and URL. Explain the difference with the help of appropriate examples of each.

(f) Define any two threats to Network Security.

(g) Differentiate between Star and Bus Topology of networks.

GENERAL: 
Exam / Class: 

(Paper) Sample Question Paper For Class XII Year 2011 (Physical Education)

Sample Question Paper For Class XII Year 2011

  • Subject: Physical Education
  • Code: 048
  • Time: 03 Hrs
  • Max Marks: 70

Guidelines:
1. The question paper shall comprise of 01, 02, 03 & 05 marks questions.
2. From “Part A”, each unit shall have a minimum weightage of 06 marks and question(s) of 01 mark or 02 marks can be from any one of the unit(s).
3. From “Part B”, questions will be of 02, 03 & 05 marks from each unit.

Part A:

1. Answer to question carrying 01 mark should be in approximately 30 words.
2. Answer to question carrying 02 marks should be in approximately 60 words.
3. Answer to question carrying 03 marks should be in approximately 100 words.
4. Answer to question carrying 05 marks should be in approximately 150-200 words.

GENERAL: 
Exam / Class: 

(News) AIEEE is all set to go online from 2011

Taking a leaf out of the Common Admission Test (CAT), the All India Engineering Entrance Exam (AIEEE) is all set to go online from next year. The entrance exam for Bachelor of Engineering (BE) and Bachelor of Technology (B Tech) will be conducted by an expert agency. However, the board is yet to decide whether the entrance exam for Bachelor of Architecture (B Arch), which is also a part of the AIEEE, too will be conducted online. The AIEEE is conducted by the Central Board of Secondary Education (CBSE) for admissions to various IITs, NITs and state-level engineering institutions.

GENERAL: 
Exam / Class: 

(Model Paper) Andhra Pradesh Board Intermediate 2nd Year Model Question Papers (English-Garmmar)

Board of Intermediate Education, Andhra Pradesh

(English-Grammar)

Objective:

To enable learners to function effectively in different academic and real life situations using skills of English (listening/speaking/reading/writing).

To develop an interest among learners for reading literature written in English and to able to communicate intelligibly.

Main Reader:
Part-A

The course aims at helping learners to read and enjoy poetry and prose in English and appreciate the use of language in them. The linguistic skills of learners shall be developed by giving them opportunities to practice them. An attempt also has been made to reinforce and extend the vocabulary of students. Preparation of curriculum vitae filling up of forms, report writing, letter writing and such other study skills are focussed upon to enhance the students ability to use English in real life situations.

  • The total number of prose lessons shall be five.
  • The lessons should be interesting in nature and from both Indian and Western authors.
  • The selections shall be representative of different forms of literature – essay, short story, biography, non-fiction, one-act play.
  • The prose lessons shall be on the following themes:
    (1) Triumph of will/culture and heritage.
    (2) Values (human/moral)
    (3) Emotions/adventure
    (4) Science & technology
GENERAL: 
Subjects: 

(Model Paper) Andhra Pradesh Board Intermediate 2nd Year Model Question Papers (English-Part-I)

Board of Intermediate Education, Andhra Pradesh

(English-Part-I)

Time : 3 Hours
Max. Marks : 100

Section – A

I. Annotate any two of the following. 2 x 4 = 8 Marks

  1. There he was gladly accepted as a delegate and found himself lodged with the other oriental delegates to the parliament.
  2. ‘You are asking a profound question’. I’ve no idea who I am ! All my life I have been trying to find the answer. Are you sure you know who you are ?
  3. “He cried out on his mother. She’ll never know. You went on and on hitting. You were horrible. Why did you ?”
  4. He turned to look at his parents. They were not there, ahead of him.
GENERAL: 
Subjects: 

(Model Paper) Andhra Pradesh Board Intermediate 2nd Year Model Question Papers (Commerce)

Board of Intermediate Education, Andhra Pradesh

(Commerce)

Time : 3 Hours
Max Marks : 100

Part – A

(50 Marks)
I. Answer any two of the following questions not exceeding 40 lines each. 2x10=20 Marks

  1. Explain Major functions of the Marketing.
  2. What are the powers of District forum?
  3. Define stock exchange and describe its function.

II. Answer any four of the following questions not exceeding 20lines each. 4x5=20 Marks

  1. Explain various principles of Insurance.
  2. How is advertising useful to society?
  3. Why Excise Duties are levied in India?
  4. How speculation differs with gambling?
  5. What are the characteristics of an efficient leader?
  6. Describe any five characteristic features of a computer.
GENERAL: 
Subjects: 

(Info) West Bengal Council of Higher Secondary Education

West Bengal Council of Higher Secondary Education

About CHSE West Bengal:

The Government of West Bengal has established the West Bengal Council of Higher Secondary Education, under West Bengal Council of Higher Secondary Education, Act 1975. The council is the main body which looks after the education system in the 10+2. The council has its main office at Salt Lake, Bidhannagar, Korunamoyee, Kolkata along with 4 regional offices.

The Council is a body corporate with perpetual succession and a common seal, and is entitled to acquire, hold and dispose of property, to enter into contracts and to do all other things necessary for the purposes of this Act and shall by its name sue and be used. Its functions are executed through an Organisation Structure.

The Council consists of members like The President appointed by the State Govt.and other ex-oficio members like: The President of the Board of Secondary Education-Ex Officio, The Director of School Education-Ex-Officio, The Director of Technical Education-Ex-officio, The Director of Industries-Ex-officio, The Director of Agriculture-Ex-Officio, The Director of SCERT-Ex-officio etc.

Exams Conducted by CHSE West Bengal:

  • Class XIIth Examination
GENERAL: 

(Info) West Bengal Board of Secondary Education

West Bengal Board of  Secondary Education

About BSE West Bengal:

The Board of Secondary Education was established in 1951 under an Act of the State Legislature called the West Bengal Secondary Education Act of 1950. The Board was inaugurated by the then Governor of West Bengal Dr.K.N.Katju on 3rd May 1951 and the Board started functioning under the Chairmanship of Sri Apurba Kumar Chanda. The basic task before the Board was twofold.

  1. To regulate, control and develop secondary education of the State.
  2. To conduct the School Final Examination.

Previously this was done by Calcutta University. The Board was subsequently renamed as West Bengal Board of Secondary Education in 1964, under the West Bengal Board of Secondary Education Act 1963. During its long history the Board was superseded by the State Govt. twice. The first instance was from 1954 to 1963 (Bengal Secondary Education (Temporary Provisions) Ordinance 1954) and the second occasion arose from 1978 to 1980. The Board, an autonomous body, in its present look came into existence from January 1964 with Dr. J.C.Sengupta in the Chair.

The operational ambit of the Board has increased manifold over the years. In 1951 the Board started its journey with 1270 high schools taken over from Calcutta University which increased to 2312 by the end of 1963 and to more than 8000 by the, end of 1975 including some schools outside the territorial jurisdiction of the State. Presently the Board is handling around 10238 numbers of schools.

Exams Conducted by BSE West Bengal:

  • Class Xth Examination
GENERAL: 

(Info) Tamil Nadu Board of Secondary Education

Tamil Nadu Board of Secondary Education

About BSE Tamil Nadu:

Tamil Nadu Board of Secondary Education is a part of the State Department of Education, Tamil Nadu. The Board came in existence from 1908. The first secondary school leaving certificate exam was conducted in the year 1911.

The jurisdiction of the board extends to schools located inside the state of Tamil Nadu only. Schools can choose to affiliate themselves to the Tamil Nadu Board of Secondary Education.

Exams Conducted by BSE Tamil Nadu:

  • SSLC Public Examination
  • OSLC Public Examination
  • Anglo – Indian School Leaving Certificate Examination
  • Matriculation Examination
  • E.S.L.C Examination for Private Candidates
  • Various Technical Examinations (Both Lower & Higher Grade)
  • Examination in various art & culture on behalf of Director of Arts & Culture
GENERAL: 

(Notification) Indian Navy: Applications Invited for Enrolment As Sailors For Senior Secondary Recruits (SSR) 02/2011

http://upscportal.com/civilservices/images/navy.jpg

THE INDIAN NAVY

Indian Navy Invites Applications From Unmarried Male Candidates For Enrolment As Sailors For Senior Secondary Recruits (SSR)-02/2011 Batch - Course Commencing August 2011

ELIGIBILITY CONDITIONS:

Applications are invited from unmarried Male Indian Citizens and male subjects of Nepal and Bhutan. Educational Qualifications. Passed 10+2/ equivalent examination with Maths & Physics and atleast one of these subjects; Chemistry/Biology/Computer science

Age: Candidates should have been born between 01 Aug 1990 to 31 Jul 1994 (Both dates inclusive).

PAY & PERQUISITES:

Pay & Allowances: During the initial training period, stipend of Rs.5700/pm will be admissible. On successful completion of initial training an amount equal to the minimum of scale as mentioned below, less stipend already paid, shall be admissible with retrospective effect. On completion of initial training, they will be placed in the Pay Band Rs.5200-20200. In addition they will be paid Grade Pay @Rs.2000/- plus MSP @Rs. 2000/- plus DA.

Promotion: Promotion prospects exist up to the rank of Master Chief Petty Officer-I (equivalent to Subedar Major) with pay scale of Rs 9300-34800 plus Grade Pay @Rs.4800/- Plus MSP @Rs. 2000/- plus DA. Opportunities for promotion to commissioned officer also exist for those who perform well and qualify the prescribed examinations.

Exam / Class: 

(Notification) Indian Navy 10+2 Cadet (B.Tech) Entry Scheme (Permanent Commission) Course Commencing: 2011

http://upscportal.com/civilservices/images/navy.jpg

THE INDIAN NAVY

SSC in Logistics cadre of Executive Branch Permanent Commission in 10+2 Cadet (B Tech) Entry Scheme - July 2011:

Applications are invited from UNMARRIED MALE CANDIDATES (fulfilling the conditions regarding nationality as laid down by the Govt of India) to join the prestigious Indian Naval Academy, Ezhimala, Kerala under 10+2 Cadet (B Tech) Entry Scheme.

ELIGIBILITY CONDITIONS:

Age: 17 to 19½ years (i.e. born between 02 Jan 1992 & 01 Jul 1994. (both dates inclusive).

Educational Qualification: Senior Secondary Examination (10+2 Pattern) or its equivalent from University/Board with at least 70 % aggregate marks in Physics, Chemistry and Mathematics (PCM) and at least 50% marks in English (either in Class X or Class XII).

Physical Standards:

(a) Height and Weight. Minimum height - 157 cms with correlated weight as per age.
(b) Eye Sight. The minimum acceptable vision standard for distant vision 6/6, 6/9 correctable to 6/6, 6/6 with glasses. Should not be colour/night blind.
Note: There will be no relaxation in physical standards.

HOW TO APPLY:

(a) If you meet the above requirements, apply on a single plain A4 size paper as per format available in website www.nausena-bharti.nic.in. The envelop containing the form should be superscribed with “ 10+2 CADET (B TECH) ENTRY SCHEME - JUL 2011 COURSE, Educational Qualification .................. Perentage ...............% in PCM. Send your application latest by 27 Dec 2010 to:-

POST BAG NO. 4, CHANAKYAPURI, NEW DELHI - 110 021

(b) Application must be sent in the format given in the advertisement, otherwise it will be rejected.

Exam / Class: 

(Info) Manipur Council of Higher Secondary Education

Manipur Council Of Higher Secondary Education

About CHSEM:

Manipur Council of Higher Secondary Education is the statutory body of the Government of Manipur, which started its functioning from the year 1992. Board's main function is to conduct Higher secondary school examination (Class XIIth)

Exams Conducted by CHSEM:

  • Class XIIth (10 + 2) Examination

Main Functions:

  • To grant recognition to aspiring schools.
  • To describe course structure for higher secondary exam.
  • To arrange appropriate facilities to students, teacher and schools to keep state education modern and standardise.
  • To keep education system equivalent to other state boards of India
  • To organise events to improve education system of state.
GENERAL: 

(Model Paper) Andhra Pradesh Board Intermediate 1st Year Model Question Papers (Psychology)

Board of Intermediate Education, Andhra Pradesh

(PSYCHOLOGY)

Time : 3 hours
Max. Marks : 60

SECTION - A

Answer Any THREE of the following questions : 3 x 10 = 30 Marks

1. What is Psychology ? Explain the use of Experimental method in Psychology.
2. Explain the various principles involved in perceptual organisations.
3. What are the adjustment problems faced during the crucial period of adolescence ?
4. Discuss Pavolv’s classical conditioning. Bring out the differences between classical and operant conditioning.
5. What are the different memory systems ? Compare LTM and STM.

GENERAL: 
Subjects: 

(Model Paper) Andhra Pradesh Board Intermediate 1st Year Model Question Papers (Zoology)

Board of Intermediate Education, Andhra Pradesh

(ZOOLOGY)

Time : 3 hours
Max. Marks : 60

Instructions to candidates :

1) Answer all the questions of section ’A’, Answer any Six questions in Section ‘B’ and any two questions in Secton ’C’.
2) In Section - ‘A’ Questions from Sr. Nos. 1 to 10 are of ‘Very short answer type’. Each question carries two marks. Every answer may be limited to 2 or 3 sentences. Answer all these questions at one place in the same order.
3) In Section ‘B’, questions from Sr.Nos. 11 to 18 are of “Short Answer type”. Each question carries four marks. Every answer may be limited to 75 words.
4) In section ‘C’ questions from Sr.Nos. 19 to 21 are of “Long answer type”. Each questions carries eight marks. Every answer may be limited to 300 words. ,

GENERAL: 
Subjects: 

Pages

Subscribe to RSS - admin's blog