All Easy Articles
Python doesn’t provide any inbuilt method to easily convert floating point decimal numbers to binary number. So, Let’s do this manually. Approach : To convert… Read More
Differences between MongoDB and MySQL on various parameters are discussed below: What are MongoDB and MySQL? MongoDB MySQL MongoDB is an open-source database developed by… Read More
Prerequisite – File Systems Hierarchical Directory Systems – Directory is maintained in the form of a tree. Each user can have as many directories as… Read More
Given an array of n elements, the task is to find the fibonacci sum of a subset of the array where every element of the… Read More
Given a number ‘n’, check whether it is an emirpimes or not.  An emirpimes(“semiprime” when spelled backwards) derives its definition from the way it is… Read More
In earlier post Restoring Division learned about restoring division. Now, here performing Non-Restoring division, it is less complex than the restoring one because simpler operation… Read More
The word Steganography is derived from two Greek words- ‘stegos’ meaning ‘to cover’ and ‘grayfia’, meaning ‘writing’, thus translating to ‘covered writing’, or ‘hidden writing’.… Read More
Given an array arr[] of n integers and some queries. Each query is of the form (L, R), where L and R are indices of… Read More
Company’s Background : The company is recently funded startup and their main focus is on sustainable energy. Round 1 : Telephonic Interview (about 30 minutes)… Read More
RAM(Random Access Memory) is a part of the computer’s Main Memory which is directly accessible by the CPU. RAM is used to Read and Write… Read More
Given two strings A and B. Minimize the number of unique characters in string A by either swapping A[i] with B[i] or keeping it unchanged.… Read More
The numpy.log() is a mathematical function that helps user to calculate Natural logarithm of x where x belongs to all the input array elements. Natural… Read More
degrees() and radians() are methods specified in math module in Python 3 and Python 2. Often one is in need to handle mathematical computation of conversion… Read More
Given an array of non-negative integers and range query l, r, find number of prefix sum which are prime numbers in that given range. Prerequisite… Read More
What is the median of data if its mode is 15 and the mean is 30? (A) 30 (B) 25 (C) 22.5 (D) 27.5 Answer:… Read More
Which of the following is a correct statement? (A) Composition is a strong type of association between two classes with full ownership. (B) Composition is… Read More
A computer has 16 pages of virtual address space but the size of main memory is only four frames. Initially the memory is empty. A… Read More
Given a linked list, the problem is to delete all the nodes from the list that are greater than the specified value x.  Examples: Input… Read More
I applied through the careers page. There were 2 interviewers. The interview was scheduled for 90 minutes, to be held on Nexi(Bloomberg ‘s video conference… Read More
Given a Linked List, task is to check whether the Linked List is sorted in Descending order or not?  Examples :   Input : 8 ->… Read More