All Basic Articles
The intent is a messaging object which tells what kind of action to be performed. The intent’s most significant use is the launching of the… Read More
View Binding is a part of Android Jetpack which provides the views to bind with the classes by replacing the findViewById() method in a null… Read More
We use general things around us that are moving, like if we see around us, monitor air moving around us, like we have clocks with… Read More
Events are used in almost every web application, such as the onclick event is used to execute some code when the user clicks on something.… Read More
Do you remember the old childhood days when you used to spend the entire day and sometimes even skipped meals to play Nintendo games (Ah,… Read More
Given two integers N and K, the task is to find the Kth element in the permutation of first N natural numbers arranged such that… Read More
In a directed acyclic graph with a source vertex s, the quality-score of a directed path is defined to be the product of the weights… Read More
Consider a Boolean function f(w,x,y,z) such that f(w,0,0,z) = 1 f(1,x,1,z) = x+z f(w,1,y,z) = wz+y The number of literals in the minimal sum-of-products expression… Read More
Given a string S consisting of characters 0, 1, and ‘?’, the task is to count all possible combinations of the binary string formed by… Read More
JP Morgan Chase & Co. organized its first round for internship hiring on 27th Feb 2021 for Software Engineer full-time analyst, 2022. The test was… Read More
Prerequisite: ggplot2 in R programming A plot by default is produced with a grid background and grayish colored background. This article discusses how they can… Read More
In this article, let’s discuss how to generate a random letter. Python provides rich module support and some of these modules can help us to… Read More
Our aim is to understand and implement Control Abstraction in Java. Before jumping right into control abstraction, let us understand what is abstraction. Abstraction: To… Read More
In this article, let’s discuss how to find a button by text using selenium. See the below example to get an idea about the meaning… Read More
Markdown is a way of writing a formatted text on the web. This article discusses how an HTML text can be converted to Markdown. We… Read More
Web Scraping is a method of extracting useful data from a website using computer programs without having to manually do it. This data can then… Read More
When the lines of code increase, it is cumbersome to search for the required block of code. It is a good practice to differentiate the… Read More
React JS is a widely used JavaScript library for constructing user interfaces. It simplifies web development by adopting a component-based approach, facilitating the creation of… Read More
In this article, we will learn JavaScript Strings and their properties and methods with a brief description. JavaScript Strings are used for storing and manipulating… Read More
A class can implement multiple interfaces in java, but what if the implemented multiple default interfaces have default methods with the same signatures? Then in… Read More