All Easy Articles
Given a and b, find the ceiling value of a/b without using ceiling function.  Examples:   Input: a = 5, b = 4 Output: 2 Explanation: a/b =… Read More
Drop Table cannot be used to drop a Table referenced by __________ constraint. (a)Primary key (b)Sub key (c)Super key (d)Foreign key (A) (a) (B) (a),… Read More
OpenCV (Open Source Computer Vision) is a computer vision library that contains various functions to perform operations on Images or videos.   OpenCV's application areas include… Read More
Unsupervised learning is a branch of machine learning that deals with unlabeled data. Unlike supervised learning, where the data is labeled with a specific category… Read More
Problem – Write a program to add 2-BCD numbers where starting address is 2000 and the numbers is stored at 2500 and 2501 memory addresses… Read More
Problem – Write an assembly language program in 8085 microprocessor to find 2’s complement of the contents of Flag Register. Example – Algorithm – Initialize… Read More
Problem – Write an assembly language program in 8085 microprocessor to convert gray numbers to binary. Example – Algorithm – Load the data from address… Read More
Vectors are known as dynamic arrays which can change its size automatically when an element is inserted or deleted. This storage is maintained by container.… Read More
Every user in Unix like operating system is identified by a different integer number, this unique number is called as UserID.  There are three types… Read More
The tasks of the Error Handling process are to detect each error, report it to the user, and then make some recovery strategy and implement… Read More
There was 1 coding round (Codagon hosted on Hackerrank) and 4 interview rounds. At first, you have to appear in coding contest Codagon. After that,… Read More
Given an array, count pairs in the array such that one element of the pair divides the other. Examples:   Input : arr[] = {1, 2,… Read More
Given two strings S1 and S2, The task is to find if S1 is a substring of S2. If yes, return the index of the first… Read More
PHP and Node.js are both used for server side development and thus have become a competitor for each other. Below are some differences based on… Read More
You are given two integers N and M, and print all the terms of the series up to M-terms of the N-bonacci Numbers. For example,… Read More
For an integer N, there are elements ranging from 0 to N-1. Certain elements can be transformed into other elements. Each transformation requires a certain… Read More
INTRODUCTION: The minimum product subset of an array refers to a subset of elements from the array such that the product of the elements in… Read More
Given a midpoint of line(m1, m2) and one coordinate of a line (x1, y1), find the other end point(x2, y2) of a line. Examples:  Input… Read More
Prerequisite :Array in C/C++, More on array A four-dimensional (4D) array is an array of array of arrays of arrays or in other words 4D… Read More
Given n strings, concatenate them in an order that produces the lexicographically smallest possible string. Examples:   Input : a[] = ["c", "cb", "cba"] Output :… Read More