100% found this document useful (1 vote)
6K views8 pages

Slow Learners Material XI Com - Applications

Comerce
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
6K views8 pages

Slow Learners Material XI Com - Applications

Comerce
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

XI Computer Applications important five marks(Slow learners)

1. Generation of computer:

Generation Year Component Merit/Demerit


First Generation  Big in size
1940-1956 Vacuums Tubes  Consume more power
 Produced more heat
Second Generation  Small in size
1956-1964 Transistors  Consume less power
 Produced less heat
Third Generation  Small in size
1964-1971 Integrated Circuits  Consume less power
 Working faster

Fourth Generation  Small in size


1971-1980 Microprocessor  Working faster
 Portable computer
introduced

Fifth Generation  Small in size


1980- till date ULSI  Working faster
 AI introduced

Sixth Generation  Small in size


In future  Working faster
 Robotics introduced

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.

Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 1


XI Computer Applications important five marks(Slow learners)

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.
-------------------------------------------------------------------------------------------------------------------

Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 2


XI Computer Applications important five marks(Slow learners)

5. Find and Replace:


* Click Edit – Find & Replace (or) Ctrl + F
Steps to find and replace a text:
1. Type the text you want to find in the search for box
Example: Bombay
2. Enter the replacement word in the Replace with box
Example: Mumbai
3. Click Find
4. To replace text, click Replace button.
4. Click Find All, select all the instances of the search text
5. Click Replace All button, writer replaces all the matches.
6. Match case separate lower case and upper cases
--------------------------------------------------------------------------------------------------------------------
6. Generate the series 5,10,20……../ 2560
1. Click Edit – Fill-- Series
2. Select Direction as Down
3. Select Series type as Growth
4. Start value as 5
5. End value as 2560
6. Increment value as 2
7. Click ok
-------------------------------------------------------------------------------------------------------------------
7. For loop:
For loop is a rigid structure that loops for a pre set number of times.
Syntax:
For (initialization; condition; increment/ decrement)
{
Body of the loop;
}
Example:
<Html>
<head> For loop</head>
<body>
<script language=\”javascript” type= “text/javascript”>
for (var no1=0; no1<=10; no1++)
{
Document.write(var no1”<br>”);
}
</script>
</body>
</html>
Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 3
XI Computer Applications important five marks(Slow learners)

8. Switch case statement:


Switch case statement is useful when testing all the possible results of an expression.
Syntax:
Switch (expression)
{
Case label 1:
Statements 1;
Break;
Case label 2:
Statements 2;
Break;
Case label n:
Statements n;
Break;
Default:
Statements;
}
Example:
<html>
<head>switch case</head>
<body>
<script language=\”javascript” type= “text/javascript”>
Var mark =60;
If(mark>=60)
{
Grade=1;
}
Else if (mark>=35)&& (mark<=59)
{
Grade=2;
}
Else
{
Grade=3;
}
Switch (grade)
{
Case 1:
Document. Write (“pass with first class”);
Break;

Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 4


XI Computer Applications important five marks(Slow learners)

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
------------------------------------------------------------------------------------------------------------------

Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 7


XI Computer Applications important five marks(Slow learners)

13. Process management algorithms in operating system:


1. FIFO
2. SJF
3. Round Robin
4. Based on priority
1. FIFO:
This algorithm is works based on queuing technique.
The process that enters the queue first is executed first by the CPU.
2. SJF:
This algorithm is works based on the size of the job
Small size of the job executed first by the CPU
3. Round Robin
This algorithm is works based on time sharing system.
Minimum processing jobs are executed first by the CPU
4. Based on priority:
This algorithm is works based on a priority.
High priority jobs are executed first by the CPU.
------------------------------------------------------------------------------------------------------------
14. Explain arithmetic operators with example:
Arithmetic operators are addition, subtraction, multiplication, division, and modulus.
Arithmetic operator Meaning Example Result
+ Addition Var sum=5+5 10
- Subtraction Var diff=20-10 10
* Multiplication Var prod=5*2 10
/ Division Var res=20/2 10
% Modulus Var rem=5%2 1
----------------------------------------------------------------------------------------------------------
15. Read the table and answer the following questions.
1. Total sales in the year 2015.
Ans: =sum(B5:E5) = 4285
2. Total sales in Coimbatore from 2012 to 2016.
Ans : =sum(E2:E6) = 1600
3. Total sales in Madurai and tiruchi during 2015 and 2016.
Ans: =sum (C5:D6) =4395
4. Average sales in Chennai from 2012 to 2016
Ans: =Average (B2:B6) =1760
5. In 2016, how many “air coolers” are sold in Chennai compared to Coimbatore?
Ans: =(B6-E6) = 1700

Prepared by Mr. DANIEL RAJ M.C.A.,M.Sc.,B.Ed ( cell.9578467778) 8

You might also like