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
Scalping
Scalping is a high-frequency trading strategy that involves making profits from small price movements in stocks or other financial instruments. Traders who use this technique, known as scalpers, typically hold positions for seconds to minutes, aiming to capture minimal price fluctuations multiple times throughout the day. Key Concepts of Scalping Scalping operates on the principle that small price movements are easier to capture than large ones. The strategy relies heavily on technical analysis and requires traders to execute numerous trades rapidly. Scalpers typically target highly liquid markets where they can enter and exit positions quickly without ...
Read MoreUsage of cubic-bezier() CSS function
The CSS cubic-bezier() function allows you to define custom timing functions for animations and transitions using cubic Bézier curves. This gives you precise control over the acceleration and deceleration of your animations. Syntax selector { transition-timing-function: cubic-bezier(x1, y1, x2, y2); animation-timing-function: cubic-bezier(x1, y1, x2, y2); } The four parameters define two control points for the curve, where x1, y1 is the first control point and x2, y2 is the second control point. All values must be between 0 and 1. Parameters ParameterDescriptionRange x1X coordinate ...
Read MoreC Program to find the given number is strong or not
A strong number is a number where the sum of the factorial of its digits equals the number itself. For example, 145 is a strong number because 1! + 4! + 5! = 1 + 24 + 120 = 145. Syntax int factorial(int n); int isStrongNumber(int num); Understanding Strong Numbers Let's examine some examples to understand the concept better − 145 = 1! + 4! + 5! = 1 + 24 + 120 = 145 (Strong number) 123 = 1! + 2! + ...
Read MoreSet the name to Grid Items with CSS
To set names to grid items in CSS, use the grid-area property in combination with the grid-template-areas property. This allows you to assign meaningful names to grid items and position them within named grid areas. Syntax /* Define named areas in the grid container */ .container { display: grid; grid-template-areas: "area-name1 area-name2" "area-name3 area-name4"; } /* Assign grid items to named areas */ .item ...
Read MoreC Program to find two's complement for a given number
The two's complement is a mathematical operation used to represent negative numbers in binary form. It can be calculated using two methods − Method 1 − Convert the given binary number into one's complement and then add 1. Method 2 − Starting from the rightmost bit, copy all bits until the first '1' (including it), then complement all remaining bits. Syntax // One's complement: flip all bits // Two's complement: one's complement + 1 How Two's Complement Works The two's complement process involves these steps − Find the one's ...
Read MoreSanta Claus Rally
The Santa Claus Rally refers to the historical tendency of stock markets to increase during the final five trading days of December through the first two trading days of January. This seasonal phenomenon has been observed consistently in financial markets, with stock prices demonstrating an upward trend around this holiday period. Historical Performance Yale Hirsch first identified this pattern in 1972, noting in his Stock Trader's Almanac that from 1950 to 1971, the S&P 500 had increased by an average of 1.5% over those seven days. Since 1950, the broad market indicator has continued this trend with an ...
Read MoreDefine colors using the Red-Green-Blue model (RGB) with CSS
In website design, color is crucial. It affects the links that users click on, the way they read information, and how comfortable they are surfing your website. While incorporating color requires practice, adding it to your website is simple when you use the CSS color and background-color properties. These properties can be defined in a number of ways. A web page's text or background color can be altered using HTML color names, hex color codes, RGB color codes, or HSL color values. In this article we are going to learn about the RGB colors. Syntax selector ...
Read MoreWhat is enumerated data type in C language?
An enumerated data type in C is a user-defined data type that allows programmers to create variables with a restricted set of named values. It provides a way to assign names to integer constants, making code more readable and maintainable. The keyword is enum. Syntax enum tagname { identifier1, identifier2, ..., identifier_n }; Basic Example Here's how to declare an enumeration for days of the week − enum week { mon, tue, wed, thu, fri, sat, sun }; By default, identifier ...
Read MoreCSS grid-area Property
The CSS grid-area property is a shorthand property that allows you to specify a grid item's placement within a grid container by setting its grid-row-start, grid-column-start, grid-row-end, and grid-column-end values in a single declaration. Syntax selector { grid-area: grid-row-start / grid-column-start / grid-row-end / grid-column-end; } Possible Values ValueDescription line numberGrid line numbers (1, 2, 3, etc.) span nSpan across n grid tracks autoAutomatic placement (default) grid-area-nameReference to a named grid area Example: Grid Area with Line Numbers The following example demonstrates how to use grid-area ...
Read MoreRematerialization of Shares
Rematerialization is the process of converting electronic or dematerialized shares back into physical certificates. This procedure reverses dematerialization, allowing investors to obtain tangible ownership documents for their securities through their Depository Participant. Process of Rematerialization The rematerialization process involves several key participants and follows a structured workflow: Step 1 − Investor submits a Remat Request Form (RRF) to their Depository Participant (DP) Step 2 − DP blocks the investor's electronic holdings and forwards the request to NSDL/CDSL Step 3 − DP submits the application to the Issuer/Registrar & Transfer Agent (RTA) Step 4 − RTA prints ...
Read More