Topics
Operating System
- Introduction to Operating System (OS)
- Idea of an Operating System
- Windows NT
- LINUX
- File Systems and Its types
- File Operations
- Access Methods and its types
- Allocation Methods
- Concepts Related to Process Management
- Concepts related to memory management
- Basics of Graphical User Interface (GUI)
- Access and Security Aspects of O.S.
Data Structures
C++ Programming
- Introduction to C++ Programming
- Idea Behind Object-Orientated Programming
- Object-orientated programming approach
- Object-Oriented Terms and Concepts
- Classes and Objects
- Constructors and Destructors
- Functions in C + +
- Arrays in C++
- Pointers in C++
- References in C++
- Strings in C++
- Inheritance
- Virtual functions and polymorphism
- Friends in C++
- Operator overloading and type conversions
- Files and Stream
HyperTex Markup Language (HTML)
- <LI> Tags
- Ordered List
- Unordered list
- Definition lists
- Nested List
Tags used to create Lists
<LI> is list item tag. In any types of list, there are list item. To define these list items, <LI> Tag is used(except Definition List). </LI> Tag can be used at the end of every list item but it is not necessary.
Ordered List
Ordered lists can be preceded by Arabic numerals, upper case or lower case Roman numerals, or uppercase or lowercase alphanumeric characters. The tags for an ordered lists are <OL> and </OL>. The ‘START’ attribute allows you to establish the beginning of list's number sequence.
Unordered list
Unordered lists can be preceded by one of the several bullet styles like a closed circle , an open circle or a square. The tags for unordered lists are <UL> and </UL>. To define the bullet style, ‘TYPE’ attribute is used. The default appearance for a list is with disc.
Definition lists
The definition list element uses <DL> start tag and < /DL > end tag to create a definition list. This list is rendered without bullets. <DT> tag is used for definition terms i.e. name or title of the item you are defining. The <DD> tag is used for the definition itself.
Nested list
List within another list either order list or unordered list is called nested list. The lists used can be of any type