Articles on Trending Technologies

Technical articles with clear explanations and examples

CSS voice-balance Speech Media property

Ankith Reddy
Ankith Reddy
Updated on 15-Mar-2026 211 Views

The CSS voice-balance property controls the horizontal positioning of synthesized speech in a stereo field. This property determines whether the voice appears to come from the left, center, or right channel when using text-to-speech functionality. Syntax selector { voice-balance: value; } Possible Values ValueDescription leftVoice appears to come from the left channel centerVoice appears centered in the stereo field (default) rightVoice appears to come from the right channel leftwardsVoice shifts toward the left rightwardsVoice shifts toward the right Example: Setting Voice Balance The following example demonstrates ...

Read More

Mobile Banking

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

Mobile banking refers to the use of mobile devices such as smartphones and tablets to access banking services and conduct financial transactions remotely. This technology-driven approach enables customers to perform various banking activities through dedicated mobile applications without visiting physical bank branches. It represents a significant shift from traditional banking methods, offering unprecedented convenience and accessibility to users worldwide. Key Features of Mobile Banking Mobile banking operates through secure banking applications that connect customers' accounts to their mobile devices. Users can download their bank's official mobile app and authenticate their identity using login credentials, biometric verification, or multi-factor ...

Read More

How to print the range of numbers using C language?

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

In C programming, finding the range of a given number means determining the interval of 10 consecutive numbers within which that number falls. For example, if the number is 45, it falls in the range 40-50. Syntax lower = (n/10) * 10; upper = lower + 10; How It Works The logic to find the range uses integer division to extract the tens digit − Lower bound: (n/10) * 10 removes the units digit and gives the nearest lower multiple of 10 Upper bound: lower + 10 gives the next multiple of ...

Read More

Perform Animation on CSS max-width

Arjun Thakur
Arjun Thakur
Updated on 15-Mar-2026 1K+ Views

The CSS max-width property can be animated to create dynamic width transitions. This is particularly useful for creating responsive layouts, expandable containers, or smooth resizing effects. Syntax selector { max-width: value; animation: animation-name duration; } @keyframes animation-name { percentage { max-width: value; } } Example: Basic max-width Animation The following example demonstrates a smooth transition of the max-width property from its initial state to 250px − ...

Read More

Explain the Format of C language

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

C programming is a general-purpose, procedural, imperative computer programming language developed by Dennis Ritchie at Bell Labs in the early 1970s. The C language follows a specific format and syntax rules that must be adhered to for successful compilation and execution. Key Formatting Rules in C The C programming language follows these essential formatting conventions − Statements are terminated with semicolons (;) C is case sensitive Indentation is ignored by the compiler but improves readability Strings are placed in double quotes ("") Library functions and keywords are lowercase Newlines are handled via escape sequence ...

Read More

Line Item Budget

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

A line item budget is an accounting system that categorizes and records all organizational expenses by department or function for a specific financial period. This straightforward budgeting method organizes costs into distinct line items such as transportation, salaries, rent, utilities, and advertising, making it easy to track and analyze spending patterns. It serves as a fundamental financial planning tool, particularly suitable for small to medium-sized organizations that require clear expense visibility without complex accounting systems. Key Components A line item budget typically includes the following essential components: Revenue Categories − Income sources organized by type or department Operating ...

Read More

CSS rest Speech Media property

varun
varun
Updated on 15-Mar-2026 245 Views

The CSS rest property is a shorthand property for rest-before and rest-after properties. It sets a pause before or after an element when using speech synthesis or screen readers. Syntax selector { rest: rest-before rest-after; } Where: rest-before − Sets the pause duration before the element is spoken rest-after − Sets the pause duration after the element is spoken Possible Values ValueDescription timeDuration in seconds (s) or milliseconds (ms) noneNo pause (default value) x-weakVery short pause weakShort pause mediumMedium pause strongLong pause x-strongVery long pause ...

Read More

Check if the value entered is palindrome or not using C language

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

A palindrome is a number, word, or sequence of characters that reads the same backward as forward. For example, 121, 1331, and 12321 are palindromic numbers. To check if a number is a palindrome in C, we reverse the number and compare it with the original. If both are equal, the number is a palindrome. Syntax while (n > 0) { remainder = n % 10; reversed = (reversed * 10) + remainder; n = n / 10; } Algorithm The ...

Read More

CSS voice-stress Speech Media property

Sreemaha
Sreemaha
Updated on 15-Mar-2026 217 Views

The CSS voice-stress property controls the level of stress or emphasis applied to spoken text in speech synthesis. This property adjusts characteristics like pitch variation and intensity to convey different levels of emphasis when content is read aloud by screen readers or text-to-speech software. Syntax selector { voice-stress: value; } Possible Values ValueDescription normalDefault stress level with natural emphasis strongHigh stress with increased pitch variation and intensity moderateMedium stress level between normal and strong reducedLower stress with minimal pitch variation noneNo stress applied, monotone speech Example: Strong ...

Read More

Explain the Random accessing files in C language

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

Random access in C allows you to move the file pointer to any position within a file, enabling non-sequential reading and writing operations. This is accomplished using three key functions that control file pointer positioning. Syntax long ftell(FILE *stream); void rewind(FILE *stream); int fseek(FILE *stream, long offset, int whence); ftell() Function The ftell() function returns the current position of the file pointer as a long integer representing the byte offset from the beginning of the file. #include int main() { FILE *fp; ...

Read More
Showing 20671–20680 of 61,297 articles
Advertisements