Articles on Trending Technologies

Technical articles with clear explanations and examples

What is the full form of CDB?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 01-Dec-2023 302 Views

Introduction Caribbean Development Bank (CDB) was established for the development of Caribbean nations and to help Borrowing Member Countries. Some of its important initiatives discussed in this article are ‘Basic Needs Trust Fund’, ‘Caribbean Action for Resilience Enhancement Program’ and ‘Caribbean Technological Consultancy Services’. Apart from this the article will briefly discuss the bank. About CDB CDB or Caribbean Development Bank was established in 1970. The operation at the Bank is looked after by its Board of Governors. The President of the Bank is the Chairman of the Board of Governors. It strives to function according to the standards ...

Read More

What is the full form of CDI?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 01-Dec-2023 708 Views

Introduction Capacitor Discharge Ignition (CDI) is an electronic ignition system that uses a high voltage electrical discharge from a capacitor to ignite the fuel mixture in the combustion chamber of an internal combustion engine. CDI systems offer several advantages over traditional contact breaker points, including improved ignition timing accuracy, higher energy spark, and increased reliability. In a CDI system, the ignition coil is charged with energy from the battery, and when the spark plug needs to fire, the energy is rapidly released from the capacitor to create a high voltage electrical discharge. This results in a powerful spark that ...

Read More

What is the full form of CDM?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 01-Dec-2023 403 Views

Introduction The UNFCCC and CDM are mechanisms based on projects that enable developed nations to compensate for their greenhouse gas emissions by funding emission-reducing projects in developing nations. The CDM was created to encourage long-term development and technology transfer, as well as to lower greenhouse gas emissions. No information has been omitted from the original text. What is Carbon Credit? A certificate known as a carbon credit permits an organization or country to release a specified amount of greenhouse gases, including carbon dioxide, into the atmosphere. These credits were designed to encourage the reduction of greenhouse gas emissions ...

Read More

What is the full form of CDMA?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 01-Dec-2023 751 Views

Introduction Code Division Multiple Access (CDMA) is a wireless communication technology that enables multiple users to share the same frequency band. Each user in a CDMA system is assigned a unique code that helps in modulating their signal. The code isolates the user's message from other messages in the same frequency band, allowing multiple users to transmit and receive data concurrently without causing any interference. Although CDMA was initially developed by the military in the 1940s, it was only in the 1980s that it was commercialized and widely used in mobile phone networks. Nowadays, CDMA is utilized in several ...

Read More

Can we override a protected method in Java?

raja
raja
Updated on 01-Dec-2023 8K+ Views

Yes, the protected method of a superclass can be overridden by a subclass. If the superclass method is protected, the subclass overridden method can have protected or public (but not default or private) which means the subclass overridden method can not have a weaker access specifier. Example class A { protected void protectedMethod() { System.out.println("superclass protected method"); } } class B extends A { protected void protectedMethod() { System.out.println("subclass protected method"); } } public class Test { public static void main(String args[]) { B b = new B(); b.protectedMethod(); } } Output subclass protected method

Read More

Importance of a Locale class in Java?

raja
raja
Updated on 01-Dec-2023 292 Views

A Locale class is used to perform locale operations and supply locale information to the user. A Locale is defined as a set of parameters that represents a geographical location or place where some operation occurs. The important methods of Locale class are getAvailableLocales(), getCountry(), getDefault(), getDisplayLanguage(), getDisplayCountry(), getUnicodeLocaleKeys() etc. The Locale class uses the following constructors − Locale(String L)− Initializes locale from the language code passed as an argument. Locale(String L, String C) − Initializes locale from the language, country code passed as arguments. Locale(String L, String C, String V) − Initializes locale from the language, country, variant passed as arguments. Example import java.text.SimpleDateFormat; import java.util.Locale; public ...

Read More

How can we implement a Custom HashSet in Java?

raja
raja
Updated on 01-Dec-2023 3K+ Views

A HashSet implements Set interface which does not allow duplicate values. A HashSet is not synchronized and is not thread-safe. When we can add any duplicate element to a HashSet, the add() method returns false and does not allow to add a duplicate element to HashSet. Syntax public class HashSet extends AbstractSet implements Set, Cloneable, Serializable In the below example, we can implement a Custom HashSet. Example import java.util.*; public class CustomHashSetTest extends AbstractSet { private HashMap map = null; private static final Object tempObject = new Object(); public CustomHashSetTest() { map = new HashMap(); ...

Read More

What is the full form of CDR?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 29-Nov-2023 298 Views

Introduction Corporate Debt Restructuring (CDR) is a process where a company arranges with its banks to rebuild the terms of its exceptional debt to improve its financial circumstances. CDR is typically done when a company is encountering financial trouble and is incapable of meeting its debt commitments. The rebuilding can include measures such as amplifying the repayment period, reducing the intrigued rate, or converting obligation into equity. The objective of CDR is to provide relief to the company from its obligation burden, improve its cash flow and productivity, and ultimately, ensure its long-term reasonability. CDR is a complex process ...

Read More

What is the full form of CDSL?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 29-Nov-2023 179 Views

Introduction Central Depository Services Limited (CDSL) is a depository benefit supplier based in India. It is capable for the electronic bookkeeping, clearing, and settlement of securities such as equities, bonds, and other financial instruments traded on Indian exchanges. CDSL was joined in 1997 and has since ended up one of the two major storehouses in India, with over 20 million dynamic speculator accounts. The company works under the oversight of the Securities and Exchange Board of India (SEBI) and offers a range of administrations to its clients, including dematerialization of securities, account support, corporate activities processing, and other value-added ...

Read More

What is the full form of CEA?

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 29-Nov-2023 278 Views

Introduction Consumer Electronics Association (CEA) is a well-known trade organisation in the United States that promotes the consumer electronics industry. The CEA provides lobbying, market research, and specialised training to its members, who include manufacturers, retailers, and service providers. The organisation also hosts notable annual events, such as the International CES, which functions as a platform for displaying cutting-edge technology and development. The CEA has played an important role in driving the growth of the customer electronics market and developing industry regulations. Its initiatives and contributions have had a significant effect on the industry and the economy as a ...

Read More
Showing 3961–3970 of 61,248 articles
« Prev 1 395 396 397 398 399 6125 Next »
Advertisements