All Easy Articles
Given a list of integers and an integer variable K, write a Python program to find all pairs in the list with given sum K.… Read More
Given a list and some value (let’s say it N), write a Python program to check if the given value occurs atleast k-times in that… Read More
In lighting tricks, there are 2 algorithmic rules used for drawing a line over the screen that’s DDA stands for Digital Differential Analyser algorithmic rule… Read More
In Address Resolution Protocol (ARP), Receiver’s MAC address is fetched. Through ARP, (32-bit) IP address mapped into (48-bit) MAC address. Whereas, In Reverse Address Resolution… Read More
The slice() method belongs to the concrete value members of the class AbstractIterator. It is defined in the class Iterator. It creates a new iterator… Read More
Round 1: Code Test I was given a couple of problems to solve in an hour. I was asked to come in person and the… Read More
glob() function in Perl is used to print the files present in a directory passed to it as an argument. This function can print all… Read More
Django Views are one of the vital participants of the MVT Structure of Django. As per Django Documentation, A view function is a Python function… Read More
Given two strings s1 and s2, the task is to find whether the two strings contain the same characters that occur in the same order.… Read More
In traditional recursion call, we perform our recursive call first, and then we take the return value of the recursive call and calculate the result.… Read More
When it comes to programming there are a lot of developers and programmers who face issues in their entire programming career. Some of the developers… Read More
Kivy is a platform independent GUI tool in Python. As it can be run on Android, IOS, linux and Windows etc. It is basically used… Read More
If we want to unmap any widget from the screen or toplevel then forget() method is used. There are two types of forget method forget_pack()… Read More
While working with strings, one of the most used application is replacing the part of string with another. Since string in itself is immutable, the… Read More
Round 1: AMCAT Test In Mphasis AMCAT test plays an important role. It consists of questions from all the sections. The Sections were Logical Reasoning… Read More
Kivy is a platform independent GUI tool in Python. As it can be run on Android, IOS, linux, and Windows, etc. It is basically used… Read More
Codeignitor is one of the popular MVC framework of PHP. Most of the developers prefer to make their projects on Codeignitor because of it’s lightweight… Read More
Dropdown lists (also known as select elements) are commonly used in web forms to allow users to choose from a predefined set of options. When… Read More
Kaggle is an online community of Data Scientists and Machine Learning Engineers which is owned by Google. A general feeling of beginners in the field… Read More
Given a binary tree, the task is to print all the nodes except the leftmost in every level of the tree. The root is considered… Read More