0% found this document useful (0 votes)
162 views11 pages

12th CS-Eng Imp Que

This document provides a chapter-wise breakdown of marks distribution for a 12th computer science question paper. It includes two chapters - Office Automation and Typing, and Control Statements in C. For each chapter, it lists the total marks, number of 1 mark, 4 marks and 6 marks questions. It also provides sample questions for each chapter, including multiple choice, fill in the blank, very short answer and short answer type questions.

Uploaded by

SANj KUm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
162 views11 pages

12th CS-Eng Imp Que

This document provides a chapter-wise breakdown of marks distribution for a 12th computer science question paper. It includes two chapters - Office Automation and Typing, and Control Statements in C. For each chapter, it lists the total marks, number of 1 mark, 4 marks and 6 marks questions. It also provides sample questions for each chapter, including multiple choice, fill in the blank, very short answer and short answer type questions.

Uploaded by

SANj KUm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

12th Computer Science for Session:2021-22

12th Class
Chapter-wise Marks Distribution for Question Paper
S.N Chapter Name Total Marks 1 Mark Que 4 Marks Que 6 Marks Que
1 Office Automation and Typing 6 2 1+C 0
2 Control Statements in C 5 1 1 0
3 Computer Networks 8 2 0 1+C
4 Current Trends in Information Technology 6 2 1 0
5 Artificial Intelligence and Expert System 8 2 0 1+C
6 Digitization 5 1 1+C 0
7 E-Governance (Part-2) 6 2 1 0
8 Image Editing and File Conversion Tools 3 3 0 0
9 Audio and Video Ediging 3 3 0 0
Total Marks 50 18 20 12

Chapter 1st
Office Automation and Typing
Que:1 Multiple Choice Questions:
1. _________________ is word processor software.
a. MS Window b. MS Excel c. MS PowerPoint d. MS Word
2. To check spelling and grammar _________________ key is used.
a. Ctrl+F7 b. Alt+F7 c. F7 d. Shift F7
3. _________________ option in Word changes the structure and layout of pages.
a. Format b. Print and Print Preview c. Page Setup d. Proofing
4. ______________ is an electronic spread sheet software used for automated calculations.
a. MS Window b. MS Excel c. MS PowerPoint d. MS Word
5. ______________ refers to changing the font style, size, color, bold, italic, underline and other
related parameters.
a. Formatting b. Alignment c. Proofing d. Filtering

Que:2 Fill in the Blanks:


1. _________ and ________ Functions used to find the minimum and maximum value in a range.
2. Filter option is available in ____________ tab of Excel.
3. If the cursor is placed at the end of the file, then __________ button is pressed to delete the text.
4. Two options of orientations for page setup are ________ And __________
5. _________ Symbol is used to start any formula (function) in excel calculations.
Ans: 1. MIN, MAX 2. Data 3. Backspace 4. Portrait, Landscape 5. = (Equals to)

Que:3 Very Short Answer Type Questions


Q:1 Write the full form of WYSIWYG.
Ans: What You See Is What You Get
Q:2 Write the Short cut keys to move text in Word Document.
Ans: Ctrl+X , Ctrl+V
Q:3 Write the name of four types of alignments.
Ans: Left, Center, Right, Justify
Q:4 Which Excel function is used to combine contents from different cells into one cell?
Ans: Concatenate( )
Q:5 Write the name of any two fonts that can be used to type in Punjabi Language.
Ans: AnmolLipi, Raavi, Joy, Asees

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 0
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Computer Science for Session:2021-22
Que:4 Short Answer Type Questions. (Write the answers in 4-5 lines)
Q:1 What is Excel?
Ans: Microsoft Excel is a powerful electronic spread sheet program. Usually, we can use it to
automate accounting work, organizing data, and for performing a wide variety of tasks. We can use it
to prepare results, doing mathematical calculations and representing data in pictorial form with the
help of charts.
Q:2 Explain formatting in details?
Ans: Formatting refers to changing the font style, for example: increasing or decreasing the font size,
performing bold, italic and underline operation on text. We can change the appearance of text and
graphics with the help of formatting options. Text Formatting options are available on the Home tab
in MS Word/Excel/PowerPoint.
Q:3 Explain Print & Print Preview options.
Ans: Print preview is a feature that displays on the screen what a hard copy would look like when
printed. When we click the Print option in File menu, it automatically will show the preview of our
document. It means Print Preview option is used to preview our document on the screen before
getting its hard copy while Print command is used to get the hardcopy of our document by printing it
on the paper.
Q:4 What are formulas in MS Excel?
Ans: In MS Excel, Formulas are used to perform different types of calculations. Formulas can be used
to perform different types of calculation for preparing results and fee related data. In Excel, a
formula always begins with equals to (=) symbol. Usually, we use cell references in formulas along
with the operators to perform calculations. Some of the examples of formulas are:
=D15+D18+D21 =(B16+C16)*1.07
Q:5 What do you know about the formula bar in Excel?
Ans: Formula Bar is one of the most important components of MS Excel. The Formula Bar is
available at the top of the Excel window, just below the ribbon area. The Formula Bar has two parts:
left and right side. Left side is Name Box which shows the name or address of current selection while
right side shows the contents of the currently selected cell.
Q:6 What are Margins?
Ans: A margin is the space between the contents and the edge of our document. We can set the
margins at all the sides (Top, Bottom, Left, Right) of the page. By default, a new
document's margins are set to Normal, which means it has a one-inch space between the contents and
each edge. Word allows us to change the margin size in our document as per our requirement.

