All Easy Articles
C++ helps you to format the I/O operations like determining the number of digits to be displayed after the decimal point, specifying number base etc.… Read More
As we know C++ is a comprehensive and powerful programming language but there are few highly specialized situations that it cannot handle. For those situations,… Read More
As we know Kotlin plugin is bundled with Android Studio above version 3.0, we can build android application using Kotlin language instead of Java. Below… Read More
I applied through college “NIT bhopal (MANIT bhopal)”. The process took 1 day. I interviewed at Incture Technologies in September 2019. Eligibility criteria : 60-70% throughout… Read More
Given an array arr[] of N elements where N ? 2, the task is to check the type of array whether it is:   Increasing. Decreasing.… Read More
Given two integers N and K. The task is to print the lexicographically smallest string of length N consisting of lower-case English alphabets such that… Read More
In C++ pointers and references both are mechanisms used to deal with memory, memory address, and data in a program. Pointers are used to store… Read More
Given five integers i, Fi, j, Fj and N. Where Fi and Fj are the ith and jth term of a sequence which follows the… Read More
Counting Sort is one of the best sorting algorithms which can sort in O(n) time complexity but the disadvantage with the counting sort is it’s… Read More
Holography and photography are two different techniques to generate images. Holography: It is the technique used to generate 3-dimensional images using the phenomenon of Interference… Read More
Deque in C++ Standard Template Library (STL) Double-ended queues are sequence containers with the feature of expansion and contraction on both ends. They are similar to… Read More
Given an array arr[] containing N integers. In one step, any element of the array can either be increased or decreased by one. The task… Read More
Introduction to interactive problems in competitive programming is already discussed in the previous article. In this article, another problem based on the same concept is… Read More
Given six distinct colors, in how many unique ways can a six faced cube be painted such that no two faces have the same color?… Read More
Puzzle: We have to divide a square into 5 parts such that 4 parts among them are equal. The condition is that even once the… Read More
Our goal is to convert a given text image into a string of text, saving it to a file and to hear what is written… Read More
There are many frameworks that allow building your webpage using Python, like Django, flask, etc. Flask is a web application framework written in Python. Flask… Read More
Array#length() : length() is a Array class method which returns the number of elements in the array. Syntax: Array.length() Parameter: Array Return: the number of… Read More
Round 1: First round was an online test which consisted of three sections: Aptitude- 20 MCQs had to be solved in 20 minutes. The questions were… Read More
Scala Type Inference makes it optional to specify the type of variable provided that type mismatch is handled. With type inference capabilities, we can spend… Read More