802 - Information - Technology - MS (1) - 231223 - 090527
802 - Information - Technology - MS (1) - 231223 - 090527
802 - Information - Technology - MS (1) - 231223 - 090527
General Instructions:
1. Please read the instructions carefully.
2. This Question Paper consists of 24 questions in two sections – Section A & Section B.
3. Section A has Objective type questions whereas Section B contains Subjective type questions.
Page 1 of 12
SECTION A: OBJECTIVE TYPE QUESTIONS
Ans True
(i) &
(ii) =
(iii) @
(iv) #
Ans =
iii. _____________ work in collaboration with Green Builders to lay the idea of how 1
the building will look like after its completion. They also provide artistic beauty to
buildings to make them look innovative and interesting
Ans Green Design Professionals
iv. List one benefit of Team Building 1
i. Update
ii. Modify
iii. Alter
iv. Create
Ans Update
Page 2 of 12
ii Keyword used to display the structure of the table 1
i. Describe
ii. Show
iii. Select
iv. Display
Ans Describe
iii ____________ method of a String Class returns true if the length of this string is 0 1
i. indexAt()
ii. length()
iii. isEmpty()
iv. indexOf()
Ans isEmpty()
iii _____________ Constraint is used to restrict the values of an attribute within a range. 1
Ans Check
iv What are member methods?? 1
Ans Pepperfry
Ans 20
ii _________________is an e-commerce application where the customer can purchase goods 1
over the Internet.
Page 3 of 12
iii ___________ Phase of Web Application deveopement problem statement for which 1
the web application is to be developed is identified.
i. Requirement
ii. Design
iii. Implementation
iv. Test
Ans Requirement
Ans It gives the dept_name attribute values of all tuples without repetition
Ans Referential Integrity is used to check that data entered in one relation is consistent
with the data entered in another relation.
vi Identify the type of operator used 1
If (A >=B)
(i) Arithmetic
(ii) Relational
(iii) Logical
(iv) Assignment
Ans Relational
vii E business offers advantages and opportunities, there are also risks and barriers. These 1
include
(a) Violation of customer privacy
(b) Spikes causing websites to fail at peak times
(c) Internet hackers penetrating company security
d) All of the above
Page 4 of 12
Q. 4 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i What is an Object? 1
System.out.println(Qty[3]);
Answer 103
iii Define Shopping cart 1
Answer
Online shopping stores also provide a shopping cart or basket. You can select the
products that you wish to buy and add them to your shopping cart.
v _______________ replaces zero or more number of random character, when used with 1
Like keyword.
a. _
b. %
c. $
d. @
Ans %
a. Getter
b. Setter
c. Main
d. Default
Ans Main
Page 5 of 12
Q. 5 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i ___________ Phase of Web Application development problem statement for which the 1
web application is to be developed is identified.
v. Requirement
vi. Design
vii. Implementation
viii. Test
Answer Requirement
ii ____________ method of a String Class Return the index of the first occurrence of given 1
substring
i. indexOf()
ii. indexAt()
iii. length()
iv. isEmpty()
Answer indexOf()
iii ______________command which displays list of databases available on the current server. 1
i. Show databases
ii. Show tables
iii. Create tables
iv. Display tables
Ans Same information is stored in more than one file which result in wastage of space.
v _____________is a collection of raw facts which have not been processed to reveal useful 1
information.
Ans Data
vi ________ method test whether this string end with the given suffix 1
Ans endsWith
Page 6 of 12
Q. 6 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i Which SQL keyword is used to sort the result? 1
a) ORDER BY
b) SORT
c) ORDER
d) SORT BY
Ans Order By
i. Drop
ii. Delete
iii. Modify
iv. None of the above
Answer – Delete
Ans. Java Virtual Machine (JVM), translates the bytecode into machine code and then
executes it.
Ans b 1st_string
vi Name one front end and one Back end application to create Web Applications 1
Ans Front end Java NetBeans
Back end MySQL
Page 7 of 12
SECTION B: SUBJECTIVE TYPE QUESTIONS
Answer any 3 out of the given 5 questions on Employability Skills (2 x 3 = 6 marks)
Answer each question in 20 – 30 words.
Q. 7 Sandeep has to appear for his first job interview. Mention at least 2 points he shall keep in 2
mind before appearing.
Ans (Any 2 points)
What to do before an interview
• Get a good night's sleep the night before.
• Do research.
• Eat a good breakfast.
• Prepare questions beforehand.
• Know who will be interviewing and learn a bit about their background.
• Know your strengths and put together a list of them.
• Turn off your cell phone • Prepare a solid list of references
Q. 8 Self-Motivation is significant in building one’s personality. Comment 2
Answer
Self-motivation is important because • It increases individual’s energy and activity. • It
directs an individual towards specific goals. • It results in initiation and persistence of
specific activities • It affects cognitive processes and learning strategies used for
completing similar tasks
Q. 9 What is Cell referencing in a spreadsheet? 2
Ans
A cell reference identifies a cell or a range of cells. Each cell in the worksheet has a unique
address formed by the combination of its intersecting row and column. When a cell
address is referred to in a formula, it is called cell referencing
Q. 10 Rohan has a successful startup company. According to him‘Decision Making is considered 2
to one of the important entrepreneurial competency’. Do you agree with Rohan’s opinion?
Justify.
Yes Decision making is one of the important entrepreneurial competency, entrepreneurs
often have to take that one decision at the right time which can define the future of their
company. And then they also have to quickly act upon their decisions.
int p
p = 14;
do;
p = p-2;
Page 8 of 12
System.out.displayln(p);
}while p >= 2
Answer int p;
p = 14;
do
{
p = p-2;
System.out.println(p);
}while( p >= 2);
Answer any 2 out of the given 3 questions in 30– 50 words each (3 x 2 = 6 marks)
Q. 17 How eGovernance does empowers the citizens. Give 3 points. 3
Answer
E-governance empowers the citizens socially and economically, and enhances their lives by
providing them with quality information and better services. It enables citizens to access
information directly, without paying any money to a middleman or a tout. It ushers
transparency in the system.
Q. 18 Predict the output of the following code; Also categorize the loop as Entry / Exit Control 3
Loop.
int j=1,s=0;
while (j<10)
{
System.out.print(j+”+”);
s=s+j;
j=j+j%3;
}
System.out.println(“=”+s);
Answer 1+2+4+5+7+8+=27
Entry Control Loop
Page 9 of 12
Q. 19 (1+2)
(i) Mention at least 2 work areas which uses Database Management Systems.
(ii) Jatin has given the following query from the table Student but he is unable to
execute it successfully. Write the correct query after rectifying the error
Select Name, Marks
From student Table
Where Name =”P%”
Answer any 3 out of the given 5 questions in 50– 80 words each (4 x 3 = 12 marks)
Q. 20 Consider the following table and wrtite SQL statements 4
Table Menu
Page 10 of 12
Answer
(i) Insert into Menu values
(“P009”, “Lemon Rice”, “South Indian”, 140);
(ii) Select * from Menu order by Price;
(iii) Select Item, Description from Menu
Where price between 100 and 150;
(iv) Cardinailty - 7 Degree – 4
Q. 21 How students are benefitted from online learning? What are the various ways of 4
online learning? Name 2 educational websites
Answer It provides freedom to the learner to learn at their convenient location, convenient
time and at their own pace of learning. Also, there is no discrimination of age, caste, gender,
background, or the qualification of the learner. The tutorials may be enriched with audio and
video information, which makes learning more enjoyable and attractive. Also, tutorials and
tests are available for almost all topics, sometimes in regional languages also.
Types of Online Learning
Video/slide tutorials where the video or slides of lectures are available. The learner can visit
the site and view the tutorials.
Interactive tutorials require the user to follow the instructions, perform the desired action and
get a feedback.
Webinars are real time lectures, where users participate in the lecture, may ask questions,
and get their queries answered.
Differentiate between return type and method arguments with a suitable example
Q. 23 Aman wants to shop shoes online. Write detailed Steps/ procedure to be followed 4
while shopping online.
Answer Open the shopping site, from where you want to shop online.
login with your username and password
You can select the products that you wish to buy and add them to your shopping cart.
Having selected your products, you can view what you have selected and the total
amount to be paid by you.
We may delete any product from the shopping cart, or proceed for payment.
Read the terms and conditions before making the payment
Page 11 of 12
Q. 24 (i) Write a program in Java to display Area of a square. 2+2
Answer
static double square area (double side)
{ return (side * side);
}
(ii) What are comment entries in Java? Mention two ways to give
comments.
Answer
Comments are used in code by programmers to document their programs – to provide
explanatory notes to other people who read the code. This is especially useful in the
real world, where large programs are written by one programmer and maintained by other
programmers.
Beginning a comment line with two consecutive forward slashes (//)
Writing the comment between the symbols /* and */
Page 12 of 12