Chapter 2nd
Control Statements
Objective Type Multiple Choice Questions:
1. Which of the following statement is also called as conditional statement?
a. for b. break c. if d. while
2. switch-case is similar to ________________ statement
a. if else b. if else if c. break d. goto
3. Which statement can be used to terminate a case in the switch statement?
a. continue b. goto c. if d. break
4. Which of the following is an example of Post Test loop?
a. for b. while c. do while d. continue
5. Which of the following is not a jumping statement?
a. while b. continue c. goto d. break
Fill in the Blanks:
1. In ____________ loops, the control conditions are tested before the body of loop
2. In ____________ loops, the control conditions are tested after the body of loop
3. ______________ statement is used to skip some statements inside the loop
4. _______________ is a multi-way conditional control statement
5. The break statement can be used to terminate a case in the _________ statement.
Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 1
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Computer Science for Session:2021-22
Ans: 1. Pre-Test 2. Post-Test 3. continue 4. Switch case 5. switch

Very Short Answer Type Questions:


Q:1 Writing if statement with-in another if is called as?
Ans: Nested if statement
Q:2 Which statements in C programming are used for altering the normal flow of a program?
Ans: Control Statements
Q:3 Which statement is sometimes desirable to skip some statements inside the loop?
Ans: Jumping Statement - Continue
Q:4 Which statements provide a way to repeat commands?
Ans: Looping Statements
Short Answer Type Questions:
Q:1 Define Branching? Name its different control statements?
Ans: Those control statements which are used for decision making purpose or for making multi-way
selection in the program are called Branching Statements. These statements choose to follow one
branch or another during execution in the program. Branching statements are of the following two
types:
• Conditional Control Statements (if else)
• Multiway Conditional Control Statement (switch case)
Q:2 What is looping? Name three different types of looping statements?
Ans: Those control statements which are used to repeat a set of statements in the program are called
looping statements. Looping statements are also called Iterative Statements. Following three looping
statements are used in the C programming:
• for loop
• while loop
• do while loop
Q:3 What is nested if statement? Write its syntax?
Ans: When one if statement is used within another if statement, it is known as nested if statement.
Syntax of nested if statement if given following:
if (test_condition_1){
if (test_condition_2){
statements;
}
}
Q:4 What is if-else statement?
Ans: if else statement is a branching statement. It is used for decision making purpose in the C
programs.
Q:5 What is while statement? Write its syntax?
Ans: while statement is a looping statement. It is used for repeating set of statements in the program.
It is a type of pre-test loop in which test condition is tested before the execution of body of the loop.
Following is the syntax of the while statement:
while (test_condition){
statements;
}
Q:6 What are Control Statements? Explain their types.
Ans: When a program executes line by line in the given sequence, it is called Sequential Execution of
the program. We can control this execution flow in the
program as per our requirements. Those statements
that control the flow of execution of statements in the
program are called Control Statements. These

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 2
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
statements can be classified into following three categories:
• Branching Statements (if else and switch case)
• Looping Statements (for, while and do while)
• Jumping Statements (goto, break and continue)
Chapter 3rd
Computer Networks
Que:1 Multiple Choice Questions:
1. A computer _______________ is a set of computers that are connected together.
a. Network b. System c. Protocol d. Internet
2. A _______________ is basically a multiport repeater.
a. Hub b. Switch c. Router d. Bridge
3. A _______________ is a 2-port device.
a. Hub b. Switch c. Router d. Bridge
4. Wi-Fi stands for_______________
a. Wireless Field b. Wireless Fidelity c. Wire Fire d. Wire Fidelity
5. A _______________ is a combination of a Bridge and a Router.
a. Switch b. Bridge c. Hub d. Brouter
Que:2 Write Full Forms
1. UTP Unshielded Twisted Pair
2. FTP File Transfer Protocol
3. SMTP Simple Mail Transfer Protocol
4. POP Post Office Protocol
5. HTTP HyperText Transfer Protocol
6. MAC Media Access Protocol
Que:4 Long Answer Type Questions.
Q:1 What are network devices? Describe any three network devices.
Ans: Network device refers to the hardware devices that are used to build a network. Different types
of network devices are used for different types of networks, such as: switches, hubs, routers, bridges,
gateways, brouters, etc. Following is the description of some of the major network devices:
• SWITCH: This device connects the various devices in a network, such as computers, printers,
routers, or other switches, so that these devices can communicate with each other.
• ROUTER: This device is used to connect our network to the Internet. It is a switch-like device
that sends data packets to the network based on its IP address.
• BRIDGE: This device is used to connect two different Ethernet (LANs) networks. It uses the
MAC address to forward data packets to the network. This device has only one input port and
only one output port. That is why it is also called 2-port device.
Q:2 What is Unguided Media? Explain any two media.
Ans: Unguided media is a type of transmission media. Using this media, data is transferred through
air without using cable wires. This type of communication is often referred to as wireless
communication. In this media, data transfer can take place in any direction instead of a fixed path.
Bluetooth, WiFi, Radio Waves, Satelites etc. are the examples of Unguided Media.
• WiFi: Full Form of WiFi is Wireless Fidelity. It is a popular wireless networking technology.
Using this technology, we can exchange wireless information between two or more devices
connected to the same network.
• Bluetooth: It is a kind of radio communication technology. It enables short-distance wireless
networking between phones, computers and other networking devices. The process used to
connect two Bluetooth devices is called "pairing".
Q:3 What is a Twisted Pair Cable? Define its advantages and disadvantages.
Ans: Twisted pair cable is a guided transmission media. It is used to transmit
data across a network. This cable consists of two different insulated copper
wires, which are twisted together. The first wire is used for data transfer and

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 3
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
the second wire is used for grounding (earthing). The wires are twisted together to reduce cross-talk.
Advantages of Twisted Pair Cable:
• These cables can be used for both analog and digital broadcasting.
• These cables are cheap for short distances.
• If any part of the network is damaged, the entire network is not down.
Disadvantages of Twisted Pair Cable:
• The signal cannot travel over the long distances without the use of repeaters.
• These wires are very thin and break easily.
Q:4 What is Fibre Optic Cable? Define its advantages and disadvantages.
Ans: Optical fiber cable is a guided transmission media. It is used to transmit data across a network.
It transfers digital data signals in the form of light. This cable is made up of many thin flexible optical
fibers. Each fiber is made up of three layers:
• Core: It is made up of high-quality silica glass or plastic.
• Cladding: It is also made up of high-quality silica glass or plastic.
• Buffer: It is an outer protective cover made of plastic.
Advantages of optical fiber:
• It is suitable for industrial and noisy areas.
• Its data transfer rate is very high.
• It can be used to transfer data over hundreds of miles.
Disadvantages of optical fiber:
• Optical fiber cables are expensive.
• These wires are not easy to use.
Q:5 What is Communication Mode? Define its types in detail.
Ans: Communication mode is also known as transmission mode. Transmission mode is the process of
transferring data or information between two devices connected within a network. There are three
types of communication modes:
• Simplex mode: In this mode of communication, the communication is
unidirectional. Only one of the devices in this mode can send a signal
and the other can only receive a signal. For example: Communication
between keyboard and computer.
• Half-duplex mode: In this communication mode, the flow of
communication can be in both directions, but only one device is
capable of communicating at a time. For example: In a walkie-talkie,
sender speaks on one side and the receiver on the other side listens and
then after a pause, another speaks and the first person listens.
• Full duplex mode: Even in full duplex mode, the flow of communication is in both directions, but
communication is possible in both directions at the same time. This is the fastest mode of
communication between devices. For example: Communication between two people using mobile
phones.
Chapter 4th
Current Trends in Information Technology
Que1: Multiple Choice Questions
1. Information Technology (IT) is an area under which computers or other physical devices
(hardware, software) are used to create, _______, secure and exchange electronic data.
a. Access b. process c. define d. save
2. With the introduction of online education services, students can learn from anywhere using the
__________
a. Internet b. electricity c. 5G Technology d. email
3. Android operating system is a _________ operating system.
a. Computer b. Mobile c. Technology d. Virtual reality
4. Cloud computing is a kind of ____________based computing.
a. Big-data b. IoT c. Internet d. Bluetooth
Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 4
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
Que:2 Write the Full form of following
1. Wi-Fi : Wireless Fidelity
2. VR : Virtual reality
3. IoT : Internet of Things
4. IT : Information Technology
5. GPS : Global Positioning System
Que:3 Short Answer Type Questions.
Q:1 What is Information Technology?
Ans: Information technology is a technology in which computers or other devices are used to create,
process, store and exchange electronic data. Information technology is such a field of any organization
or business that does all the operations related to computers and technology.
Q:2 Give name of any four current trends in Information Technology.
Ans: Following are the names of current major trends in information technology:
• WiFi technology • GPS technology
• Bluetooth technology • Android technology
• E-commerce • Internet of Things (IoT)
Q:3 Define Bluetooth Technology.
Ans: Bluetooth is a type of radio communication technology that allows all types of media files to be
sent or received wirelessly. It enables short-distance wireless networking between phones, computers
and other devices. The process used to connect two Bluetooth devices is called "pairing".
Q:4 Define GPS Technology.
Ans: The full name of GPS is Global Positioning System. GPS is available in every smartphone today.
GPS is used to find the geographical location of any place. It is a global navigation satellite system. We
can use it to find the distance or route between two places. When we send our live location to someone
on WhatsApp, we are using GPS.
Q:5 Define Multimedia Technology.
Ans: It includes all the techniques that help us to create or display multimedia content. Images, audio,
video, text and animation are important elements of any multimedia content. Special types of
multimedia management software are used to create multimedia content.
Q:6 Define 5G technology.
Ans: 5G technology means 5th generation technology. 5G is the next generation of wireless
technology. This technology is much better than 2G, 3G and 4G technologies. The 5G technology
based mobile networks will connect people as well as connect and control machines and devices. In 5G
technology, the speed of internet can be 100 times faster than 4G technology. Its internet speed will be
more than 20 Gbps so that large amount of data can be easily downloaded and uploaded within a very
short time span.
Chapter 5th
Artificial Intelligence and Expert System
Que1: Multiple Choice Questions
1. Who brought the concept of AI?
a) Victor Allis b) Marvin Minsky c) Alan Turing d) John McCarthy
2. Which type of AI focuses on single set of abilities &performs a particular task?
a) Super AI b) Narrow AI c) General AI d) None of these.
3. Which one of AI type does not have memory for data storage
a) Limited Memory b) Reactive machines c) Things of Mind d) Self Awareness
4. The conversion of natural language into computer understandable form
a) Intrusion detection b) Machine translation c) Identification d) None of these.
5. The core of the expert system which by applying set of rules and draw the results of the user
question is the function of
a) Inference engine b) Knowledge base c) User Interface d) None of these
6. Place where knowledge from the human expert is collected
a) Domain expert b) Knowledge Base c) User d) All of these
Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 5
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
7. Robots which provides help for analyzing the collected data are
a) Healthcare robots b) Domestic robots c) Military robots d) Research robots
Que:2 Fill in the Blanks:
1. Artificial Intelligence is divided into two types __________ and ____________
2. ____________ is a chess playing computer developed by IBM.
3. __________ is a good example of narrow artificial intelligence.
4. ____________ machine have no memory.
5. MYCIN and _______ are examples of earlier expert systems.
6. __________ Generation Robots are smart as humans.
Ans: 1. Type-1, Type-2 2. Deep Blue 3. Apple Siri
4. Reactive 5. Dyndral 6. Fourth
Que:3 Write the Full form of following:
1. AI Artificial Intelligence
2. GAI General Artificial Intelligence
3. NLP Natural Language Processing
4. SAI Strong Artificial Intelligence
Que:5 Long Answer Type Questions.
Q:1 What are the applications of artificial intelligence?
Ans: The major application areas of artificial intelligence are described below:
1. AI is used to build Intrusion Detection Systems. For example, a firewall program in the
operating system that automatically blocks unauthorized websites.
2. AI is used in the Gaming field. In particular, it plays an important role in strategic games such
as chess, tic-tac-toe.
3. AI plays an important role in systems that process Natural Languages. For example: human
interactive computer systems that can understand and process human language.
4. AI is used to create Vision Systems. These systems are able to understand and analyze the
visual input on the computer. Example: Spy Drones
5. AI is used in building Expert Systems.
6. AI is used to make Intelligent Robots.
7. AI is used in building Machine Learning Systems.
Q:2 What is the importance of AI?
Ans: There are many areas of importance for artificial intelligence. Here is a brief description of some
of these key areas:
1. Game Playing: AI plays an important role in strategic games like Chess, Poker, Tic-Tac-Toe
etc. For example: Deep Blue machine developed by IBM for playing the game of chess.
2. Voice recognition: AI technology recognizing words spoken by the user and convert them into
the text or prerform some operations. It is also called Speech Recognition System. For
example: Apple's Siri software also provides voice recognition and answers to questions asked
by users.
3. Understanding Natural Language: AI is used to understand and analyze natural languages
(Punjabi, Hindi, English etc.). The main function of natural language processing is to translate,
analyze grammar, etc. For example: Dragon Dictation, Voice Text Messaging, Alexa etc.
4. Computer Vision and Analysis: AI plays an important role in computer vision. This system
automatically gathers information from pictures and patterns and provides us information by
understanding them. For Example: Spy Drones
Q:3 What are the Pros and Cons of Artificial Intelligence?
Ans: The advantages and disadvantages of artificial intelligence are described below:
Benefits of Artificial Intelligence:
1. AI-based systems increase performance. These systems perform complex tasks without errors.
2. AI based systems can work for a long time without having rest. These systems are not as sick as
human beings and do not take leave.
3. Machines are emotionless so emotional interruptions cannot stop machines or robots to work.

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 6
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
4. There is no possibility of error in the operation of these systems.
5. These systems can operate in hazardous areas where human life is in danger, such as: work in
deep mines, work in space, etc.
Disadvantages of Artificial Intelligence:
1. There is no sympathy in machines.
2. Excessive use of these systems will increase unemployment.
3. If these systems break down, important data stored in them will also be lost.
4. These systems can be misused if they fall into the wrong hands.
Q:4 Discuss the characteristics of expert systems?
Ans: Following are some of the import characgeristics of Expert System:
• Expertise: Expert systems specialize in a specific area. For example, the MYCIN Expert
System specializes in the treatment of blood infections.
• Quick Reaction Time: Expert Systems provide quick answers to the questions being asked
from them.
• Reliability: No mistakes are made by the expert system, so they are trustworthy.
• Decision Quality: Expert systems are capable of making high quality decisions.
• Consistent: Expert systems always give same answer for the same questions.
• Low cost: It reduces the cost of consulting a specialist for various areas such as: medical
examination.
• Successful Model of Artificial Intelligence: Expert System is a successful model of Artificial
Intelligence.

