Articles on Trending Technologies

Technical articles with clear explanations and examples

What is the full form of NEFT?

Shirjeel Yunus
Shirjeel Yunus
Updated on 07-Dec-2023 221 Views

What is NEFT? NEFT stands for National Funds Transfer System. It is a centralized payment system and can be used all over India. The owner of NEFT is the Reserve Bank of India (RBI). NEFT is one of the fastest ways to transfer money between banks all over India. The bank branch must have to be enabled to have an NEFT transfer. NEFT can be used for online shopping, salary payment, bill payment, etc. How does NEFT Work? Here are the steps that have to be followed while sending money through NEFT. If you want to send money online, ...

Read More

What is the full form of IDBI?

Shirjeel Yunus
Shirjeel Yunus
Updated on 07-Dec-2023 285 Views

What is IDBI? IDBI stands for Industrial Development Bank of India. This bank was founded as a subsidiary of RBI in 1964. The bank was launched with the aim of providing credit and financial facilities to grow the Indian industries. The bank is headquartered in Mumbai and is a popular commercial bank in India. Aims of IDBI IDBI was launched to provide financial assistance to Indian industries in different ways It also helps to diversify different industries Provides assistance to the growth of those industries which help in the growth of India Provides support to different financial institutions ...

Read More

Pattern UNICODE_CASE field in Java with Examples

Maruthi Krishna
Maruthi Krishna
Updated on 07-Dec-2023 1K+ Views

Enables Unicode-aware case folding. When you use this as flag value to the compile() method along with the CASE_INSENSITIVE flag and if you search for Unicode characters using regular expressions Unicode characters of both cases will be matched. Example import java.util.regex.Matcher; import java.util.regex.Pattern; public class UNICODE_CASE_Example { public static void main( String args[] ) { String regex = "\u00de"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex, Pattern.UNICODE_CASE|Pattern.CASE_INSENSITIVE); //Retrieving the matcher object String str[] = {"\u00de", "\u00fe", ...

Read More

What is the full form of HSA?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 06-Dec-2023 301 Views

Introduction High Speed Access (HSA) refers to a type of internet connection that provides fast data transmission rates and allows for rapid access to online content. It typically refers to broadband internet connections that offer significantly higher speeds compared to older technologies such as dial-up or basic DSL (Digital Subscriber Line) connections. High Speed Access allows users to browse the web, stream videos, download files, and engage in online activities with minimal delays and buffering. It facilitates smooth and efficient communication, file transfers, and multimedia content consumption. The specific speeds associated with High Speed Access can vary depending on ...

Read More

Pattern UNICODE_CHARACTER_CLASS field in Java with examples

Maruthi Krishna
Maruthi Krishna
Updated on 06-Dec-2023 782 Views

Enables the Unicode version of Predefined character classes and POSIX character classes. Example import java.util.regex.Matcher; import java.util.regex.Pattern; public class UNICODE_CHARACTER_CLASS_Example { public static void main( String args[] ) { String regex = "\u00de"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex, Pattern.UNICODE_CHARACTER_CLASS); //Retrieving the matcher object String str[] = {"\u00de", "\u00fe", "\u00ee", "\u00ce"}; for (String ele : str) { Matcher matcher = pattern.matcher(ele); ...

Read More

What is the full form of HSC?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 06-Dec-2023 812 Views

Introduction Higher Secondary Certificate & Higher Secondary School Certificate (HSC & HSSC) are educational qualifications which might be awarded to students who have completed their secondary schooling, generally after 11th and 12th grades. The certificate is recognized in international locations like India, Bangladesh, Pakistan, and Nepal, and symbolize that the scholar is prepared for better schooling or employment. HSC is provided for the completion of 12th grade, at the same time as HSSC is presented for the completion of 11th and 12th grades. those certificate are vital for college students as they permit them to apply for undergraduate programs ...

Read More

What is the full form of HSD?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 06-Dec-2023 1K+ Views

Introduction High Speed Data (HSD) refers to the rapid transmission of virtual data, generally through broadband or mobile networks, at rates faster than traditional methods. This lets in for faster downloads, streaming, and conversation. Applications of HSD High speed data has several programs across numerous industries and sectors. here are some of the principle applications − Video Streaming − high speed data permits clean streaming of high quality films on systems like Netflix, YouTube, and Amazon prime. on-line Gaming − high speed data is essential for on-line gaming because it permits for actual-time gameplay with minimum lag. Cloud-based ...

Read More

Pattern CANON_EQ field in Java with examples

Maruthi Krishna
Maruthi Krishna
Updated on 06-Dec-2023 2K+ Views

The CANON_EQ field of the Pattern class matches two characters only if they are canonically equal. When you use this as flag value to the compile() method, two characters will be matched if and only if their full canonical decompositions are equal. Where canonical decomposition is one of the Unicode text normalization forms. Example 1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class CANON_EQ_Example { public static void main( String args[] ) { String regex = "b\u0307"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex, Pattern.CANON_EQ); ...

Read More

What is the full form of HSDPA?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 06-Dec-2023 339 Views

Introduction High-Speed Downlink Packet Access (HSDPA) is a 3G wireless communication protocol that enables high-speed data transfer from the mobile network to cell gadgets, providing quicker download rates than traditional 3G networks. HSDPA is a better model of the ordinary mobile Telecommunications system (UMTS) protocol and uses multiple antennas and advanced modulation strategies to enhance information transfer speeds. it's also known as 3.5G or 3G+ technology. Advantages of HSDPA There are several advantages of high-velocity Downlink Packet access (HSDPA), including − Quicker data transfer − HSDPA permits quicker download speeds, which means that customers can download big files, ...

Read More

What is the full form of HSI?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 06-Dec-2023 759 Views

Introduction High-Speed Internet (HSI) is an internet connection with rapid and dependable data transfer rates, typically supplying speeds of at least 25 Mbps for downloads and 3 Mbps for uploads. It lets in for efficient browsing, streaming, gaming, and other on-line sports. Types of HSI There are numerous kinds of high-speed internet, including − Fiber-optic internet − This type of internet that makes use of fiber-optic cables to transmit facts, offering the fastest and maximum dependable connection. Cable net − Cable net uses the identical cables that deliver cable television to houses and companies, presenting fast ...

Read More
Showing 32561–32570 of 61,297 articles
Advertisements