Sie sind auf Seite 1von 5

Informatics Practices Class XII

HOLIDAY HOMEWORK ASSIGNMENT

UNIT - Computer Networking and Open Source Concepts

Q1. Which of the following are types of computer Networks


a) LAN, NAN, WAN b) WAN, Ring, Star
c)PAN, Internet, LAN, WAN
Q2.Which of the following is not a list of network topologies
a) star, bus, ring b) star, ring, hybrid c) common bus, double ring, hexagon
Q3. Which network topology has a central device which brings all the signals together?
Q4. Which network topology requires terminators at the end of the lines?
Q5.What topology provides each device with a point to point connection to every other device
in the network?
Q6. A_______is a number of computers linked together to allow them to share data and / or
other device in the network.
Q7. What is being described here: pair of copper wires twisted around each other.
Q8. This cable uses light to transmit data instead of magnetic signals.
Q9. A_________ converts digital signals to analog signals to digital signals
Q10. On a network, this is your computer’s unique hardware number.
Q11. This is the unique name given to site that becomes site’s identification on internet.
Q12. This is the numbered address(four parts separated by periods(.)) that identifies a website
uniquely.
Q13. This is the mechanism that obtains IP address using URL of a website.
This device that receives a signal on an electromagnetic or optical transmission medium,
amplifies the signals and then retransmits it along the next leg of the medium.
Q14. Define Network. What is its need?
Q15. What is a communication channel? Name the basic type of communication channels
available.
Q16. What is the MAC address? What is IP address?
Q17. What is a domain name? How it is alternatively known?
Q18. What is the difference between LAN, MAN, WAN and PAN
Q19.What is meant by topology? Give any two factors that must be considered before making a
choice for the topology?
Q20. Give two advantages and two disadvantages of following network topologies:-
a) TREE b) BUS c) RING d) STAR
Q21. Write 2 advantages and 2 disadvantages of the following:-
a) optical fibers b) Satellites c) Microwaves d) coaxial cable e) twisted pair cable
f) Radio wave
Q22. Define
a) Hub b) Switch c) Router d)Gateway e) Bridge f) Repeater
Q23. What is snooping? What is eavesdropping?
Q24. Explain:-
a) Trojan Horse
b) Worm
Q25. What are common threats to Network Security? What is DOS?
Q26. Give 2 prevention measures to counter threats to network security.
Q27. Compare and Contrast
(i) Free software and open Source software
(ii) OSS and FLOSS
(iii) Proprietary software and free Software
(iv) Freeware and Shareware
(v) Freeware and Free Software
(vi) TTF and OTF
(vii) Static and dynamic Font
Q28. Write Short note on”-
a) GNU b) linux c) Mozilla Firefox d) apache e) MySQL
f) Python g)PHP h)open Office i) OSI j) Tomcat

Q29. What is a standard? Name two categories of standards


Q30. Which of the following are open standards:
a) .orgg b)DOC c).SVG d) .TTF e) .JPEG
Q31. Name an open standard for the following
a) Web page
b) office document
c) vector images
d) audio compression
e) any image type
Q32. What is a font What are different font categories? Explain
Q33.Define a) ODF b) ogg Vorbis
Q34. What is Unicode? What is ISCII?
Q35. How is phonetic Text Entry different from Keymap based text entry?
Q36. What is Indian script Keymap known as?

UNIT - MySQL
Q1. Define database. What is DBMS?
Q2. Explain the fool owing Database Models briefly:
a) Relational Data Model
b) Hierarchical Data Model
c) Network Data Model
Q3. Differentiate between
a) Logical and physical data independence
b) DDL and DML
c) Char and Varchar datatype
d) SQL and MySQL
e) GROUPBY and ORDERBY command
Q4. Define the following terms:-
a) Relation b) Attribute c) Tuple d) Degree e) Cardinality
f) Primary Key g) Foreign Key h)Alternate Key i)Candidate Kay
Q5. What is the purpose of:
a) ALTER TABLE command
b) DROP TABLE Command
c) DELETE Command
d) UPDATE Command
e) Distinct clause
f) Between clause
g) LIKE clause