Chapter 6th
Digitalization
Que:1 Multiple Choice Questions:
1. ____________ is the process to convert information into computer readable form.
a) E-learning b) E-commerce c) Digitalization d) Net Banking
2. ________ is meant to be online buying and selling of goods.
a) E-commerce b) Digi Locker c) Digital Payment d) None of these
3. Easiest and convenient way for cashless payment is ________.
a) Digitalization b) Storage c) Offline d) Digital Payment
4. _______________ stores only those educational certificates, issued by educational institutes through
digital mode.
a) SWAYAM b) NAD c) MOOCs d) DigiLocker
5. ___________ is a type of e-commerce which involves company and customer.
a) B2B b) B2C c) C2C d) None of these

Que:2 Short Answer Type Questions.


Q:1 What is digitalization?
Ans: Digitalization means the process of converting information into digital medium. Converting
information to a digital medium means converting information into a computer readable and
manageable form. In digital media, information is stored in bits. Nowadays pictures, documents,
audio, video, etc. can be converted to digital medium with the help of various devices. Examples of
digitalization are land records, Aadhaar cards, e-books etc.
Q:2 Describe Net Banking.
Ans: Net-banking is also called internet-banking. Using Net Banking, we can easily perform a variety
of banking activites from home at any time, such as:
• View our bank account statement
• Make a variety of online payments
• Pay bills
• Transfer money to other accounts, etc.
Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 7
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)

