Advertisements
Chapters
2: Number Systems
3: Computer Organization
4: Theoretical Concepts of Operating System
5: Working with Windows Operating System
6: Specification and Abstraction
7: Composition and Decomposition
8: Iteration and recursion
▶ 9: Introduction to C++
10: Flow of Control
11: Functions
12: Arrays and Structures
13: Introducton to Object Oriented Programming Techniques
14: Classes and objects
15: Polymorphism
16: Inheritance
17: Computer Ethics and Cyber Security
18: Tamil Computing
![Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 9 - Introduction to C++ Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 9 - Introduction to C++ - Shaalaa.com](/images/computer-science-english-class-11-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Advertisements
Solutions for Chapter 9: Introduction to C++
Below listed, you can find solutions for Chapter 9 of Tamil Nadu Board of Secondary Education Samacheer Kalvi for Computer Science [English] Class 11 TN Board.
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Evaluation - Section - A [Page 130]
Choose the correct answer
Who developed C++?
Charles Babbage
Bjarne Stroustrup
Bill Gates
Sundar Pichai
What was the original name given to C++?
CPP
Advanced C
C with Classes
Class with C
Who coined C++?
Rick Mascitti
Rick Bjarne
Bill Gates
Dennis Ritchie
The smallest individual unit in a program is ______
Program
Algorithm
Flowchart
Tokens
Which of the following operator is an extraction operator in C++?
>>
<<
<>
^^
Which of the following statements is not true?
Keywords are reserved words that convey specific meaning to the C++ compiler.
Reserved words or keywords can be used as an identifier name.
An integer constant must have at least one digit without a decimal point.
Exponent form of real constants consist of two parts
Which of the following is a valid string literal?
‘A’
‘Welcome’
1232
“1232”
A program written in a high-level language is called ______
Object code
Source code
Executable code
All the above
Assume a = 5, b = 6; what will be result of a & b?
4
5
1
0
Which of the following is called compile-time operators?
sizeof
pointer
virtual
this
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Evaluation - Section - B [Page 131]
Very Short Answers
What is meant by a token?
Name the token available in C++.
What are keywords?
Can keywords be used as identifiers?
The following constant is of which type?
39
The following constant is of which type?
032
The following constant is of which type?
0XCAFE
The following constant is of which type?
04.14
Write the following real constant into the exponent form:
23.197
Write the following real constant into the exponent form:
7.214
Write the following real constant into the exponent form:
0.00005
Write the following real constant into the exponent form:
0.319
Assume n = 10; what will be result of n++ and --n;?
Match the following.
A | B |
(a) Modulus | (1) Tokens |
(b) Separators | (2) Remainder of a division |
(c) Stream extraction | (3) Punctuators |
(d) Lexical Units | (4) get from |
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Evaluation - Section - C [Page 131]
Short Answers
Describe the differences between keywords and identifiers?
Is C++ case sensitive? What is meant by the term “case sensitive”?
Differentiate “=” and “==”.
What is the use of a header file?
Why is the main function special?
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Evaluation - Section - D [Page 131]
Explain in detail
Write about Binary operators used in C++.
What are the types of Errors?
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Data Types, Variables and Expressions - Evaluation - Section – A [Page 150]
Choose the correct answer
How many categories of data types are available in C++?
5
4
3
2
Which of the following data types is not a fundamental type?
signed
int
float
char
What will be the result of the following statement?
char ch= ‘B’;
cout << (int) ch;
B
b
65
66
Which of the character is used as a suffix to indicate a floating-point value?
F
C
L
D
How many bytes of memory is allocated for the following variable declaration if you are using Dev C++? short int x;
2
4
6
8
What is the output of the following snippet?
char ch = ‘A’;
ch = ch + 1;
B
A1
F
1A
Which of the following is not a data type modifier?
signed
int
long
short
Which of the following operator returns the size of the data type?
sizeof( )
int ( )
long ( )
double ( )
Which operator is used to access the reference of a variable?
$
#
&
!
This can be used as an alternate to endl command ______
\t
\b
\0
\n
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Data Types, Variables and Expressions - Evaluation - Section - B [Pages 150 - 151]
Very Short Answers
Write a short note on the const keyword with an example.
What is the use of setw( ) format manipulator?
Why is char often treated as an integer data type?
What is a reference variable? What is its use?
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
What is the difference between 56L and 56?
Determine which of the following are valid constant? And specify their type.
0.5
Determine which of the following are valid constant? And specify their type.
‘Name’
Determine which of the following are valid constant? And specify their type.
‘\t’
Determine which of the following are valid constant? And specify their type.
27,822
Suppose x and y are two double-type variables that you want to add as integer and assign to an integer variable. Construct a C++ statement to do the above.
What will be the result of following if num = 6 initially?
cout << num;
What will be the result of following if num = 6 initially?
cout << (num==5);
Which of the following statement is valid? Why? Also, write their result.
int a; a = 3,014;
Which of the following statement is valid? Why? Also, write their result.
int a; a = (3,014);
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 9 Introduction to C++ Data Types, Variables and Expressions - Evaluation - Section - C [Page 151]
Short Answers
What are arithmetic operators in C++? Differentiate unary and binary arithmetic operators. Give example for each of them.
How relational operators and logical operators are related to one another?
Evaluate the following C++ expressions where x, y, z are integers and m, n are floating-point numbers. The value of x = 5, y = 4 and m=2.5;
n = x + y / x;
Evaluate the following C++ expressions where x, y, z are integers and m, n are floating-point numbers. The value of x = 5, y = 4 and m=2.5;
z = m * x + y;
Evaluate the following C++ expressions where x, y, z are integers and m, n are floating-point numbers. The value of x = 5, y = 4 and m = 2.5;
z *= x * m + x;
Solutions for 9: Introduction to C++
![Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 9 - Introduction to C++ Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 9 - Introduction to C++ - Shaalaa.com](/images/computer-science-english-class-11-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 9 - Introduction to C++
Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Computer Science [English] Class 11 TN Board Tamil Nadu Board of Secondary Education solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Samacheer Kalvi solutions for Mathematics Computer Science [English] Class 11 TN Board Tamil Nadu Board of Secondary Education 9 (Introduction to C++) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Samacheer Kalvi textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in Computer Science [English] Class 11 TN Board chapter 9 Introduction to C++ are C++ Character Set, Introduction to C++, Lexical Units (Tokens), I/O Operators, Sample program – A first look at C++ program, Execution of C++ Program, C++ Development Environment, Types of Errors, Data Types, C++ Data Types, Variables of Built-in-data Types, Formatting Output, Expression, Type Conversion in Expressions.
Using Samacheer Kalvi Computer Science [English] Class 11 TN Board solutions Introduction to C++ exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Samacheer Kalvi Solutions are essential questions that can be asked in the final exam. Maximum Tamil Nadu Board of Secondary Education Computer Science [English] Class 11 TN Board students prefer Samacheer Kalvi Textbook Solutions to score more in exams.
Get the free view of Chapter 9, Introduction to C++ Computer Science [English] Class 11 TN Board additional questions for Mathematics Computer Science [English] Class 11 TN Board Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.