11th Computer Science Public Exam Important Questions Chapter 1 To 18
11th Computer Science Public Exam Important Questions Chapter 1 To 18
2. Number Systems
Important 2 marks And 3 Marks Questions
1. What is Data?
2. What is meant by Bit?
3. What is Nibble?
4. What is Word Length?
5. What is called Byte?
6. Define Computer Memory?
7. How the Memory is represented in the Computer?
8. What are the different Number systems?
9. What is Base or Radix in the Number System?
10. What is Decimal Number System?
11. What is Binary Number System?
12. What are the Methods to Convert Decimal Number to Binary?
13. Convert (46)10 into Binary?
14. Convert (9BC8)16 Hexadecimal to Binary
Details
1. a) Write the procedure to convert fractional Decimal to Binary
b) Convert (98.46)10 to Binary
2. Find 1‟s Complement and 2‟s Complement for the following Decimal number
a) -98 b) -135
3. Computer Organization
Important 2 marks And 3 Marks Questions
1. What is Microprocessor?
2. What are the Components of Microprocessor?
3. What are the Characteristics of Microprocessor?
4. Define Hertz?
5. What is Clock Speed?
6. What is Instruction Set?
7. What are the types of Operations carried in Instruction Set?
8. What is Word Size?
9. What are the examples of RISC?
10. What are the examples of CISC?
11. Define RAM
12. Define ROM
13. What are the types of RAM?
Details
1. Explain the Characteristics of Microprocessor?
2. Explain the Types of Microprocessor?
3. Explain RAM and its types?
4. What are the different types of ROM?
5. Explain the Secondary Storage Devices?
4.Theoretical Concepts of Operating System
Important 2 marks And 3 Marks Questions
1.What are the types of Software?
2. Define Application Software
3. Define System Software
4. Define OS
5. What are the Functions of an Operating System?
6. List some of the Operating Systems?
7. What is the need of an Operating System?
8. What are the main uses of Operating System?
9. What are the types of Operating System?
10. Define Single Operating System
11. Define Multi-user Operating System
12. What is GUI?
Details
1. Explain the Need and Uses of Operating System?
2.What are the Functions of Operating System?
3. What are the most popular Operating Systems?
4. Define Multitasking
5. Working with typical Operating System
Important 2 marks And 3 Marks Questions
1. Define Desktop
2. Define Icon
3. What are called Standard Icons?
4. Define Disk Drives
5. What is meant by Window?
6. What is meant by Application Window?
7. What is meant by Document Window?
8. What are the elements of a window?
9. Define Menu Bar
10. Define Taskbar
11. How to start and close the application?
12. Define Word pad
13. Differentiate the Cut and Copy in files and folders?
14. How to delete the file and folder?
15. Define Recycle bin
16. How to create the shortcuts on the Desktop?
17. What is meant by Open Source?
18. Different Between Files And Folders?
19. How to Moving a File?
20. How to Delete Files and Folders?
Details
21. What are the Elements of a Window? Explain it briefly?
22. What are the methods are there to create a New Folder?
23. What are the methods to Rename the Files or Folders?
24. Explain how to Copying Files and Folders to removable disk?
9. Introduction to C++
Important 2 marks and 3 Marks Questions:
1. Why C++ is called hybrid language?
2. List any two benefits of learning C++?
3. Define character set. Give example.
4. Write a note on reserved words? Give some example.
5. Define tokens and name the tokens available in C++?
6. What do you mean by identifier?
7. Name some rules for naming an identifier.
8. What do you mean by constants?
9. List the types of constants available in C++?
10. Define numeric constants?
11. What are the types of Numeric constants?
12. What do you mean by integers?
13. What are the types of integer constants?
14. What do you mean by Hexadecimal constant?
15. What do you mean by Real Constants?
16. Write a note on Exponent form of real constants?
17. What do you mean by Boolean Literals?
18. Define cascading of Operator?
19. What do you mean by Character Constants?
20. What do you mean by String Literals?
21. What do you mean by Nonprintable characters?
22. Expand the following terms a) ANSI b)ASCII
23. What do you mean by operators?
24. What do you mean by operands?
25. What are the types of operators based on the operands?
26. What do you mean by arithmetic operators?
27. What do you mean by relational operator?
29. What do you mean by logical Operators?
30. What do you mean by assignment operator?
40. What are binary operators? Give examples arithmetic binary operators.
48. What are the four important steps in execution of C++ program?
8. Explain variables?
10. Functions
Important 2 marks and 3 Marks Questions:
1. Define Function
2. What are the different types of Function?
3. What is the Need for Function?
4. Define Pre-defined Function
5. Define User defined Function
6. What is Function Definition?
7. What is Function Prototyping?
8. What is the use of Void Command?
9. What is the example of Void Command?
10. How to access a function?
11. What is meant by Parameter? What are the types of Parameters?
12. Write a note on Default Arguments?
13. Define const arguments
14. Define Inline Function
15. Write the Syntax for Inline Function with Example?
16. Write the Advantages of Inline Function?
17. Define Return Statement
18. Write the Syntax for Return Statement with Example?
19. Define Recursive Function
20. What are the types of Scope Variables are there?
21. What is meant by Global Variable?
22. Define Class with Example
23. What is Scope Resolution Operator?
Important 5 Marks Questions:
1. Explain the Methods of Calling functions with Program?
2. Explain the Call by Value method with Program?
3. Explain the Call by Reference method with Program?
4. Describe the Inline Function with Syntax, Advantages and program?
5. What are the different forms of User – Defined function declaration?
6. What is Recursion? Write a program to find GCD using recursion.
7. Define Scope? Explain the various types of scopes in C++ language?
#include<iostream>
class student
public:
student(int r,int m)
{ cout<<"Constructor "<<endl;
rno=r;
marks=m;
void printdet()
marks=marks+30;
cout<<"Name: Bharathi"<<endl;
cout<<"Roll no : "<<rno<<"\n";
cout<<"Marks : "<<marks<<endl;
};
int main()
{
student s(14,70);
s.printdet();
return 0;
Rewrite the following program after removing the syntax errors if any and underline the
errors:
#include<iostream>
$include<stdio>
class mystud
char name[20];
public
mystud( ) { }
void register ( )
{cin>>stdid; gets(name); }
void display ( )
{cout<<studid<<”: “<<name<<endl;}
15. POLYMORPHISM
Important 2 marks and 3 Marks Questions:
1. Define Polymorphism
2. What is meant by Function Overloading?
3. What is the Need for Function Overloading?
4. What are the Rules for Function Overloading?
5. Define Operator Overloading
6. List the Operators that cannot be Overloaded in C++?
7. What is the Syntax for Operator Overloading?
8. What is the use of overloading a Function?
Important 5 Marks Questions:
1. What is Function overloading? Explain with an example?
2. What are the Rules of Operator Overloading?
3. Define Operator Overloading. What is the Process of Operator Overloading with Example?
4. Write the output of the following
include<iostream>
class Seminar
{ int Time;
public:
Seminar()
void Lecture()
Seminar(int Duration)
Seminar(Seminar &D)
~Seminar()
{cout<<"Vote of thanks"<<endl; } };
int main()
{ Seminar s1,s2(2),s3(s2);
s1.Lecture();
return 0;
following program
#include<iostream>
#include<string.h>
class comp {
public:
char s[10];
{ strcpy(s,str); }
void operator==(comp);
};
{ if(strcmp(s,ob.s)==0)
else
cin>>string1;
ob.getstring(string1);
cin>>string2;
ob1.getstring(string2);
ob==ob1;
return 0; }
(i) Mention the objects which will have the scope till the end of the program.
(ii) Name the object which gets destroyed in between the program
(iii) Name the operator which is over loaded and write the statement that invokes it.
(v) What types of operands are used for the overloaded operator?
(vi) Which constructor will get executed in the above program? Write the output of
the program
16. Inheritance
Important 2 marks and 3 Marks Questions:
1. Define Single Inheritance
2. Define Inheritance
3. What is the Need for Inheritance?
4. What are the Advantages of Inheritance?
5. Define Base Class and Derived Class
6. Define Single Inheritance
7. Define Multiple Inheritance
8. Define Multi-level Inheritance
9. Define Hierarchical Inheritance
10. Define Hybrid Inheritance
Important 5 Marks Questions:
1. Define Inheritance. Explain the different types of inheritance?
2. Explain with Example of Single Inheritance?
3. Explain with Example of Multilevel Inheritance?
4. Debug the following program
%include(iostream.h)
#include<conio.h>
class A()
{ public;
int a1,a2:a3;
void getdata[]
{ a1=15; a2=13; a3=13; } }
class B:: public A()
{ PUBLIC
voidfunc()
{ int b1:b2:b3;
A::getdata[];
b1=a1;
b2=a2;
a3=a3;
cout<<b1<<’\t’<<b2<<’t\’<<b3; }
void main()
{ B der;
der1:func(); }
17. Computer Ethics and Cyber Security
Important 2 marks and 3 Marks Questions:
1. What is Cyber Crime?
2. What is ETHICS?
3. What is Computer Ethics?
4. What are the General Guidelines of Ethics?
5. Define Ethical Issue with some ethical issues
6. List some of the Ethical Issues?
7. Define Malware
8. What is meant by Scam and Spam?
9. Define Spoofing
10. What is meant by Software Piracy?
11. Define Warez
12. What is meant by Unauthorized Access?
13. Define Hacking
14. Define Cracking
15. What is Cyber Security?
16. What are the Types of Cyber Attacks?
17. What is harvesting?
Important 5 Marks Questions:
1. What are the general guidelines of Computer Ethics?
2. What are the various crimes happening using computer?
***************************************************************************
***************************************************************************