Board Q.ans Class10
Board Q.ans Class10
Board Q.ans Class10
Q3. Write any four rules which are to be followed for creating strong passwords.
Answer:
Following are general rules to be followed for creating strong passwords:
Keep the length of the password 12–14 characters if permitted.
Avoid keeping passwords based on repetition, dictionary words, letter or number sequences, usernames, relative or pet
names etc.
Include numbers and symbols in passwords if allowed.
Use capital/upper-case and small/lower-case letters.
Avoid using the same password for multiple sites or purposes.
Avoid using something that the public or workmates know you strongly like or dislike.
Use random password generators if possible.
Use a combination of alphanumeric and special characters Example of a strong password: genXHd#@123$
Q4. Differentiate between LAN and WAN with two points only.
Answer:
Points LAN WAN
i Full Form: Local Area Network Full Form: Wide Area Network
ii Explanation: A network which connects Explanation: A network which connects
computers and devices in a limited geographical computers and devices over a broad /large
area. geographical area.
iii Example: Intranet, any network at Room, Home, Example: Internet, any network that links
School, Computer Lab, Office Building or closely across metropolitan, regional or national
positioned group of buildings. boundaries.
(1 mark each for writing any of the two point from the above)
(Any relevant explanation/example apart from the above should also be considered)
Important Question & Answers of
Book - Employability Skills
Unit IV - Entrepreneurial Skills-II
Q1. Mention any two misconceptions about the Entrepreneurship.
ANSWER
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.
(ANY TWO CAN BE MENTIONED)
Q2. What is the contribution of the entrepreneurs in the execution of Government policies? (2)
Answer:
Entrepreneurs make an important contribution in implementing government policies and
achieving the national goals. They cooperate with the government for the implementation of
development plans in the country.
Q7.
What should be done to make efficient use of electricity?
Ans. To make efficient use of electricity are as follows
(i) Don’t waste electricity. Turn off lights and unplug appliances when not in use.
(ii) Select clean, renewable energy sources like solar lights.
(iii) Avoid cars or do car-pools and use cycles or public transport.
Q9. Describe any four major problems associated with sustainable development.
Ans. Four problems associated with sustained development are as follows
(i) The concept of sustainable development is subject to criticism. What, exactly, is to be sustained in a sustainable
development? Any positive rate of exploitation of a non-renewable resource will eventually lead to exhaustion of
Earth’s final stock.
(ii) Turning the concept of sustainability into policy raises questions about how to assess the well being of present
and future generations. The issue is more complicated because our children do not just inherit environmental
pollution and resource depletion, but also enjoy the fruits of our labour, in the forms of education, skills, and
knowledge (i.e. human capital), as well as physical capital.
(iv) Poor management of natural resources, combined with growing economic activities, will continue to
pose serious challenges to environment. The problem arises because people, institutions and
governments have failed to evolve mechanism and policies to strike a balance between development
and conservation of resources and preservation of environment.
(v) The commonly held view that greater economic activity necessarily hurts the environment, is based on
static assumptions about technology, tastes and environmental investments. In reality, the relationships
between inputs and outputs and the overall effects of economic activities on the environment, are
continually changing.
Q4. Riddhima wants to know about mailing labels in a word processor. Help her to find
the answers to the given questions. (4)
(a) What is a mailing label?
(b) What are the ways to prepare and print mailing labels?
Answer:
(a) Mailing labels are usually pieces of paper with adhesive on the back that can be
affixed to packages or envelopes to identify the name and address of a recipient. They
may also indicate the name and address of the person sending the mail. Mailing labels
are extremely useful and time-saving for the people who must send out a large volume of
mail.
Answer: A style is a set of formats that you can apply to selected pages, text,
frames, and other elements in your document to quickly change their appearance.
Styles help improve consistency in a document.
OR
Styles are logical attributes. Using styles means that you stop saying “font size
14pt, Times New Roman, bold, centered”, and you start saying “Title” because you
have defined the “Title” style to have those characteristics.
OR
Style means that we shift the emphasis from what the text (or page, or other
element) looks like, to what the text is.
Step 1: When you create a table, a new blank record automatically appears in
the second row of the table.
Step 2: If you enter data in the last record, a new blank record will
automatically appear at the end of the table.
Step 3: Type data into the fields.
Step 4: When you have finished adding records in the datasheet, save it and
close it.
Q6. Rita is working on a spreadsheet. She wants to know about the use of the following
terms: (4)
(a) Quick Sort
(b) Filtering Data
Answer:
(a) Quick Sort is especially useful when you add new information to a spreadsheet. When
a spreadsheet is long, it is usually easier to add new information at the bottom of the
sheet, rather than adding it in its correct place. After you have added information, you
can sort the records to update the spreadsheet and put the information in its correct
place in quick sort.
(b) When a sheet contains a large amount of data, it can be difficult to find information
quickly. In that case, Filters can be used to narrow down the data in your worksheet,
allowing you to view only the information you need. In other words, Filters help you to ask
questions about your data and retrieve only the relevant information filtering away the
undesirable data.
Answer: A cell reference refers to a cell or a range of cells on a worksheet and can be
used to find the values or data that you want a formula to calculate.
Answer: An absolute link will stop working only if the target is moved. A relative link will
stop working only if the start and target locations change relative to each other. For
instance, if you have two spreadsheets in the same folder linked to each other and you
move the entire folder to a new location, a relative hyperlink will not break but the
absolute hyperlink won't work.
Write queries to
i. Display the total amount of each item. The amount must be calculated as the price multiplied by
quantity for each item.
ii. Display the details of items whose price is less than 50.
ANSWER
a) Itemno integer (10)
Iname varchar(15)
Price decimal(5,2)
Quantity integer(3)
b) i. Select price * quantity from item;
ii. Select * from item where price < 50;
Q4. What is the role of a foreign key in a database management system (DBMS)? (2)
Answer:
In a DBMS, a foreign key establishes a relationship between two tables. It references the primary
key of another table, enforcing referential integrity. It ensures data consistency by preventing
actions that would violate the defined relationships, such as deleting a record referenced by a
foreign key constraint.
(i) How many fields and records are there in the PRODUCT table?
(ii) Write SQL queries for the following:
(a) Display all Products whose Qty is between 100 and 400.
(b) Display S_Name, P_Name, and Cost for all the Products whose Qty is less
than 300.
(c) Display all the records alphabetically by S_Name.
Answer:
(i) There are 6 fields and 4 records in the table PRODUCT.
(ii) (a) SELECT* FROM PRODUCT WHERE Qty BETWEEN 100 AND 400;
(b) SELECT S _Name, P _Name, Cost FROM PRODUCT WHERE Qty <300;
(c) SELECT * FROM PRODUCT ORDER BY S_Name;
Q6. Shubham is learning about DBMS. He wants to know about the following: (4)
(a) The purpose of DBMS
(b) Any two uses of DBMS
Answer:
(a) DBMS (Database Management System) is used to store logically related information at
a centralized location. It facilitates data sharing among all the applications requiring it.
(b) Two uses of the database management system are as follows:
Q6. Explain any two types of relationship that can be created in tables.
Answer: There are three types of relationships which can be created in tables:
1. ONE to ONE
One to One Relationship: In this relationship, both the tables must have primary key
columns.
OR
In this relationship, primary key column of one table is associated with primary key
column of another/associated table.
OR
In this relationship, a record in table A is associated with only one record in table B.
One to Many Relationship: In this relationship, one of the tables must have primary key
column. It signifies that one column of primary key table is associated with all the
columns of associated table.
OR
In this relationship, one record of parent table is associated with more than one record of
another/associated/child table.
OR
In this relationship, one record in table A is associated with several records in table B.
Many to One Relationship: In this relationship, one of the tables must have primary key
column. It signifies that all the columns of primary key table are associated with one
column of associated table.
OR
In this relationship, more than one record of parent table is associated with one record of
another/associated/child table.
OR
In this relationship, several records in table A is associated with one record in table B.
Many to Many Relationship: In this relationship, no table has the primary key column. It
signifies that all the columns of primary key table are associated with all the columns of
associated table.
OR
In this relationship, a record in table A is associated with several records in table B and
vice-versa.
(1 mark each for correct explanation of any two types of relationship)
Note: 1/2 Marks should be awarded for example without explanation.
33 Sanchita is working for a nationalised bank and is in the process of creating a table to store the details of
customers of the bank.
Find out, which of the following fields of table Bank can be selected as primary key, candidate key and
alternate key?
Account No, Customer Name, Date of Birth, PAN Number, Opening Balance
Ans. Primary key AccountNo
Candidate key AccountNo and PAN Number
Alternate key PAN Number
Important Question & Answers of
Book – Subject Specific Skills
Unit IV – Web Application and Security.
Q1. Write any two advantages of online shopping.
ANSWER
i. A customer does not have sufficient time to visit stores
ii. A product or service that is not available in the local market is available online. (Or any other
relevant advantage)
Q2. Define the following Hot spots:- a) WIMAX b) Wi-Fi
ANSWER
a) WIMAX: It is a wireless communications standard designed to provide mobile broadband connectivity across
cities and countries through a variety of devices
b) Wi-Fi: It is a popular technology that allows an electronic device such as computers or mobile phones to
exchange data wirelessly over a network.
Q3. What precautions must be taken to improve online security?
ANSWER
i. Antivirus and Antispyware programs offer real-time protection monitoring your computer for any
changes by malware software.
ii. Use strong passwords a combination of alphanumeric and special characters could be used for
creating a password that is not so easy to crack or guessed by other users
iii. Secure transactions because information such as credit card details or personal information is sent
over the network.
iv. Use encryption software to protect your data from unauthorized users. (Or any other relevant
precautions)
Q4. Elucidate the following terms: (2)
(i) PAN
(ii) WiMAX
Answer:
(i) PAN: It stands for Personal Area Network. It is a computer network used for communication
among the computer and different technological devices close to it.
(ii) WiMAX: It stands for Worldwide Interoperability for Microwave Access. It is a wireless
transmission of data using a variety of transmission modes.
Q6. Rahul has purchased some stationary items from an online site. He has to make online
payment for the items to complete the transaction. Help him by answering the following queries:
(4)
(i) Suggest any two options that he can use to make payment of his bill on the online shopping
website.
(ii) Name any 2 situations where online shopping could be useful.
(iii) Name any 2 popular online shopping websites.
(iv) Write the full form of COD about online shopping.
Answer:
(i) Credit, debit card, Internet banking, etc are the options that he can use to make payment of his
bill on the online shopping website.
(ii) (a) They offer huge discounts on goods and services.
(b) Online shopping saves time and effort to buy products of one’s choice.
(iii) Flipkart and Amazon are two popular online shopping websites.
(iv) COD stands for Cash On Delivery. Cash on delivery is the sale of goods by mail order where
payment is made at the time of delivery rather than in advance.
Q7. Write any four rules which are to be followed for creating strong passwords.
Answer:
Following are general rules to be followed for creating strong passwords:
Keep the length of the password 12–14 characters if permitted.
Avoid keeping passwords based on repetition, dictionary words, letter or number sequences, usernames, relative or pet
names etc.
Include numbers and symbols in passwords if allowed.
Use capital/upper-case and small/lower-case letters.
Avoid using the same password for multiple sites or purposes.
Avoid using something that the public or workmates know you strongly like or dislike.
Use random password generators if possible.
Use a combination of alphanumeric and special characters Example of a strong password: genXHd#@123$
Q8. What is the special name given to the discussion style site used by non-technical (or technical users) users for creating
personal web pages? Give any two examples of websites that help us to create such discussion style sites for free.
Answer:
Blog Some of the websites that offer blog service for free are:
www.WordPress.com
www. blogger.com
www.blog.com
www.weebly.com
www.blogsome.com etc.
(1 mark for blog and 1/2 mark each for any two websites) 2