All Easy Articles
Given a 2D array knights[][] of size N * 2, with each row of the form { X, Y } representing the coordinates of knights,… Read More
Given an array arr[] of size N, the task is to find the winner of the game when two players play the game optimally as… Read More
Recently FICO visited our University for various roles (Internship + PPO) SDE Cybersecurity DevOps AWS Technical Publications System Monitoring Software Quality Assurance It was a… Read More
In this article, we will be looking at how to deploy your Demo Node.js app to Heroku. At the end of this article, we will… Read More
Note: Please note that Exercise 4.4 from Chapter 4 , “Linear Equations in two variables,” in the NCERT Solutions, has been removed from the revised syllabus.… Read More
Question 1. Find the principal value of each of the following :   (i) Sin-1(- √3/2) (ii) Sin-1(cos 2π/3) (iii)Sin-1(-√3 – 1/2√2)  (iv) Sin-1(√3 + 1/2√2)  (v) Sin-1(cos… Read More
Prerequisite: Operator Overloading in C++, Types of Operator Overloading When an object calls an operator function by passing an argument and the returned value of… Read More
Array:An array is a collection of homogeneous(same type) data items stored in contiguous memory locations. For example, if an array is of type “int”, it… Read More
There are many data structures like arrays, linked lists, etc. Each sort of arrangement has its strengths and weaknesses. For these reasons, it’s important to… Read More
Given an integer N. A number guessing game is a simple guessing game where a user is supposed to guess a number between 0 and… Read More
Mean, Median, and Mode are measures of the central tendency. These values are used to define the various parameters of the given data set. The… Read More
The string is a sequence of characters. In java, objects of String are immutable. Immutable means that once an object is created, it’s content can’t… Read More
Java provides two interfaces to sort objects using data members of the class which are Comparable and Comparator. In this article, we will focus on… Read More
A PreparedStatement is a pre-compiled SQL statement. It is a subinterface of Statement. Prepared Statement objects have some useful additional features than Statement objects. Instead… Read More
List is an ordered collection of objects in which duplicate values can be stored. Since List preserves the insertion order, it allows positional access and… Read More
HashMap is part of the Collection’s framework of java. It stores the data in the form of key-value pairs.  These values of the HashMap can… Read More
ArrayList in Java (equivalent to vector in C++) having a dynamic size. It can be shrinked or expanded based on size. ArrayList is a part… Read More
The HashMap class in Java implements the Serializable interface so that its objects can be written or serialized to a file using the ObjectOutputStream. However,… Read More
There are two types of parameters one is Formal parameters and the second is Actual Parameters. Formal parameters are those parameters that are defined during… Read More
For finding the maximum element in the ArrayList, complete traversal of the ArrayList is required. There is an inbuilt function in the ArrayList class to… Read More