All Basic Articles
Given an integer N, below operations can be performed any number of times on N:   Multiply N by any positive integer X i.e. N =… Read More
Given an array arr [] of size N with unique elements, the task is to count the total number of pairs of elements that have… Read More
Given an array arr containing N integer elements, the task is to count the minimum number of elements that need to be changed such that… Read More
Given a matrix of order n*n, the task is to find the maximum value of |i-j| such that Aij = 0. Given matrix must contain… Read More
Given a singly circular linked list of nodes. The task is to find the smallest and largest elements in the circular linked list. Examples:   Input :… Read More
A Cellular Network is formed of some cells. The cell covers a geographical region and has a base station analogous to 802.11 AP which helps… Read More
The onselect event attribute works when some text has been selected in an element. It is the part of event attribute. It is basically activated… Read More
Pandas dataframe.replace() function is used to replace a string, regex, list, dictionary, series, number, etc. from a Pandas Dataframe in Python. Every instance of the… Read More
This onfocus attribute works when the element gets focused. This event attribute is mostly used with <input>, <select>, <a> elements. This event attribute is supported… Read More
Given two arrays A and B of positive integers, elements of array B can be mapped to elements of array A only if both the… 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 array of N elements, the task is to find the Sum of N elements without using loops(for, while & doWhile) and recursion.Examples:   Input:… Read More
Given an integer K and two arrays A1 and A2, the task is to return the total number of pairs (one element from A1 and… Read More
Given an Integer N. The task is to count numbers P less than N such that P is a product of two distinct perfect squares.… Read More
Given an array A[]. The task is to determine if it is possible to choose two indices ‘i’ and ‘j’ such that the below conditions… Read More
Given an array of integers. The task is to replace every element by the bitwise xor of all other elements of the array. Examples:  Input:… Read More
Round 1: Apply via Naukri.com  or Send Resume Direct Company HR Round 2: Given Two Coding Question Based On  Amcat Compiler, If you Run  One Program… Read More
Given an array of integers and an integer . For every integer of the array a[i], the task is to calculate the count of numbers in the… Read More
Given an array of integers, the task is to replace every element with the smallest element on its left side.  Note: Replace the first element… Read More
Given a dictionary in Python, write a Python program to find the sum of all items in the dictionary. Examples:  Input : {‘a’: 100, ‘b’:200,… Read More