Articles on Trending Technologies

Technical articles with clear explanations and examples

How to create bottom bordered (underline) navigation links with CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 2K+ Views

To create underlined navigation links, use the border-bottom property in CSS. This property is a shorthand for setting the width, style, and color of the bottom border. These links will display an underline on hover using the :hover selector, and the selected link will also remain underlined. Syntax selector { border-bottom: width style color; } /* For hover effect */ selector:hover { border-bottom: width style color; } Example: Bottom Bordered Navigation Links The following example creates a navigation menu with underlined links on hover and ...

Read More

C program to sort names in alphabetical order using structures

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 6K+ Views

Structure is a collection of different datatype variables, grouped together under a single name. In this article, we will learn how to sort names in alphabetical order using structures in C. Syntax struct structure_name { datatype member1; datatype member2; // ... more members }; Features of Structure The features of structure in the C programming language are as follows − It is possible to copy the contents of all the structure elements of different datatypes to another structure variable of ...

Read More

Role and Importance of Small-Scale Industries

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 582 Views

Small-scale industries are manufacturing enterprises with limited capital investment that play a crucial role in economic development. They serve as the backbone of developing economies by generating employment, reducing poverty, and promoting balanced regional growth. These industries are particularly important in countries like India, where they contribute significantly to industrial output, exports, and job creation. Definition and Classification According to the Industries (Development and Regulation) Act, 1951, small-scale industries are classified based on their capital investment requirements. An industry requiring capital investment between ₹25 lakhs to ₹5 crore is considered a small-scale industry. For service enterprises, the capital investment ...

Read More

How to create a bottom navigation menu with CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 1K+ Views

A bottom navigation menu is a fixed navigation bar that stays at the bottom of the viewport. It's commonly used in mobile applications and modern web designs for easy access to main sections. The menu is created using the position: fixed and bottom: 0 CSS properties. Syntax nav { position: fixed; bottom: 0; width: 100%; } Example: Complete Bottom Navigation Menu The following example creates a responsive bottom navigation menu with hover effects − ...

Read More

C program to compare if the two matrices are equal or not

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 3K+ Views

In C programming, comparing two matrices for equality involves checking both their dimensions and corresponding elements. Two matrices are considered equal if they have the same dimensions (rows and columns) and all corresponding elements are identical. Syntax // Matrix comparison logic if (rows1 == rows2 && cols1 == cols2) { // Compare each element for (int i = 0; i < rows1; i++) { for (int j = 0; j < cols1; j++) { ...

Read More

Revaluation of Assets and Reassessment of Liabilities

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 385 Views

Revaluation of assets and reassessment of liabilities is a crucial accounting process in partnership firms where asset and liability values are updated to reflect their current market values. This process typically occurs when there are changes in partnership composition, such as admission of new partners, retirement, or death of existing partners, ensuring fair distribution of gains or losses among partners. Key Concepts The revaluation process involves creating a special account called the Profit and Loss Adjustment Account or Revaluation Account. This account records all changes in asset and liability values, including previously unrecorded items. Any ...

Read More

How to create a vertical menu with CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 1K+ Views

Vertical menus on a web page are mainly placed on the left or the right. These left or right menus are vertically aligned to make it easier for users to navigate or click them. To create a vertical menu, set a container and within that set the menu links. The display property is to be set as block to let the menu appear vertically. Syntax selector { display: block; width: value; padding: value; text-decoration: none; } Set a Container ...

Read More

C program to sort all columns and rows of matrix

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 5K+ Views

In C programming, sorting matrix rows and columns involves rearranging elements within each row in ascending order and elements within each column in descending order. This operation requires nested loops to traverse and compare matrix elements. Syntax /* Row sorting (ascending) */ for (i = 0; i < rows; i++) { for (j = 0; j < cols; j++) { for (k = j + 1; k < cols; k++) { if (matrix[i][j] ...

Read More

How to create a horizontal scrollable menu with CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 774 Views

A horizontal scrollable menu is useful when you have multiple navigation items that may not fit on smaller screens. The key is using overflow: auto and white-space: nowrap to prevent menu items from wrapping to new lines. Syntax .container { overflow: auto; white-space: nowrap; } .menu-item { display: inline-block; } Example The following example creates a horizontal scrollable navigation menu − Horizontal Scrollable Menu body { ...

Read More

Reverse Repo Rate

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 254 Views

The Reverse Repo Rate is the interest rate at which the Reserve Bank of India (RBI) borrows money from commercial banks for short-term periods. It is a crucial monetary policy tool used by the central bank to control liquidity and inflation in the economy. When banks have surplus funds, they can deposit these with the RBI and earn interest at the reverse repo rate. Formula While there is no specific formula for calculating the reverse repo rate (as it is set by the RBI's Monetary Policy Committee), the impact on money supply can be expressed as: $$\mathrm{Money\ Supply\ ...

Read More
Showing 20301–20310 of 61,297 articles
Advertisements