Q:3 What do you mean by E-Commerce.


Ans: E-commerce is also called electronic-commerce or internet-commerce. E-commerce means
buying or selling goods through the internet, using services, transacting money, etc. With the help of
e-commerce, business and commerce have flourished. Amazon, Flipkart, eBay, OLX, Quikr, etc. are
prime examples of e-commerce websites.
Q:4 Name types of E-Comemerce.
Ans: Following are the names of types of e-commerce:
1. Business to Business (B2B)
2. Business to Consumer (B2C)
3. Consumer to Consumer (Consumer to Consumer - C2C)
4. Consumer to Business (C2B)
Q:5 Write down the benefits of online payment.
Ans: The main benefits of online payment are as follows:
1. Online payment is a very easy and convenient way to transact money.
2. With this facility, there is no need to keep more cash in our pocket.
3. Due to online payment, we can easily make money transactions anytime and anywhere.
4. There are various concessions offered by the government on digital payments to promote digital
payments. This returns a small percentage of what we have paid back to our account.
Q:6 Describe Digi Locker.
Ans: DIGILOCKER is a secure way to store all our important documents online. We need to register
online to store documents on Digilocker. Our account is linked to Aadhaar card during registration.
This account provides 1GB of cloud storage to the person concerned. In Digilocker, we can store other
documents besides educational documents like Aadhaar card, driving license etc.
Q:7 What is e-learning?
Ans: E-learning is also called Electronic-Learning or Online Learning or Online Education. E-
learning means getting online education. It is an easy and comfortable way to get an education. Using
this learning method, we can study online courses from home. The exam is also given online. After
passing the examination, the certificate can also be downloaded from the website of the concerned
institution. Course related materials like e-books, video or audio lectures etc. are also provided online
by the concerned institute. MOOCs, SWAYAM, SWAYAM-PRABHA, PSEB E-BOOKS etc. are some
of the important popular e-learning tools.
Q:8 What is digital or online payment?
Ans: Online payments are also called Digital Payments or E-Payments or Electronic Payments. This is
an easy and fast way to make cashless payments. Both the payer and the receiver use digital media.
Money transfer, purchase of goods, payment of bills, etc. can be done easily through digital payment.
Credit-card, debit-card, e-wallet, net-banking, Bhim app etc. can be used for online payment.

