Slow Learners Material XI Com - Applications
Slow Learners Material XI Com - Applications
1. Generation of computer:
2. Components of computer:
* Input unit
* Central processing unit
* Arithmetic and logical unit
* Control unit
* Output unit
* Memory unit
1. Input unit:
Input unit is used to feed any form of data to the computer.
Example: mouse, keyboard
2. Central processing unit:
CPU is the major component which interprets and executes software instruction..
CPU has three components Arithmetic and Logic Unit, Control Unit, Memory Unit
3. Arithmetic and logical unit:
ALU perform arithmetic operations such as addition, subtraction, multiplication, division.
4. Control unit:
The control unit controls the flow of data between the CPU, memory and I/O devices.
5. Output unit:
Output unit is conveys information to user in an understandable form.
Example: Monitor, printer
6. Memory unit:
Primary memory: primary memory is used to temporarily store the programs and data.
Secondary memory: Secondary memory is used to permanently store the programs and data.
Draw the Diagram
---------------------------------------------------------------------------------------------------------------------
3. Types of ROM:
* ROM
* PROM
* EPROM
* EEPROM
1. ROM:
* ROM is called a non volatile memory
*Read only memory refers to special memory in a computer with pre recorded data at
Manufacturing time which can not be modified.
2. PROM:
* PROM is called a non volatile memory
*PROM retains their contents even when the computer is turned off.
3. EPROM:
* EPROM is called a non volatile memory
*EPROM contents can be erased using ultraviolet rays.
4. EEPROM:
* EPROM is called a non volatile memory
* EEPROM contents can be erased by exposing it to an electrical charge.
--------------------------------------------------------------------------------------------------------------------
4. Distributed operating system:
Distributed operating system is used to access shared data and files that reside in any
machine around the world using internet/ intranet.
Advantage:
* User at one location can make use of all the resources available at another location
* Many resources can be added easily in the network.
* Improve the interaction with customer and client.
* Reduces the load on the host computer.
-------------------------------------------------------------------------------------------------------------------
Case 2:
Document.write(“pass ”);
Break;
Default:
Document.write(“fail”);
}
</script>
</body>
</html>
---------------------------------------------------------------------------------------------------------------------
9.Popup dialog boxes in java script:
1. Alert dialog box
2. Confirm box
3. Prompt box
1. Alert dialog box:
Alert dialog box is mostly used to give a warning message to the users.
Alert box gives only OK button.
Syntax:
Alert (“message”);
Example:
Alert (“Name is compulsory entry”);
2. Confirm box:
A confirmation dialog box is mostly used to take user’s consent on any option.
Confirm dialog box gives two buttons OK and Cancel.
Syntax:
Confirm (“message”);
Example:
Confirm (“Hai Do u wants to continue :”);
3. Prompt box:
Prompt dialog box is very useful when the user
Syntax:
Prompt (“message”, “default value”);
Example:
Prompt (“Enter your Name:’,”Name”);
-------------------------------------------------------------------------------------------------------------------
10. Attributes of table tag:
1. Cell spacing
2. Cell padding
3. Border
4. Border color
5. Align
Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 5
XI Computer Applications important five marks(Slow learners)
6. BG color
7. Height and width
1. Cell spacing:
It is used to set the space between cells in table
2. Cell padding
It is used to set the space between contents of a cell and its border .
3. Border:
It is used to set the border thickness of the table.
4. Border color:
It is used to set the border color of the table.
5. Align:
It is used to set the position of the table.
6. BG color:
It is used to set BG color of the table
7. Height and width:
It is used to set the height and width of the table.
---------------------------------------------------------------------------------------------
11. Explain the types of list:
1. Order List
2. Unordered List
3. Definition List
1. Order List:
Oder list displays items in a numerical or alphabetical order.
Order list created within the tag pair <OL>…….. </OL>
Example:
<html>
<head>
<title> order list</title>
</head>
<body>
<ol>
<li> Tamil
<li> English
<li> Accountancy
<li> Commerce
<li> Economics
<li>Computer Applications
</ol>
</body>
</html>
Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 6
XI Computer Applications important five marks(Slow learners)
2. Unordered List:
Unordered list displays items prefixed with special bullet symbols.
Unordered list created within the tag pair <UL>…….. </UL>
Example:
<html>
<head>
<title> Unordered list</title>
</head>
<Body>
<Ul>
<li> Tamil
<li> English
<li> Accountancy
<li> Commerce
<li> Economics
<li>Computer Applications
</Ul>
</body>
</html>
3. Definition List
Definition list created within the tag pair <UL>…….. </UL>
Definition term is created within <DT>…… </DT>
Definition Description is created within <DD> ……..</DD>
Example:
<html>
<head>
<title> Definition list</title>
</head>
<body>
<DL>
<DT>HTML</DT>
<DD> Hyper Text Markup Language</DD>
</DL>
</body>
</html>
-----------------------------------------------------------------------------------------------------------------
12. Types of internet services:
1. Wireless 2. Mobile 3. Hotspots 4. Broadband 5. DSL 6. Cable 7. Satellite 8. ISDN
------------------------------------------------------------------------------------------------------------------