Quescol - A Platform That Provides Previous Year Questions And Answers
Quescol (Question Collections) is an educational website that provides a huge collection of the previous year and most important questions and answers as per the exam perspective.
We desperately trying to helps the students by providing all previous year questions and answers at a single place free of cost. It will save the cost of purchasing question bank as well as it is allowed to access anytime from anywhere.
Interview Preparation
B. Tech Second Year Subjects
B. Tech Third Year (CSE) Subjects
Design and Analysis of Algorithms
B. Tech Fourth/Final Year (CSE) Subjects
Latest Posts
AVL Tree with explanation
An AVL tree is a self-balancing binary search tree. Its was named as AVL on its inventor Adelson-Velsky and Landis. There are some scenario in
Radix sort algorithm explanation with example
Radix sort is a non-comparative sorting algorithm that sorts elements digit by digit starting from least significant digit to most significant digit. Suppose if you
Quick Sort Algorithm with explanation
Quick Sort is also known as partition exchange sort which sorts elements using works a divide-and-conquer strategy to sort an array. In divide and conquer
Bubble sorting algorithm with Bubble sort program in C
Bubble sort is a simple sorting method to sorts the array elements. In the bubble sorting technique each array element is compared to the adjacent
Insertion sort algorithm and program in C
Insertion Sort is one of the simplest sorting algorithms that compare each array element with new elements that we want to insert in an array.
Selection Sort Algorithm and Program in C
Selection sort is a sorting algorithm that has an O(n2) time complexity for all the cases like best, average, and worst case. How selection sort