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
Importance of HashSet in Java
The HashSet use Hashing to manipulate data. Let us see an example − Example import java.util.*; public class Demo{ private final String f_str, l_str; public Demo(String f_str, String l_str){ this.f_str = f_str; this.l_str = l_str; } public boolean equals(Object o){ if (o instanceof Demo) return true; Demo n = (Demo)o; return n.f_str.equals(f_str) && n.l_str.equals(l_str); } public static void main(String[] args){ ...
Read MoreHow can we implement a custom iterable in Java?
An Iterable interface is defined in java.lang package and introduced with Java 5 version. An object that implements this interface allows it to be the target of the "for-each" statement. This for-each loop is used for iterating over arrays and collections. An Iterable interface can also be implemented to create custom behavior. Syntax public interface Iterable Example import static java.lang.String.format; import java.util.*; // Person class class Person { private String firstName, lastName; private int age; public Person(){ } public Person(String firstName, String lastName, int age) { this.firstName = firstName; ...
Read MoreATCI Full Form ( Air Time Committee of India)
Definition and Explanation The Air Time Committee of India (ATCI) is a regulatory body established by the Indian government to oversee the allocation and utilization of airwaves and broadcast spectrum for television and radio channels in the country. It is responsible for setting policies, guidelines, and standards for the broadcasting industry and ensuring that the distribution of airtime among broadcasters is fair and equitable. The committee also monitors compliance with regulations related to content, advertising, and other aspects of broadcasting. It may take action against violators and impose penalties or sanctions as necessary. The primary goal of the Air ...
Read MoreB.J Full Form (Bachelor of Journalism)
Introduction A Bachelorette's degree in journalism is a program that provides scholars with a comprehensive understanding of the principles, practices, and ethics of journalism. This degree program prepares scholars for careers in colorful diligence, including print, broadcast, online media, and public relations. What is B.J? A Bachelor's degree in Journalism is an undergraduate program that focuses on the study of journalism and mass communication. It is designed to provide students with a strong foundation in the principles and practices of journalism, including writing, reporting, editing, and media ethics. A Bachelorette's degree in Journalism can prepare graduates for a ...
Read MoreWhat is the full form of DCB?
Introduction to DCB Demand Collection and Balance (DCB) is a method of collecting outstanding balances from clients or clients who have overdue payments. It could be a significant process for businesses to maintain their financial wellbeing and ensure they have sufficient cash flow to function successfully. DCB includes following up with clients to guarantee they pay their bills and settle their accounts, which can be a challenging assignment. Effective DCB administration requires appropriate planning, communication, and negotiation aptitudes to maintain great connections with clients while guaranteeing the business's financial stability. Features and components of DCB The features and ...
Read MoreWhat is the full form of DCC?
Introduction Data Communication Channel (DCC) is a significant notion in contemporary telecommunications and plays a critical part in facilitating the trade of data across various networks and strategies. It can be enforced using various bodily and rational mediums, such as wired or wireless connections, optical fibres, satellite links, microwave links, or even virtual tracks over a packet-switched grid. Definition And Explanation of Data Communication Channel (DCC) The full form of DCC is Data Communication Channel. It is mostly used for data transmission. It can be enforced using different physical and analytical mediums, such as wired or wireless connections, ...
Read MoreCan I import same package twice? Will JVM load the package twice at runtime?
In Java classes and interfaces related to each other are grouped under a package. Package is nothing but a directory storing classes and interfaces of a particular concept. For example, all the classes and interfaces related to input and output operations are stored in java.io package. Creating a Package You can group required classes and interfaces under one package just by declaring the package at the top of the Class/Interface (file) using the keyword package as − Example public class Sample{ public void demo(){ System.out.println("This is a method of the sample class"); } ...
Read MoreHow many ways to make an object eligible for GC in Java?
The process of destroying unreferenced objects is called a Garbage Collection(GC). Once an object is unreferenced it is considered as an unused object, hence JVM automatically destroys that object. There are various ways to make an object eligible for GC. By nullifying a reference to an object We can set all the available object references to "null" once the purpose of creating an object is served. Example public class GCTest1 { public static void main(String [] args){ String str = "Welcome to TutorialsPoint"; // String object referenced by variable str and it is not eligible for GC yet. ...
Read MoreHow to make basic menu using jQuery UI?
Many websites as well as applications must have menus because they offer a simple and orderly way to navigate between different pages and functionalities. While there are numerous approaches to building menus utilizing HTML, CSS, as well as JavaScript, jQuery UI offers a simple intuitive technology that can help you save time and effort. The fundamentals of building a menu using jQuery UI will be covered in this post, along with the necessary stages and starter samples. This article will give you the resources you need, whether you're an experienced developer or a novice, to make a useful and appealing ...
Read MoreHow to make Auto-filling Forms with jQuery and Web Storage API?
By automatically filling in common fields like name, email, and address, autofill forms have grown in popularity as a feature on websites and mobile applications. When developing autofill forms, developers have two options: either utilize locally stored fixed data or use dynamic data that is periodically updated based on user inputs. The Web Storage API is one of the most important resources available to developers for local data storage. It offers techniques for browsers to store key/value pairs in a more natural way than with cookies. SessionStorage and localStorage are the two Web Storage techniques; while sessionStorage only keeps data for ...
Read More