Articles on Trending Technologies

Technical articles with clear explanations and examples

Absolute Positioning Using CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 742 Views

The CSS position: absolute property removes an element from the normal document flow and positions it relative to its nearest positioned ancestor (any element with position other than static). If no positioned ancestor exists, the element is positioned relative to the document body. Syntax selector { position: absolute; top: value; left: value; right: value; bottom: value; } The position property has the following values − static − Default positioning, follows normal document flow ...

Read More

C program to represent the numbers in spiral pattern

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

In C programming, a spiral pattern displays numbers in alternating left-to-right and right-to-left order across rows. This creates a visual spiral effect where consecutive pairs of numbers appear in different orders on each row. Spiral Pattern 1 2 4 3 5 6 8 7 Blue: Left to Right Red: Right to Left Pattern alternates every row Syntax for(i=1; i

Read More

CSS Central, Horizontal and Vertical Alignment

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

CSS provides various methods to align elements and their content horizontally, vertically, or centrally. Understanding these alignment techniques is essential for creating well-structured layouts. Syntax /* Horizontal alignment */ text-align: left | center | right; margin: 0 auto; float: left | right; /* Vertical alignment */ vertical-align: top | middle | bottom; display: flex; align-items: center; Horizontal Alignment Method 1: Text Alignment for Inline Elements Inline elements such as text, spans, and links can be aligned using the text-align property ? .container ...

Read More

Private Placement: Meaning, Types

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

Private placement is a method of raising capital where companies sell securities directly to a select group of accredited investors, such as wealthy individuals, banks, pension funds, and institutional investors, rather than offering them to the general public. This process bypasses the public markets and provides companies with an alternative to Initial Public Offerings (IPOs) for raising funds. Key Concepts Private placement is fundamentally different from public offerings in several ways. While IPOs allow any investor to participate and involve extensive regulatory requirements, private placements are restricted to sophisticated investors who can evaluate investment risks independently. In India, private ...

Read More

C program to find type of array entered by the user.

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

In C programming, we can classify an array based on the type of numbers it contains. An array can be classified as an even array (all elements are even), an odd array (all elements are odd), or a mixed array (contains both even and odd elements). Algorithm Here's the approach to determine the array type − Read the array size and elements from user Count even and odd numbers in separate counters Compare counters with total size to determine array type Display the result based on the comparison Example The following program demonstrates ...

Read More

C Program to display the numbers in X pattern

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

In C programming, displaying numbers in an X pattern is a common pattern printing exercise. The X pattern consists of numbers arranged such that they appear on the main diagonal (top-left to bottom-right) and anti-diagonal (top-right to bottom-left) of a square grid. Syntax for(i = 0; i < rows; i++) { for(j = 0; j < rows; j++) { if(i == j || i + j == rows - 1) { printf("%d", i ...

Read More

Turning off Float using Clear Property of CSS

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

The CSS clear property is used to control how elements behave next to floated elements. It specifies which sides of an element should not be adjacent to floating elements, effectively forcing the element to move below any floated content. Syntax clear: value; Possible Values ValueDescription noneThe element is not moved below left or right floated elements. Default value. leftThe element is moved below left floated elements rightThe element is moved below right floated elements bothThe element is moved below both left and right floated elements Example 1: Clearing Left Floated Elements ...

Read More

Price and Price Mix

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

Price mix refers to the strategic determination of a product's price by a producer, considering various internal and external factors. It involves setting prices to achieve specific business objectives while balancing profit maximization with market competitiveness and consumer demand. Key Concepts Price mix is a crucial component of the marketing mix that directly impacts a company's profitability and market position. The pricing strategy must align with the company's overall business objectives, whether focused on short-term profit maximization, long-term market penetration, or competitive positioning. Factors Affecting Price Mix Product Cost − The foundation ...

Read More

C program for testing the character type

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

In C programming, the ctype.h library provides predefined functions for analyzing and converting character types. These functions are essential for validating user input and performing character-based operations. Syntax #include int isalpha(int c); int isdigit(int c); int isspace(int c); int ispunct(int c); int islower(int c); int isupper(int c); int isalnum(int c); int tolower(int c); int toupper(int c); Analysis Functions The character analysis functions are listed below − Function Checks whether entered character is isalpha An alphabet or not isdigit A digit or not ...

Read More

The min-height Property in CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 98 Views

The CSS min-height property sets the minimum height for an element's content box. It ensures that the element will never be smaller than the specified minimum height, even if the content would naturally require less space. Syntax selector { min-height: value; } Possible Values ValueDescription lengthSets minimum height in px, em, rem, cm, etc. %Sets minimum height as percentage of parent element autoBrowser calculates minimum height automatically initialSets to default value inheritInherits from parent element Example: Basic Min-Height This example demonstrates how min-height ensures elements maintain ...

Read More
Showing 20381–20390 of 61,297 articles
Advertisements