All Medium Articles
1. View : A view is a virtual table that not actually exist in the database but it can be produced upon request by a particular… Read More
Given a string str and an integer K, the task is to find a string S such that it has exactly K subsequences of given… Read More
The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version… Read More
The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version… Read More
The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version… Read More
A CheckBox is a special kind of button in Android which has two states either checked or unchecked. The Checkbox is a very common widget… Read More
Given string str of lower case alphabets, the task is to find the minimum cost to change the input string in a string that contains… Read More
Given a number N, the task is to print the star pattern in single loop. Examples:  Input: N = 9Output: * * * * *… Read More
RadioGroup class of Kotlin programming language is used to create a container which holds multiple RadioButtons. The RadioGroup class is beneficial for placing a set… Read More
VideoView class of Kotlin is used to display video files in the android application. This class supports the 3gp and MP4 video formats. VideoView class… Read More
Problem: Create a smart contract named MyContract having a state variable as owner. Create a constructor to fetch the address of the owner from msg… Read More
Abstract contracts are contracts that have at least one function without its implementation or in the case when you don’t provide arguments for all of… Read More
Enums are the way of creating user-defined data types, it is usually used to provide names for integral constants which makes the contract better for… Read More
The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version… Read More
Given a weighted directed graph consisting of V vertices and E edges. The task is to print the cyclic path whose sum of weight is… Read More
Prerequisites – Introduction of Relational Algebra in DBMS, Basic Operators in Relational Algebra  The RENAME operation is used to rename the output of a relation. … Read More
Prerequisite – Basis Path Testing We have seen the steps involved in designing the test cases for a program using the basis path testing in… Read More
Prerequisite – Interrupts and Exceptions Interrupt is one of the classes of Exception. There are 4 classes of Exception- interrupt, trap, fault and abort. Though,… Read More
Given a number N, the task is to check whether the given number is Armstrong number or not. If the given number is Armstrong Number… Read More
Indexing in Pandas means selecting rows and columns of data from a Dataframe. It can be selecting all the rows and the particular number of… Read More