Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Kisan Vikas Patra
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 MorePerform Animation on CSS opacity
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 MoreWhat are the high level I/O functions in C language?
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 MorePerform Animation on CSS line-height property
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 MoreZero-Based Budgeting
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 MoreGive the clarity on Pointer structures with suitable example in C language
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 MoreAnimate CSS column-rule-color property
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 MoreHow to pass the address of structure as an argument to function in C language?
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 MoreCSS white-space Property
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 MoreWash Trading
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