All Basic Articles
HTML <ins> tag is used to specify a block of inserted text. The <ins> tag is typically used to mark a range of text that… 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
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
Given an even length string S consisting of lower-case English alphabets only, we have two players playing the game. The rules are as follows:  the… Read More
Tensorflow is an open-source machine learning framework that is used for complex numerical computation. It was developed by the Google Brain team in Google. Tensorflow… Read More
The Object class is the base class for all the classes in the .Net Framework. It is present in the System namespace. In C#, the… Read More
C#
Prerequisite: Constructors in C# Static constructors are used to initialize the static members of the class and are implicitly called before the creation of the… Read More
C#
Let’s see how to concatenate two lists using different methods in Python. This operation is useful when we have a number of lists of elements… Read More
Given a number N(less than 10^9). The task is to print all the numbers less than N which are having a maximum of 2 unique… Read More
Given a list of integers, write a Python program to convert the given list into a single integer. Examples: Input : [1, 2, 3] Output… Read More
Before learning how to add items to a dictionary, let’s understand in brief what a  dictionary is. A Dictionary in Python is an unordered collection… Read More
In this article, we will cover the yield keyword in Python. Before starting, let’s understand the yield keyword definition. Syntax of the Yield Keyword in… Read More
Given an array Arr of size N. The task is to tell whether it is possible to change at most K elements of this sequence… Read More
It is basically an image which is a collection of different images put together to form a single image. The use of image sprites is… Read More
The AbstractQueue class in Java is a part of the Java Collection Framework and implements the Collection interface and the AbstractCollection class. It provides skeletal… Read More
The DOM baseURI property is used to return the base Uniform Resource Identifier (URI) of the document. This property is used for read-only. This property… Read More
The DOM close() method is used to close the output stream. It is used to indicate the finish of writing on a window. The close()… Read More
Given a number N which represents the number of players participating in a Badminton match. The task is to determine the number of matches required… Read More
The ConcurrentLinkedQueue class in Java is a part of the Java Collection Framework. It belongs to java.util.concurrent package. It was introduced in JDK 1.5. It… Read More
HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for ‘HyperText Markup Language’, is used to define… Read More