• Articles

Java program to remove duplicate elements from an array

2 years ago

Simple Java programs that remove duplicate elements from a given array. This is a bit tricky problem. In this, we have to remove all the… Read More

  • Articles

Difference Between New and Malloc in C++

2 years ago

MALLOC FUNCTION: The main job of the malloc function is to gear up and allow the memory at the runtime. The malloc() function can be… Read More

  • Articles

Difference between submit() and execute() method in Java with Tabular form

4 years ago

Both execute() and submit() methods are used to send a set of tasks to the Executor interface having a thread pool. The Hierarchy goes like… Read More

  • Articles

Create an application to add and multiply two numbers to the servlet to the user in apache tomcat server

4 years ago

We are assuming that you have already downloaded and setup the Eclipse Environment and Tomcat server. Here are the steps and the code to add… Read More

  • Articles

10 Best Java IDEs for Programming

4 years ago

According to StackOverflow developer survey report 2019, Java is counted among top 5 most popular technologies. The reason of this is that Java has vast… Read More

  • Articles

Construct 3 to 8 decoder with truth table and logic gates

4 years ago

Decoder is also a Combinational circuit which transforms given inputs to a maximum number of outputs (maximum outputs equal to 2nĀ and n are given inputs… Read More

  • Articles

Difference between Checked and Unchecked exception in Java

4 years ago

In this article, we'll be discussing the meaning of exceptions, their type, and the difference between checked and unchecked exceptions. An exception can be defined… Read More

Construct 4 to 1 Multiplexer Using Logic Gates

2 years ago

A multiplexer is a Combinational circuit (it is a type of circuit whose output rely on the given inputs using various logic gates ) that… Read More

  • Articles

Design test cases and test the program of Quadratic Equation problem using Robustness testing

4 years ago

An equation is said to be a quadratic equation if only if it is in the form of ax2+bx+c where a can't be 0. We… Read More

  • Articles

Difference between Raster Scan and Random Scan

4 years ago

In Computer Graphics, Raster scan and Random scan are techniques used to render pictures on a screen. Both techniques are different in the manner they… Read More