Sunday, August 29, 2021

10 Most Popular Java Frameworks That You Must Try

In today’s technology-driven world, we all can see how frequently tech advancements are coming into the existence and subsequently how old tools & technologies are becoming obsolete and uncompetitive. But the case is not the same with every single technology as JAVA is one of those few technologies...

Friday, August 27, 2021

Difference Between Assembler and Interpreter

Assembler vs InterpreterIn general, compiler is a computer program that reads a program written in one language, which is called the source language, and translates it in to another language, which is called the target language. Traditionally, source language is a high level language such as C++ and...

Wednesday, August 25, 2021

DuoDecimal in Java

Duodecimal represents a system which is a notation system in which a number having its base as 12 is called a duodecimal number. In java, we can use to find the conversation of duodecimal numbers into respective binary, octal, decimal, hexadecimal number, or any other base numbers. In...

Friday, August 20, 2021

Java 8 - Functional Interfaces

Functional interfaces have a single functionality to exhibit. For example, a Comparable interface with a single method ‘compareTo’ is used for comparison purpose. Java 8 has defined a lot of functional interfaces to be used extensively in lambda expressions. Following is the list of functional interfaces defined in...

Wednesday, August 18, 2021

Multithreading in Java

Multithreading is a Java feature that allows concurrent execution of two or more parts of a program for maximum utilization of CPU. Each part of such program is called a thread. So, threads are light-weight processes within a process.Threads can be created by using two mechanisms : 1. Extending...

Monday, August 16, 2021

Abstract Syntax Tree (AST) in Java

Abstract Syntax Tree is a kind of tree representation of the abstract syntactic structure of source code written in a programming language. Each node of the tree denotes a construct occurring in the source code.There is numerous importance of AST with application in compilers as abstract syntax trees...

Friday, August 13, 2021

Four Main Object Oriented Programming Concepts of Java

Object-oriented programming generally referred to as OOPS is the backbone of java as java being a completely object-oriented language. Java organizes a program around the various objects and well-defined interfaces. There are four pillars been here in OOPS which are listed below. These concepts aim to implement real-world...

Monday, August 9, 2021

Difference Between Implements and Extends

Implements vs ExtendsImplements and Extends are two keywords found in Java programming language that provides a means of transferring added functionality to a new class. Implements keyword is used explicitly for implementing an interface, while Extends keyword is used for inheriting from a (super) class. Please note that...

Friday, August 6, 2021

Top 20 Java Multithreading Interview Questions & Answers

Java has been rated number one in TIOBE popular programming developers which are used by over 10 Million developers over 15 billion devices supporting Java. It is used for creating applications for trending technologies like Big Data to household devices like Mobiles and DTH Boxes, it is used...

Pages (26)1234567 »