Articles on Trending Technologies

Technical articles with clear explanations and examples

Kisan Vikas Patra

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 15-Mar-2026 167 Views

Kisan Vikas Patra (KVP) is a government-backed savings scheme launched by the Indian Post Office in 1998. It is a long-term investment product that doubles your money in 124 months (approximately 10 years and 4 months) with guaranteed returns. This scheme is particularly suitable for conservative investors seeking risk-free investment options with assured returns. Key Features and Returns Under the current rates, KVP offers an interest rate of 6.9% per annum (compounded annually). The investment doubles over the maturity period of 124 months. The formula for calculating maturity amount is: $$\mathrm{Maturity\ Amount = Principal \times 2}$$ Where: ...

Read More

Perform Animation on CSS opacity

vanithasree
vanithasree
Updated on 15-Mar-2026 265 Views

The CSS opacity property controls the transparency of an element. When combined with CSS animations, you can create smooth fade-in and fade-out effects that enhance user experience on web pages. Syntax @keyframes animation-name { from { opacity: start-value; } to { opacity: end-value; } } selector { animation: animation-name duration timing-function iteration-count; } Possible Values ValueDescription 0Completely transparent (invisible) 0.550% transparent 1Completely opaque (fully visible) Example: Fade Animation The following example demonstrates opacity animation with multiple overlapping ...

Read More

What are the high level I/O functions in C language?

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

High-level I/O functions in C provide an abstracted, user-friendly interface for input and output operations. These functions are part of the standard C library and offer better portability compared to low-level I/O functions. High Level vs Low Level I/O High Level I/O Easy to understand and use by programmers Portable across different systems Built-in buffering for better performance Low Level I/O Closer to the operating system Faster execution time System-dependent (non-portable) High Level I/O Functions The high level input-output (I/O) functions are explained below − Function Description ...

Read More

Perform Animation on CSS line-height property

usharani
usharani
Updated on 15-Mar-2026 592 Views

The CSS line-height property can be animated to create smooth transitions between different line spacing values. This is useful for creating dynamic text effects where the vertical spacing between lines changes over time. Syntax selector { line-height: value; animation: animation-name duration timing-function iteration-count; } @keyframes animation-name { from { line-height: initial-value; } to { line-height: final-value; } } Example: Basic Line Height Animation The following example demonstrates how to animate the line-height property from 20px to 50px ...

Read More

Zero-Based Budgeting

Pratik Kumbhare
Pratik Kumbhare
Updated on 15-Mar-2026 267 Views

Zero-based budgeting (ZBB) is a budgeting approach that requires organizations to justify every expense from scratch for each budget period, starting from a "zero base." Unlike traditional budgeting that uses previous year's budget as a baseline, ZBB demands that all expenses be evaluated and approved based on their necessity and value to the organization. Key Concepts Zero-based budgeting (ZBB) fundamentally differs from conventional budgeting methods by requiring complete justification of all expenses. Every expenditure must be analyzed and approved based on its worth and necessity, regardless of historical spending patterns. This approach compels managers to evaluate ...

Read More

Give the clarity on Pointer structures with suitable example in C language

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

Pointer to structure holds the address of an entire structure. Mainly, these are used to create complex data structures such as linked lists, trees, graphs and so on. The members of the structure can be accessed by using a special operator called arrow operator ( -> ). Syntax struct tagname *ptr; For example: struct student *s; Accessing Structure Members You can access pointer to structure members using the arrow operator − ptr->membername; For example: s->sno, s->sname, s->marks Example The following C program demonstrates ...

Read More

Animate CSS column-rule-color property

varma
varma
Updated on 15-Mar-2026 301 Views

The CSS column-rule-color property defines the color of the rule (line) between columns in a multi-column layout. You can animate this property to create dynamic visual effects where the column divider changes color over time. Syntax selector { column-rule-color: color; animation: animation-name duration timing-function iteration-count; } @keyframes animation-name { from { column-rule-color: initial-color; } to { column-rule-color: final-color; } } Example The following example demonstrates animating the column-rule-color property from orange to black − ...

Read More

How to pass the address of structure as an argument to function in C language?

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

Passing the address of a structure as an argument to a function allows the function to access and modify the original structure through a pointer. This technique is memory-efficient and enables direct manipulation of structure members. Syntax return_type function_name(struct structure_name *pointer_variable); Key Points The address of the structure is passed as an argument to the function. It is collected in a pointer to structure in function header. Advantages No wastage of memory as there is no need of creating a copy again No need of returning the values back ...

Read More

CSS white-space Property

vanithasree
vanithasree
Updated on 15-Mar-2026 152 Views

The CSS white-space property controls how white-space characters (spaces, tabs, line breaks) inside an element are handled. It determines whether white-space is preserved, collapsed, or wrapped. Syntax selector { white-space: value; } Possible Values ValueDescription normalDefault. White-space is collapsed and text wraps normally nowrapWhite-space is collapsed but text does not wrap preWhite-space is preserved and text does not wrap pre-wrapWhite-space is preserved but text wraps when necessary pre-lineWhite-space is collapsed except for line breaks Example: Comparing white-space Values The following example demonstrates different white-space property values ...

Read More

Wash Trading

Pratik Kumbhare
Pratik Kumbhare
Updated on 15-Mar-2026 322 Views

Wash trading is a manipulative trading technique where an entity simultaneously buys and sells the same financial asset without genuine change in ownership. This practice creates artificial trading activity designed to mislead other market participants and distort market indicators. It undermines market integrity and is considered illegal in most jurisdictions worldwide. Key Concepts Wash trading involves a trader or institution acting as both buyer and seller of the same security. They execute trades at similar prices, creating the appearance of legitimate market activity while no actual ownership transfer occurs. The primary goals include manipulating market prices, generating fictitious ...

Read More
Showing 20681–20690 of 61,297 articles
Advertisements