Chapter 7th
E Governance (Part-II)
Que:1 Multiple Choice Questions:
1. The online service of government is called-
a) Public welfare services b) democracy services c) E-governance d) internet services
2. G2C Stands for –
a) Government to employee b) Government to citizens
c) Government to business man d) Government to government
3. The modern form of E-Governance services is:
a) E-Business b) E-Commerce c) E-Services d)Smart governance
4. How many digits are there in Aadhar card number?
a) 14 b) 12 c) 16 d) 10
5. Which one is the part of information system?
a) Database and procedures b) network c) Hardware and software d) All of these

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 8
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)

Que:2 Fill in the blanks:


1. The services and facilities of E-governance is divided into ______________ parts.
2. ______________ gives a unique identity to Indian citizens.
3. In Punjab at village level ________________ Gives E-Governance services.
4. ________________ is used to solve difficult problems.
5. Smart cards are symbol of __________________
Ans: 1. three 2. Aadhar number 3. Sewa/Suvidha Centers
4. Expert System 5. Smart Governance
Que:3 Very Short Answer Type Questions
Q:1 Write the full form of UIDAI?
Ans: Unique Identification Authority of India
Q:2 Name any two information systems?
Ans: MIS (Management Information System), DSS (Decision Support System)
Q:3 Write the names of different levels of E-governance?
Ans: International, Domestic and National levels
Q:4 Write the full form of G2G?
Ans: Govterment to Government
Q:5 Write the full form of TPS?
Ans: Transaction Processing System

