Why learning C Programming is a must?
C is a procedural programming language. It was initially developed by Dennis Ritchie between 1969 and 1973. It was mainly developed as a system programming… Read More »
C is a procedural programming language. It was initially developed by Dennis Ritchie between 1969 and 1973. It was mainly developed as a system programming… Read More »
As the placement season is back so are we to help you ace the interview. We have selected some most commonly asked and must do… Read More »
This is an introduction course to HTML and CSS which will help you learn all about the basics of HTML and CSS needed to begin… Read More »
ArrayList is a powerful feature of C# language. It is the non-generic type of collection which is defined in System.Collections namespace. It is used to… Read More »
Given an array arr[] of N elements, the task is to find the length of the longest sub-sequence in arr[] such that all the elements… Read More »
Given an array arr[] containing N integers, the task is to print k different permutations of indices such that the values at those indices form… Read More »
Given an integer N, the task is to find the number of trailing zeroes in the base 16 representation of the factorial of N. Examples:… Read More »
Given an array arr[], the task is to count the number of elements from the array which divide the sum of all other elements. Examples:… Read More »
Given N boxes with their capacities which denotes the total number of boxes that it can hold above it. You can stack up the boxes… Read More »
The Graduate Record Examinations (GRE) is the most preferred examination for graduate schools in the United States. GRE is considered to be an admission requirement… Read More »
There were three rounds:- Round 1:- Pen Paper based MCQ test Round 2:- Technical Interview Round 3:- Director Interview Round 1 There were two sections:-… Read More »
Given a list of numbers, the task is to make a new list containing only even values. Examples: Input: list = [1, 2, 3, 4,… Read More »
Given a list of tuples, the task is to find all those tuples containing the given element, say n. Examples: Input: n = 11, list… Read More »
Given list of lists in Python, write a Python program to find maximum value of list each sub-list. Examples: Input : [[10, 13, 454, 66,… Read More »
with statement in Python is used in exception handling to make the code cleaner and much more readable. It simplifies the management of common resources… Read More »
Given a Binary Tree, the task is to print the leaf nodes from left to right.The nodes must be printed in the order they appear… Read More »
Given a list of sequential numbers, Write a Python program to convert the given list into list of intervals. Examples: Input : [2, 3, 4,… Read More »
Given a Sentence, write a Python program to convert the given sentence into list of words. Examples: Input : [‘Hello World’] Output : [‘Hello’, ‘world’]… Read More »