X It Pre-Board 1 Answer
X It Pre-Board 1 Answer
Page 1 of 10
a) Malware b) Spyware c) Antivirus d) Application
c) Antivirus
ii. __________ are a group of words that work together to (1)
communicate an element of speech.
Phrases
iii. ______________ ability of a person to do the things that need (1)
to be done without someone or something influencing us.
Self Motivation
iv. Having conscious knowledge of your own self, capabilities, (1)
feelings and one’s own character is called as __________ .
Self awareness
v. Entrepreneurs are not job seekers, but they create opportunities (1)
of employment for people. (True/False)
True
vi. According to the concept of sustainable development, the (1)
environment and development are _________issues.
Page 2 of 10
from sender to receiver.
Instant messaging
Page 3 of 10
identifies each record in a table and it does not contain any
duplicate data.
a)Primary b) Candidate c)Foreign d) All of these
v. Ronika wants to create a table in a database to record the data (1)
regarding her classmates. Which data type should she use to
store the addresses of her friends?
a) OLE b) Number c) Varchar d) Integer
vi. A ____________ in a database store the complete data in a (1)
structured manner, in the form of rows and columns.
a) Form b) Table c) Sheet d) Format
Page 4 of 10
c. Protected against manual changes
d. Custom Styles
v. The________ button represents the start of a hyperlink. (1)
a) LE b) LS c) # d)T
vi. A merged document is created by merging the main document (1)
with the_________________ fields.
a) List b) Document c) Table d) Data Source
Page 5 of 10
v. State True/ False (1)
Original author of the Worksheet can accept or reject changes
made by other users.
True
vi. A ___________refers to a cell or a range of cells on a worksheet (1)
and can be used to find the values or data that you want formula
to calculate.
cell reference
Page 6 of 10
Misconception 1 The misconception is that every business idea needs to be unique or special.
Misconception 2 The misconception we have is that a person needs a lot of money to start a business.
Misconception 3 A misconception we have is that only a person having a big business is an
entrepreneur. Misconception 4 A misconception we have is that entrepreneurs are born, not made.
Q10. What do you mean by the term ‘conservation’? Mention the (2)
objective of resource conservation.
Conservation means sustainable use of natural resources like soils, plants, animals and minerals.
The objective of resource conservation is that resources should not be used at a rate greater than
the rate of their replacement.
Q13. What is the difference between Goal seek and solver? (2)
Goal Seek reverses the usual order for a formula. Usually, you run a formula to get the result when
certain arguments are entered. By contrast, with Goal Seek, you work with a completed formula to
see what values you need in an argument to get the results that you want.
Solver deals with equations with multiple unknown variables. It is specifically designed to minimize or
maximize the result according to a set of rules that you define.
Page 7 of 10
Q15. What do you mean by occupational hazards? List any two (2)
types of occupational hazards.
: An occupational hazard is the illness one may acquire due to his occupation. Like people working in a
chemical factory may get affected due to presence of certain chemicals. Some types of occupational
hazards are : Physical hazards, chemical hazards, biological hazards, , behavioural hazards, radiological
hazards, ergonomic hazards etc.
A data definition language or data description language (DDL) is a standard for commands that define
the different structures in a database. DDL statements create, modify, and remove database objects
such as tables, indexes, and users. Example CREATE, ALTER, and DROP. Data Manipulation Language
(DML) A data manipulation language (DML) is a language that enables users to access and manipulate
data in a database. The goal is to provide efficient human interaction with the system. For Example
Insert, Update, Delete and Select
Q18. (a) Explain any two types of impairments that impact computer (4)
usage.
(b)What is DSL?
Page 8 of 10
Q19. What do you understand by the terms: (4)
a. Text Wrapping
b. Anchoring
c. Table of contents
d. Mail Merge
Table of contents
table of contents feature lets you build an automated table of contents from the headings in your
document. Before you start, make sure that the headings in your document are styled consistently.
For example, you can use the Heading 1 style for chapter titles and the Heading 2 and Heading 3 styles
for chapter subheadings.
Q21. (a) Write a Query to create a Table with the following structure (4)
Table Product
Page 9 of 10
(i) Write a Query to display all records
(ii) Write a Query to add a new row with the following details
(‘V005’, ‘Vadilal’, ‘2010-03-20’, ‘Pune’)
(iii) Write a query to modify the location of V003 from
Kolkata to Gujrat.
Ans: Create table Product (PID Char(4), Pname Varchar(20), Description Varchar(40), Price
Decimal(5,2));
Ans Select * from Vendor;
Ans Insert into Vendor values (‘V005’, ‘Vadilal’, ‘2010-03-20’, ‘Pune’);
Ans Update Vendor Set location= ‘Gujrat’ where VendorId=’V003’;
Page 10 of 10