Class 12 Objective Oriented Programming in C++ Revision Notes

Download CBSE Class 12 Computer Science Useful Resources

Access comprehensive study materials and useful resources for Objective Oriented Programming in C++ using the Class 12 Objective Oriented Programming in C++ Revision Notes. Designed to align with the 2026-27 CBSE academic guidelines, these advanced resources help Class 12 Computer Science students reinforce core concepts beyond standard textbooks.

Access CBSE Study Guides and Summaries

Access the complete useful resource PDF for Class 12 Computer Science below. Regular practice with these targeted academic notes builds familiarity with complex topics and helps secure higher marks in final school evaluations.

♦ Keywords: Keywords are the certain reserved words that convey a special meaning to the compiler. These are reserve for special purpose and must not be used as identifier name.eg for , if, else , this , do, etc.
 
♦ Identifiers: Identifiers are programmer defined names given to the various program elements such as variables, functions, arrays, objects, classes, etc.. It may contain digits, letters and
underscore, and must begin with a letter or underscore. C++ is case sensitive as it treats upper and lower case letters differently. A keyword can not be used as an identifiers. The following are some valid identifiers:
Pen                    time580                s2e2r3           _dos          _HJI3_JK
 
♦ Data Types in C++: Data types are means to identify the types of data and associated operations of handling it. Data types in C++ are of two types:
 
1. Fundamental or Built-in data types: These data types are already known to compiler. These are the data types those are not composed of other data types.
There are following fundamental data types in C++:
 
(i) int data type (for integer)
(ii) char data type (for characters)
(iii) float data type (for floating point numbers)
(iv) double data type
 
♦ Data Type Modifiers: There are following four data type modifiers in C++ , which may be used to modify the fundamental data types to fit various situations more precisely:
(i) signed   
(ii) unsigned
(iii) long
(iv) short
 
♦ Variables: A named memory location, whose contains can be changed with in program execution is known as variable.
OR
A variable is an identifier that denotes a storage location, which contains can be varied during program execution.
 
Declaration of Variables: Syntax for variable declaration is:
datatypes variable_name1, variable_name2, variable_name3,……………. ;
We can also initialize a variable at the time of declaration by using following syntax:
datatypes variable_name = value;
                   In C++ both the declaration and initialization of a variable can be done simultaniouly at the
place where the variable is used first time this feature is known as dynamic initialization. e.g.,
               float avg;
               avg = sum/count;
               then above two statements can be combined in to one as follows:
               float avg = sum/count;
 
♦ Constant: A named memory location, whose contains cannot be changed with in program execution is known as constant.
OR
A constant is an identifier that denotes a storage location, which contains cannot be varied during program execution.
Syntax for constant declaration is:
                  const datatypes constant_name = value ;
e.g.,            const float pi = 3,14f ;
 
♦ Conditional operator ( ? : ):
The conditional operator (? :) is a ternary operator i.e., it require three operands. The general form of
conditional operator is:
               expression1? expression2: expression3 ;
Where expression1 is a logical expression , which is either true or false.
If expression1 evaluates to true i.e., 1, then the value of whole expression is the value of expression2,
otherwise, the value of the whole expression is the value of expression3. For example
min = a
 

Computer Science Class 12 Exam Resources: Objective Oriented Programming in C++

Comprehensive Study Resources for Objective Oriented Programming in C++

Review targeted study resources for Objective Oriented Programming in C++ tailored for Class 12 learners. Utilizing these structured notes and quick-revision tools ensures complete alignment with current CBSE evaluation standards.

Understanding Marking Schemes

Built using official NCERT guidelines for Class 12 Computer Science, these materials provide reliable academic support. Integrating past examination questions and step-by-step solutions helps students understand official CBSE grading criteria.

Complete Revision for Computer Science

Wrap up your chapter revision by testing your knowledge against standard objective question formats. Explore our full library of free, up-to-date sample papers and online assessments to secure top grades in your CBSE examinations.

FAQs

What is included in the advanced study material for Class 12 Computer Science Objective Oriented Programming in C++?

Our advanced study package for Objective Oriented Programming in C++ includes detailed concepts, diagrams, Mind Maps, and explanation of complex topics to ensure Class 12 students learn as per syllabus for 2026 exams.

How do Mind Maps for Computer Science Objective Oriented Programming in C++ help in revision?

The Mind Maps provided for Objective Oriented Programming in C++ act as visual anchors which will help faster recall during high-pressure exams.

Are these Computer Science resources suitable for both classroom teaching and self-study?

Yes, teachers use our Class 12 Computer Science resources for lesson planning as they are in simple language and have lot of solved examples.

Is this advanced study material for Objective Oriented Programming in C++ free to download in PDF?

Yes, You can download the complete, mobile-friendly PDF of the Computer Science Objective Oriented Programming in C++ advanced resources for free.

Does this material cover rationalized content for the 2026-27 CBSE session?

Yes, our subject matter experts have updated the Objective Oriented Programming in C++ material to align with the rationalized NCERT textbooks and have removed deleted topics and added new competency-based questions.