All Basic Articles
Given a regular hexagonof side length a, the task is to find the area of the largest square that can be inscribed within it.Examples:   Input:… Read More
find function in C++ is used to search for a specific key in an unordered map. Syntax unordered_map.find(key); Parameters: It takes the key as a… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages… Read More
The Java.util.Stack.elements() method of Stack class in Java is used to get the enumeration of the values present in the Stack. Syntax: Enumeration enu =… Read More
The Java.util.Stack.iterator() method is used to return an iterator of the same elements as that of the Stack. The elements are returned in random order… Read More
The Java.util.Stack.insertElementAt(element, index) method is used to insert a particular element at the specified index of the Stack. Both the element and the position is… Read More
The Java.util.Stack.get() method is used to fetch or retrieve an element at a specific index from a Stack. Syntax: Stack.get(int index) Parameters: This method accepts… Read More
The hashCode() method of HashSet in Java is used to get the hashCode value for this instance of the HashSet. It returns an integer value… Read More
The querySelectorAll() method in HTML is used to return a collection of an element’s child elements that match a specified CSS selector(s), as a static… Read More
While working with tuples, we store different data as different tuple elements. Sometimes, there is a need to print a specific information from the tuple.… Read More
Figure: Error occurred while accessing the windows drive Following are the step wise instructions to access windows drives in Ubuntu (Any Version), 1. Open terminal… Read More
The higher(E ele) method of TreeSet class in Java is used to return the least element in this set which is strictly greater than the… Read More
kill command in Linux (located in /bin/kill), is a built-in command which is used to terminate processes manually. kill command sends a signal to a… Read More
Linux, the operating system known for its open-source nature and robust capabilities, has an array of commands that unlock the secrets of your system. Among… Read More
chpasswd command is used to change password although passwd command can also do same. But it changes the password of one user at a time… Read More
Given an array arr[], the task is to calculate the sum of the elements from the given array which has even parity i.e. the number… Read More
We’ve been using computers since early 19th century. We’re currently in the fourth generation of computers with the microprocessors after vacuum tubes, transistors and integrated… Read More
The HTML  onmouseout event attribute works when the mouse pointer moves out of the specified element. It activates when the mouse pointer moves out of an… Read More
The <li> tag in HTML is used to define the list of items in an HTML document. It is used within an Ordered List <ol>… Read More
An HTML Element is a collection of start and end tags with the content inserted between them. HTML elements are building blocks of web pages,… Read More