Q6. Write SQL commands for (a) to (f) and Outputs for (g)
BANK
Acc_no CName BName Amount DateofOpen T_Transactions
1 Karan Bank of 15000 1998-01-12 10
Baroda
2 Puneet State Bank 25000 1997-02-01 09
3 Anirban Oriental 17000 1999-07-15 05
Bank
4 Yatin Standard 38000 1999-02-10 11
Charted
5 Sunny StateBank 47000 1998-02-06 15
6 Jayant Uco Bank 34000 1998-08-10 07
7 Nikhil Bank of 56000 1999-01-02 12
Baroda
8 Tarun Oriental 22000 1999-04-04 08
Bank
9 Jisha Uco Bank 34500 1998-01-05 11
a)Display data for customers whose total transactions are between 8 and 11
b) Display data for all customers sorted by the DateofOpen
c) To count the number of customers with amount<30000
d) List minimum and maximum amount from the bank
e) List CName, BName, Amount for all the clients whose amount is<20000
f)Display Acc_No, CName, BName, Total Transactions in descending order of Amount
g)Give output for following
i) Select Avg(Amount) from BANK where Amount<23000;
ii) Select Max(Amount) from BANK Where Amount>30000;
iii) Select Sum(T_Transactions) from BANK;
iv) Select COUNT(DISTINCT BName) from BANK

Q7. Create a table SUPPLIER with following specifications:-


PName varchar(20) Primary Key Not Null
SName varchar(25) NotNull
Qty Integer DEFAULT 20
Price float(5,2) CHECK PRICE>200
City char(20)

Also insert a record in the table SUPPLIER with following values


‘Bread’, ‘Britannia’, 150, 12.00,’Delhi’
Q8. Define Function. Name different categories of Functions.
Q9. What will be the output of following:-
a) mysql>SELECT CONCAT(CONCAT( ‘Inform’, ‘atics’), ‘Practices’);
b) mysql>SELECT LCASE (‘ INFORMATICS PRACTICES CLASS 11TH);
c) mysql>SELECT UCASE( ‘Computer studies’);
d) mysql>>SELECT CONCAT(LOWER (‘Class’ ), UPPER (‘xii’));
Q10. if str= “INFORMATICS PRACTICES….” AND STR1= “… FOR CLASS XII”
Q11. Write command to display the output as ‘informatics practices for class xii”
Q12. Write command to display the system date
Q13. Write command to display the name of the current month.
Q14. Write SQL statement to display
Today, the date is <current date>
Q15. Differentiate between LTRIM( ) and RTRIM ( ) Functions
UNIT – Java Programming

Q1. Write code for event handler of each of the buttons in following applications:-

Button 1 Initial Value


Button 2 Calc Label
Button 3
Increment

Decrement

Button 1 initializes the value of Label to 0

Button 2 increments the value of Label by 1

Button 3 decrements the value of Label by 1

Q 2. Write code needed to perform the wage calculations as per the following GUI

Enter Wage Rate Wrate TF

Enter number of
hours worked Hrs TF

Wages Earned Wg Earned Lbl

Q3. WAP to input a number if number is greater 10 print square of number .Otherwise print
cube of number. (use if – else )

Roll No Term 1
Q.4.
Name Term 2

Average Term 3
Calculate

Q5. WAP to input day no & print day name (Switch – case )
Q6. WAP to print to multiples of 10 in reverse order (use for, while or do – while).
Q7. WAP to input temperature, Convert in Fahrenheit on clicking Fahrenheit button and
convert in Celsius on clicking Celsius button. (F to C = (temp – 32) / 1.8 and C to F = ( 1.8 *
temp ) + 32)
Q8. Design a GUI application having interface as shown below:
(a) The percentage marks are to be entered in the text field (marksTF) and upon
clicking at the button (calcBTN), corresponding grade(as per following
rules) should be displayed in the label (resultLBL) below command button.
Grade Calculator

Enter your marks %

Calculate Final Grade

You get an A+

Marks % Grade
>=90 A++
80-90 A+
75-80 A
60-75 B
50-60 C
40-50 D
<40 FAIL

Das könnte Ihnen auch gefallen