Amit Diwan

Amit Diwan

About

Amit Diwan holds an MCA from GGSIPU, Delhi. He is an e-Learning professional who has worked as an employee as well as a freelancer for websites for more than 5 years. His specialization includes WordPress, creating tutorials, writing learning content, content management, etc. He has also written a research paper on e-Learning.

80 Articles Published

Articles by Amit Diwan

80 articles

Process Management

Amit Diwan
Amit Diwan
Updated on 17-Mar-2026 4K+ Views

A process is an active program — a program that is under execution. It contains the program code, program counter, process stack, registers, and other execution context information. Process States During its lifecycle, a process transitions through different states. These state changes are managed by the operating system scheduler and occur based on resource availability and system events. Process State Diagram New Ready Running ...

Read More

User View vs System View in Operating System

Amit Diwan
Amit Diwan
Updated on 17-Mar-2026 23K+ Views

An operating system is a construct that allows user application programs to interact with the system hardware. Operating system by itself does not provide any function but it provides an atmosphere in which different applications and programs can do useful work. The operating system can be observed from two distinct perspectives − the user view and the system view. Each perspective focuses on different aspects and priorities of the operating system's functionality. Operating System Perspectives User View Focus: Ease of Use ...

Read More

Mass Storage Management

Amit Diwan
Amit Diwan
Updated on 17-Mar-2026 9K+ Views

Mass Storage Management deals with the organization and optimization of secondary storage devices, primarily disks, in modern operating systems. Disks provide the bulk of secondary storage and require efficient management algorithms to handle data access requests. Disk Structure Modern disks contain concentric tracks divided into multiple sectors. The disk structure can be visualized as follows − Disk Structure Sector ...

Read More

RDBMS terminologies

Amit Diwan
Amit Diwan
Updated on 14-Mar-2026 12K+ Views

RDBMS (Relational Database Management System) uses specific terminologies to describe its components. These include Database, Table, Column, Row, and various types of keys. Let us see them one by one − Database A database is a collection of related tables. For example, a university database may contain tables like Student, Professors, Courses, etc. Table A table (also called a relation) is a collection of rows and columns that stores data about a specific entity. Here's an example of a Student table − ...

Read More

Sixth Normal Form (6NF)

Amit Diwan
Amit Diwan
Updated on 14-Mar-2026 6K+ Views

In Sixth Normal Form (6NF), a relation variable is decomposed into its irreducible components − each table contains at most the primary key and one non-key attribute. A relation is in 6NF only if it is already in 5NF and every join dependency on the relation is trivial. 6NF represents the highest level of normalization, where we eliminate all possible redundancy by separating each non-key attribute into its own table. This extreme decomposition ensures that no information loss occurs during normalization while maintaining data integrity through join operations. Understanding 6NF Decomposition ...

Read More

Alternate Key in RDBMS

Amit Diwan
Amit Diwan
Updated on 14-Mar-2026 5K+ Views

An Alternate Key (also called Secondary Key) is a candidate key that was not selected as the primary key. Every table may have multiple candidate keys that can uniquely identify each row, but only one is chosen as the primary key. The remaining candidate keys become alternate keys. Example 1: Student Table Consider the following Student table ? Student_ID Student_Enroll Student_Name Student_Email 096 2717 Manish aaa@gmail.com 055 2655 Manan abc@gmail.com 067 2699 Shreyas pqr@gmail.com Student_ID, Student_Enroll, and Student_Email are the candidate keys since each can uniquely ...

Read More

Composite Key in RDBMS

Amit Diwan
Amit Diwan
Updated on 14-Mar-2026 5K+ Views

A composite key is a primary key that consists of two or more columns combined to uniquely identify each row in a table. A single column alone may not be unique, but the combination of multiple columns together forms a unique identifier. Example 1: Order Details In an order details table, a single OrderID can appear in multiple rows (for different products), and a single ProductID can appear in multiple orders. However, the combination of OrderID + ProductID is unique for each row ? OrderDetails ...

Read More

Future of RDBMS

Amit Diwan
Amit Diwan
Updated on 14-Mar-2026 868 Views

While Big Data and NoSQL databases have become popular choices for modern data solutions, the crucial features of RDBMS ensure it remains relevant and widely used. RDBMS is designed to handle structured data with ACID compliance, making it indispensable for applications requiring data integrity and consistency. Why RDBMS Still Matters The RDBMS market continues to grow with approximately 9% annual growth, as reported by Gartner. Although a massive volume of the world's data has been produced in recent years, most business-critical data remains structured − financial records, customer information, inventory, and transactions − all of which are best ...

Read More

Set Flex Items into equal width columns with Bootstrap

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 5K+ Views

To set flex items to be of equal width column, use the flex-fill class. The class displays the items as equal width. In the below example screenshot, you can see that we have four flex items with equal width columns −The flex-fill class is used for every flex items and in this way, we can set equal width. Below, we have two flex items − Example 1 Example 2 Example       Bootstrap Example                                   With flex-fill               Example 1         Example 2         Example 3         Example 4             Without .flex-fill:               Example 1         Example 2         Example 3         Example 4              

Read More

Bootstrap 4 .justify-content-*-end class

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 693 Views

To justify the flex items on the end, use the justify-content-end class.To justify the flex items on the end, on different screen sizes, use the justify-content-*-end class. The flex items justified at the end would be visible like the following on different screen sizes −Small Screen Size   Alabama   New York   Texas Medium Screen Size   Alabama   New York   Texas Let us see the complete code and learn how to work with justify-content-*-end class −Example       Bootstrap Example                               US               Alabama         New York         Texas                     Alabama         New York         Texas                     Alabama         New York         Texas        

Read More
Showing 1–10 of 80 articles
« Prev 1 2 3 4 5 8 Next »
Advertisements