Informatics
Informatics
a. An organization XYZ Ltd is planning to link its head office in Dubai to the 1
mountainous remote areas of Khorfakhan where cable connection is not
feasible. Suggest an economic way to connect it with reasonably high
speed.
b. Name a device used to connect a computer to an analog telephone line. 1
c. Name the transmission media that internet users use for maximum 1
bandwidth.
d. If a user of one network wants to connect to the user of another network. 1
Which device can they use to connect if their networks are similar or
dissimilar?
e. State the difference between star and bus topology. 2
Page 1 of 8
c. State the following: 1
(i) An open source professional audio encoding and streaming
technology standard.
(ii) A common standard for all documents that can be opened and
edited in all platforms
d. What is phonetic text entry? State a website that allows this feature. 2
f. Which HTML tags are used for making a table and adding rows 1
in a HTML document?
g. How is <OL> tag different from <UL> tag of HTML ? Give Example 2
b. State the cardinality, degree of the Table Teacher and the Cartesian 2
product of the two tables below. Also identify their foreign keys and
primary key if you need to join the two tables.
TEACHER
Tno. Tname Tcity
T1 Mr.Nayak Delhi
T2 Mrs.Dubey Mumbai
STUDENT
Roll Name City
1 Divakar Delhi
2 Puneet Mumbai
3 Rohit Kolkata
c. State the commands for the following: 1
(i) To cancel a transaction
(ii) To Initialise a transaction
d. State the use of the alink and the vlink tags of HTML 2
f. Sanjeev is not able to reduce the salary of employee. Which constraint has 2
he used while creating table? What should he do to make changes in the
constraint?
Page 2 of 8
g. 1
The Pizza Cafe has computerized its billing. The following is the data entry
screen used at their outlet. The outlet offers two different types of pizzas,
regular and pan pizzas. The price of a regular pizza is Rs. 90 and that of a
pan pizza Rs. 110. The user can choose to have three different types of
extra toppings if he wants. Each extra toppings costs Rs. 20.
Page 3 of 8
jFrame jFrame1 The Main Frame Object
Text Field txtName To enter name of the customer
Page 4 of 8
int work = 10;
int i = 0;
while (work < 20)
{
System.out.println( work * i);
i=i+2;
if (i==8)
work = 20;
else
work = work -3;}
f. Write a JAVA code snippet to finds whether the number entered by the 2
user is a palindrome or not.
g. Find the errors in the following block of code. Underline and re-write the 2
corrected code:
int i=0;x=0;
while i < 10
{
if (i % 2 = 0)
{
x==x+i;
System.out.show(x + 1); }
i ++;
}
Page 5 of 8
System.out.println((st.substring(st.length()-i)).toUpperCase());
}
b. Create the following table Training with the constraints as given below: 2
FieldName Datatype, Width Constraint Description
Train_id Int,4 Primary Key Stores a unique
training id number
T_title Varchar,20 The module title for the
training
Date Date Date of Training
Venue Varchar, 20 Venue of the Training
Time Varchar,10 Time for the training
eg: 10:00 am to 4:00pm
Trainer Varchar,20 Name of the trainer
incharge for the
training
Page 6 of 8
Cost Float 5,2 Default =0 Cost of the training
Page 7 of 8
*********************************************************************************************
***
Page 8 of 8