Que:4 Short Answer Type Questions.


Q:1 What are the three levels of E-governance? Give detail.
Ans: The different levels of E-Governance system are as under:
1. National Level
2. Domestic Level / State Level
3. International Level
Q:2 In brief describe Smart Governance?
Ans: The modern name of e-governance is Smart Governance. ‘Smart’ means attractive and
governance means to govern. In simple words, the use of new technology for better planning and
better decision making in a democratic system is called smart governance. It deals with ways to
improve democratic processes and provide better public services through the use of technology.
Q:3 Write down any four uses of Aadhar card?
Ans: Here are some key uses of Aadhaar Card:
i. To open a bank account.
ii. To get gas connection and subsidy.
iii. To get a mobile SIM card or telephone connection.
iv. To avail various welfare schemes.
v. As a unique identification document.
Q:4 What are the different parts of information system?
Ans: The components of an information system are as follows:
• Hardware: This component monitors, CPUs, keyboards, mice, printers, hard disks etc.
• Software: This component includes all programs that process data using hardware.
• Database: This component is used to store data.
• Network: This part is used to share resources, information and data.
• Procedure: This component includes the methods and processes to obtaine information from
data.
Q:5 What is the Sewa/Suwidha Kendra? Describe.
Ans: The government has opened many help-desks at different levels (districts, tehsils, blocks, cities,
villages) to provide e-services and facilities through e-governance. These support centers are called
Sarva Sewa Kendras or Sewa Kendras. These centers provide various e-services to the citizens, such
as: issuance of residence certificate, caste certificate, birth-death certificate, etc.
Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 9
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)
12th Class Computer Science (Session 2021-22)
Chapter 8th Image Editing and File Conversion Tools
Que:1 Multiple choice question:
1. ______________ tool allows us to select a drawing with a free hand.
a. Fuzzy Selection b. Lasso c. Text d. Bucket Fill
2. SHIFT + C is a shortcut for ________________
a. To Create Duplicate Image b. To Delete Layer
c. To Copy of an image d. To Crop an Image
3. Scale option is used to change the _____________ of an image.
a. Color b. Size b. Area d. All of the above
4. ______________ is known as group of sheets looking at each other.
a. Masking b. Tools c. Layers d. None of the above
5. ______________ helps to make a duplicate copy of the active layer
a. Smudge Tool b. Dodge Tool c. Perspective Tool d. Duplicate Layer
Que:2 Fill in the blanks:
1. To resize the layer _____________ tool is used.
2. To move the layers _____________ tool is used.
3. To remove objects from Canvas _____________ tool is used.
4. The quality of the picture decreases when the picture is _____________
5. An important part of the Image Window is ____________ where the picture is shown.
Ans: 1. Scale 2. Move 3. Eraser 4. Scaled 5. Canvas
Que:3 Write the Full Forms:
1. GIF Graphics Interchange Format
2. PNG Portable Network Graphics
3. TIF Tagged Image File Format
4. JPG Joint Photographic Experts Group
5. PSD Photoshop Document
6. BMP Bitmap Picture

