Mark For Each Correct Answer
Mark For Each Correct Answer
Mark For Each Correct Answer
Informatics Practices
Marking Scheme
Time allowed: 3 hours Maximum Marks: 70
Q No Marks
1. (a) Which of the following are open standards? 1
.OGG .DOC .BMP .ODF
Ans: .OGG
.ODF
(½ Mark for each correct answer)
(d) International Tour and Travels company has set up its new branch office in Jaipur 1
where different buildings are spanned over in the radius of 900 meter in Jaipur.
Name the network formed in the following situations :
(i) The branch office is connected with the regional office in New Delhi.
(ii) All the buildings of branch office are connected to each other.
1
(e) Deepti is confused between the terms ASCII and Unicode. Help her by 2
differentiating between ASCII and Unicode.
Ans: ASCII: It is a 7 bit code that can represent 27 characters. It is platform dependent.
UNICODE: It is 8 bit, 16 bit and 32 bit code to represent 2 8 , 216, 232 characters
respectively. It is platform independent. (1 Mark for each correct
differentiation)
(f) Many of the programming brains has shifted their focus from Proprietary software 4
to Free and Open software. Mention any two freedom offered by Free software.
Going with the flow, Sandhya has downloaded a software from the internet
which can be freely distributed and used by anyone but the source code is not
available. Is it Freeware or free software? Justify your answer as well.
Similarly Premjith wants to install a software on his system that can help him to
create, edit and save office documents but he does not want to purchase the
software. Suggest him a good software for the same.
Openoffice.org
(1 Mark for correct answer)
2
2. (a) Ruby, a class XI student has just started learning java programming. Help her in 4
the following:
i. Explain her the concept of variable and data type by suitable example.
ii. Help her in understanding the difference between assignment operator and
comparison operator with the help of appropriate example.
Ans: i. Variables are named storage location to store values temporarily which can be
changed during program execution.
Data type states the way the values of that type are stored, the operations that
can be done on that type and the range for that type.
For example:
int marks;
In the above statement, int is the data type and marks is the name of variable
which store values temporarily.
For example:
int marks=90;
In the above statement value 90 is assigned to the variable named marks.
if(marks==40)
jTextField1.setText(“Just Pass”);
In the above if statement, value of marks is being compared with 40.
3
(b) Will the output from the following two code be any different? First 2
Code:
int x=2,y=40;
while(y<=x) {
jTextField1.setText(""+x);
x=x+8;
}
Second Code :
int x=2,y=40;
do {
jTextField1.setText(""+x);
x=x+8;
} while(y<=x);
OR
Ans: Yes it will be different as in First Code there will be no output while in Second
Code the output will be 2 because in while loop condition is false in the
beginning so control will not come inside the loop even for once while in do
while loop, loop will be executed at least once even if the condition is false.
OR
Output: 0
5
(1 Mark for each correct answer)
4
(c) Dev, a website designer with “Creative Designers Pvt. Ltd.” has written the 4
following code. Observe the code given below and answer the following
questions:
<company>
<employee eid=1>
<name>Albert</name>
<dept deptid=“d1”>Computer</dept>
</employee>
<employee eid=2>
<name>Manisha</name>
<dept deptid=“d2”>Accounts</dept>
</employee>
</company>
Two main features of XML for which it’s used extensively now a days:
XML is used to store data.
• XML is used to exchange data.
5
(b) Mr. Manav, a database administrator in “Global Educational and Trai Institute”ning
has created following table named “Training” for the upco ming
training schedule: 4
Training
(c) Observe the table named “Training” given above carefully and predict the output of 4
the following queries:
i. select city from training where topic = 'Cyber Security';
ii. select count(Training_Id) from training where email_id like '%gmail% ';
iii. select AVG (Fee) from training where Topic = 'Cyber Security';
iv. select name from training where INSTR (Email_Id, '@’)=0;
6
(d) What is the degree and cardinality of the above given table named ‘Training’. 1
Ans: Degree: 6
Cardinality: 5
(½ Mark for each correct answer)
4. (a) Shiva has placed two radio button on a payment form designed in NetBeans to 1
accept mode of payment one out of cash or card. To his surprise, during runtime,
a customer is able to select both the options for a single transaction. What went
wrong?
OR
Mention any one advantage of jCheckBox control over jRadioButton control.
Ans: Shiva has forgot to attach both the radio buttons to one button group to make
them mutually exclusive.
OR
Multiple options can be selected through jCheckBox control while jRadioButton
allows selecting a single option.
Suggest her any two basic methods commonly available with all the four controls
mentioned above.
OR
OR
7
(c) What will be an output of the following code if value of variable application is 1? 1
switch(application)
{
case 0 : jTextField1.setText("RDBMS"); case 1 :
jTextField1.setText("BROWSER"); case 2 :
jTextField1.setText("OS"); break; case 3 :
jTextField1.setText("PHOTO EDITOR"); break; default :
jTextField1.setText("Application Software"); break;
}
OR
Ans: OS
if(application= =0)
jTextField1.setText("RDBMS"); else
if(application= =1)
jTextField1.setText("BROWSER");
else if(application= =2)
jTextField1.setText("OS"); else
if(application= =3)
jTextField1.setText("PHOTO EDITOR"); else
jTextField1.setText("Application Software");
8
(d) Anju, a beginner in java programming has written following code with some 4
mistakes:
int k=0;
string s="Save Earth";
int l=s.length;
for(int i=0;k<l;i++)
{
jTextArea1.append(s+\n);
k++; };
Help her in identifying and correcting the errors.
Convert the correct code into do while looping statement.
OR
Observe the given code:
int ctr=10;
while(ctr>5)
{
ctr=ctr-2;
}
int i=0,k=0;
String s="Save Earth";
int l=s.length();
do
{
jTextArea1.append(s+"\n");
k++;i++; }
while(k<l);
OR
i. 3 times
4
(1 Mark for each correct answer)
9
10
ii. Above given loop will come under Entry controlled loop as in the above given loop
condition is being checked at the time of entering in the loop.
(1 Mark for correct answer)
(1 Mark for correct justification)
(e) Study the following code and answer the questions that follow: 2
Study the following code and answer the questions that follow: String
str="Green World, Clean World";
int len=str.length(),remain;
remain=100-len;
jTextField2.setText(str.toUpperCase());
jTextField3.setText(Integer.toString(remain)+" more charachters can be
entered");
i. Predict the output displayed in text fields named jTextField2 and jTextField3
after running the above code. ii. Identify and name any two method of String class
used in the above code.
OR
Explain the purpose of pow() method with the help of suitable java code. Also
mention that pow() method belongs to which class?
ii.length(),toUpperCase()
The above code will calculate the value of 24 and will give answer 16. pow()
method belongs to math class.
11
(f) Mr. Suman, a programmer in New Era Programming World has designed a 6
registration page for a hobby club as shown below:
12
Fee for different hobbies are as follows:
Hobby Fee
Dancing 1000
Drawing 1500
Music 2000
Singing 2500
Help him in writing the code to do the following:
i. As per the hobby chosen in the hobby combo box, fee should be displayed in the
respective text field named t1 as per the criteria given above after clicking on
“Check Fee” button. ii. If a candidate belongs to “Jr. Category” then a discount of
10% should be given in displayed in the text field. iii. After clicking on the “Net
Fee” button, Net Fee should be calculated and displayed in the respective text field
as per the given formula:
Net Fee = Fee – Discount
iv. Write suitable java code to close the application.
v. Write java statement to add a new hobby “Reading” in the combo box at run
time.
OR
Write java statement to make the Net Fee text field named txtNetFee un-editable
at run time.
Ans: i. int
x=c1.getSelectedIndex(); int
fee=0; if(x==0) fee=1000;
else if(x==1) fee=1500;
else if(x==2) fee=2000;
else if(x==3) fee=2500;
t2.setText(""+fee);
ii.
double disc=0;
int fee=Integer.parseInt(t2.getText());
if(r2.isSelected()) disc=fee*10/100;
t3.setText(""+disc);
13
iv.
System.exit(0);
v.
c1.addItem("Reading");
OR
txtNetFee.setEditable(false);
5. (a) Write any one similarity and one difference between primary key and unique Constraint 2
Ans: Similarity: Column with both the constraints will only take unique values.
Difference: Column with Primary key constraints will not be able to hold NULL values
while Column with Unique constraints will be able to hold NULL values. (2 mark for
correct answer)
(b) Ms. Pari, a beginner in SQL is not able to understand the meaning of “Cancelling 2
a Transaction”. Help her in understanding the same. Also mention suitable
command for it.
Ans: Cancelling a transaction means rolls the transaction to the beginning. It aborts
any changes made during the transaction and the state of database is returned to
what it was before the transaction began to execute.
14
(c) Consider the following tables Library given below: 4
Library
i. Suggest the suitable data type for Issue_Date column. ii. Suggest the suitable
SQL command to change the size of column name from 30 character to 50
characters. iii. Mention the significance of Bid column in table Library. iv.
Suggest the suitable command to display a list of the books in a sequence so
that first all the book’s name should be displayed which has been returned and
after that all the book’s name which has not been returned should be displayed.
Ans: i. Date ii. alter table library modify name varchar(50); iii. Bid column will always have
a unique value which will help uniquely identify each record of Library table.
iv. Select name from library order by status desc;
15
(d) Rishi, a class XII student has given following commands for the given 2
purposes: i. To add a new column “Rating” : update table library add column
rating varchar(20); ii. To give an increase of 50 Rs. to all the books:
alter library set price=price+50;
Check if above given SQL commands will be able to achieve desired task or not.
Justify your answer. Suggest the correction (s) if required.
Ans: No, above commands will not be able to achieve desired task as update and
alter commands have been interchanged.
6. (a) Write SQL query to create a table “BOOKS” with the following structure: 2
Table: BOOKS
OR
Help Ramesh in identifying any two columns for a table named student along
with their suitable data type.
16
Ans: Create table Books
(
BOOK_ID Integer (2) Primary Key,
BOOK_NAME Varchar (20),
CATEGORY Varchar (20),
ISSUE_DATE Date
);
OR
Column Name Data Type
RollNo Integer
Name Varchar(20)
(1 mark for each correct column name along with suitable data type)
17
(b) In a Bank’s database, there are two tables ‘Customer’ and ‘Transaction’ as shown
below.
Customer
Acc_No Cust_Name Cust_City Cust_Phone Open_Bal
Transaction
18
OR
All the columns having capability to become Primary Key are known as
Candidate Keys.
(ii) Which column can be considered as foreign key column in Transaction table? 1
OR
Identify Primary Key column of Transaction table.
Ans: Acc_No
OR
Trans_Id
19
(c) With reference to the above given tables, attempt the questions given below: 6
i. Write a query to display customer’s name who has withdrawn the money.
OR
Write a query to display customer’s name along with their transaction details.
ii. Write a query to display customer’s name who have not done any
transaction yet.
OR
How many rows and column will be there in the Cartesian product of the
above given tables. Also mention the degree and cardinality of the Cartesian
product of the above given tables.
Number of Rows: 20
Number of Columns: 9
Degree: 9
Cardinality: 20
20
iii.
2301003 65000
2201002 20000
Sometimes we do not want to see the whole output produced by a statement with
Group By clause. We want to see the output only for those groups which satisfy
some condition. It means we want to put some condition on individual groups
(and not on individual records). A condition on groups is applied by Having
clause. For example consider the following query:
This query will create account number wise groups and instead of displaying the
total amount of all type of transactions, it will only display the total of credit
transactions only.
7. (a) It’s an era of online financial transactions. Help Julie in identifying any two 2
challenges which a common man may face for the same.
Ans: i. A common man should have an electronic gadget like smart phone or computer.
ii. A common man should be oriented for online financial safety measures. (1
mark for each correct answer)
(b) Mention any one major environmental benefits of ICT to Ms. Megha so that she 1
can utilize it in her future “Save Earth” campaign
Ans: Major environmental impact of ICT on our society is that it is creating a virtually
paperless work environment so reducing cutting down of trees for paper
manufacturing.
(c) Ms. Achla, works as a Programmer in a survey firm named “National Survey 2
Foundation”. In her current project, she is supposed to design a survey page for
an online educational training program. Help her in choosing the most
appropriate controls for the specified task from Textfield, Label, RadioButton,
CheckBox, ListBox, ComboBox, Button and write in the third column:
1 TRAINEE’S NAME
2 TRAINING LOCATION
21
3 GRADE THE SESSION
(Excellent, Good, Satisfactory, Unsatisfactory)
4 SUGGESTIONS
Ans:
**********
22