Articles on Trending Technologies

Technical articles with clear explanations and examples

Redemption of Debentures

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

Redemption of debentures refers to the repayment of debentures by the issuing company or government to the debenture holders. This process involves returning the principal amount along with any accrued interest to investors, effectively ending the debt obligation. Companies typically make provisions from their profits to accumulate the necessary funds for redemption. What are Debentures? Debentures are long-term debt instruments issued by corporations and governments to raise capital for various purposes, such as infrastructure development or business expansion. Unlike shares, debenture holders are creditors of the company, not owners. These instruments typically pay a fixed or floating rate ...

Read More

What is exit() function in C language?

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

The exit() function in C is used to terminate a program immediately. This function causes the program to stop execution and return control to the operating system. Unlike a normal return from main(), exit() can be called from anywhere in the program. Syntax void exit(int status); Parameters status − An integer value returned to the operating system. Conventionally, 0 indicates successful termination, and non-zero values indicate errors. Return Value The exit() function does not return any value as it terminates the program immediately. Note: To use the exit() ...

Read More

C program to print four powers of numbers 1 to 9 using nested for loop

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 700 Views

In C programming, nested loops are powerful constructs where one loop is placed inside another loop. This technique is particularly useful for creating tables, matrices, and complex patterns. Here we'll use nested for loops to generate a table showing the first four powers of numbers 1 to 9. Syntax for (initialization; condition; increment) { for (initialization; condition; increment) { // Inner loop statements } // Outer loop statements } How Nested Loops Work In ...

Read More

How to create a responsive navigation menu with icons, using CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 899 Views

A responsive navigation menu with icons adapts to different screen sizes, providing an optimal user experience across devices. This menu displays horizontally on larger screens and stacks vertically on smaller devices. Syntax /* Basic responsive navigation structure */ nav { width: 100%; background-color: color; } .nav-link { display: inline-block; padding: value; text-decoration: none; } @media screen and (max-width: breakpoint) { .nav-link { display: ...

Read More

Reconstitution of A Partnership Firm: Admission of a Partner

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

Reconstitution of a partnership firm refers to any change in the existing partnership agreement that alters the relationship between partners. This process becomes necessary when there are changes in partnership structure, profit-sharing arrangements, or membership. The admission of a new partner is one of the most common reasons for partnership reconstitution, requiring adjustments to the partnership deed and various accounting elements. Reasons for Reconstitution of a Partnership Firm Partnership firms may be reconstituted for four specific reasons: Admission of a new partner − When a new member joins the firm Change in profit-sharing ratios − When existing partners ...

Read More

What are reading and writing characters in C language?

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

In C programming language, reading and writing characters are fundamental I/O operations that allow programs to interact with users through the console. Syntax int getchar(void); int putchar(int c); Character Input/Output Functions C provides several functions for character I/O operations − getchar() − Reads a character from standard input (keyboard) putchar() − Writes a character to standard output (screen) getche() − Reads a character with echo (non-standard, conio.h) getch() − Reads a character without echo (non-standard, conio.h) Example: Basic Character Reading and Writing This example demonstrates reading characters and converting ...

Read More

How to create custom checkboxes and radio buttons with CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 445 Views

The default checkboxes and radio buttons can be easily customized with CSS to match your website's design. You can modify their appearance, colors, and behavior for different states like selected, hovered, and focused. Syntax /* Hide default input */ input[type="checkbox"], input[type="radio"] { appearance: none; } /* Create custom styling */ .custom-input { /* Custom styles here */ } Custom Checkbox To create a custom checkbox, we hide the default input and create a custom visual using CSS pseudo-elements. Example: Custom Checkbox ...

Read More

What are printf conversion characters and their types?

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

In C programming, printf() conversion characters (also called format specifiers) are special codes that tell printf() how to format and display different data types. These characters are preceded by a % symbol and specify the type and format of the variable to be printed. Syntax printf("format string with %specifier", variable); Common Printf Conversion Characters Here is a list of the most commonly used conversion characters in printf() − %d − signed decimal integer %u − unsigned decimal integer %x − hexadecimal integer (lowercase) %X − hexadecimal integer (uppercase) %o − octal integer ...

Read More

Nominal and Real GDP

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 2K+ Views

Gross Domestic Product (GDP) is the total monetary value of all finished goods and services produced within a country's borders during a specific time period, typically measured annually or quarterly. GDP serves as a comprehensive indicator of a nation's economic health and size. There are two primary ways to measure GDP: Nominal GDP, which uses current market prices, and Real GDP, which adjusts for inflation to provide a more accurate picture of economic growth. Formula The expenditure method formula for calculating GDP is: $$\mathrm{GDP = C + I + G + NX}$$ Where: ...

Read More

How to create a Menu Icon with CSS?

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

A menu icon, commonly known as a "hamburger menu, " consists of three horizontal lines stacked vertically. This icon is widely used in responsive web design to represent a navigation menu that can be toggled on mobile devices. Syntax .menu-icon { width: value; height: value; background-color: color; margin: value; } Example: Basic Menu Icon The following example creates a simple menu icon using three div elements − ...

Read More
Showing 20321–20330 of 61,297 articles
Advertisements