Chapter 9th Video Editing


Que:1 Fill in the Blanks:
1. In order for the computer to play audio files, different _________ are required.
a. Video codecs b. Audio Codecs c. Both a & b d. None
2. _________ format is a common audio format that is played extensively on electronic devices.
a. wmv b. avi c. mp3 d. cda
3. Audio files are stored on the Audio CD in _______ format.
a. flv b. aac c. mov d. cda
4. The effect applied between two video-clips is called ____________
a. sound b. video c. video transition d. photo
5. The process of dividing the video into sections is called ______________
a. merging b. splitting c. compressing d. decompressing
Que:2 Write True or False:
1. The process of making a movie is divided into five stages. False
2. Video editing works with only one video clip. False
3. Merging a video means splitting the clip into several parts. False
4. It is advisable to save the project before starting the process of exporting video file. True
5. MPEG-4 video format uses different compression for audio and video tracks. True
Que:3 Write the Full Forms of the Following:
1. MP4 Moving Picture Experts Group-4
2. MP3 MPEG Audio Layer 3
3. WMV Windows Media Video
4. FLV Flash Video
5. AVI Audio Video Interleaved

Prepared By: Vikas Kansal (CF, S.U.S. Govt. Sen. Sec. School (Girls), Sunam Udham Singh Wala) Page No: 10
(Please Visit http://cspunjab.nirmancampus.co.in for more computer science contents)

You might also like