All Hard Articles
Transaction Processing Monitors are systems designed and developed in the 1970s and 1980s to support a large number of airline terminals from a single system… Read More
Pre-requisites: File Handling in C++ So far the operations using the C program are done on a prompt/terminal that is not stored anywhere. But in… Read More
Here we will discuss how to split a dataset into Train and Test sets in Python. The train-test split is used to estimate the performance… Read More
The datasets have both numerical and categorical features. Categorical features refer to string data types and can be easily understood by human beings. However, machines… Read More
In this article we will be discussing some of the methods that can be used to open a web browser (of our choice) and visit… Read More
A list in R Programming Language can be passed as an argument in lapply() and sapply() functions. It is quite helpful to perform some of… Read More
A pointer is a variable that contains the references of another variable. Or in other words, the pointer is a variable that stores the address… Read More
We have discussed Linked List Introduction and Linked List Insertion in previous posts on a singly linked list.Let us formulate the problem statement to understand… Read More
Given an array, cyclically rotate the array clockwise by one. Examples: Input: arr[] = {1, 2, 3, 4, 5} Output: arr[] = {5, 1, 2,… Read More
Priority Queue Priority queues are a type of container adapters, specifically designed such that the first element of the queue is the greatest of all… Read More
A matrix is a collection of numbers organized in rows and columns, represented by a two-dimensional array in C. Matrices can either be square or… Read More
Given a singly linked list, rotate the linked list counter-clockwise by k nodes. Where k is a given positive integer. For example, if the given… Read More
The Checksum is an error detection method that detected errors in data/message while it is transmitted from sender to receiver. This method is used by… Read More
.NET is a free, cross-platform, open-source developer platform for building many different types of applications. With .NET you can build various kinds of applications including… Read More
Given a 2-D array matrix[][] of size ROW * COL and an integer K, where each cell matrix[i][j] is either 0 (empty) or 1 (obstacle).… Read More
Given a Doubly Linked List, the task is to reverse the given Doubly Linked List. See below diagrams for example.  (a) Original Doubly Linked List… Read More
MTX visited our campus in October 2021. The drive was for 3 roles- Associate SDE, SDE and Associate ML Engineer. Round 1(Online Assessment): This round… Read More
Before the interview, it is mandatory to clear their test which consists of Logical reasoning, verbal, analytical, technical MCQs questions followed by a coding round… Read More
Accolite conducted a pool drive in Mumbai on July 2019 where few engineering colleges from Mumbai were allowed to participate.  Round 1(Online Aptitude Round): This… Read More
The Breadth First Search (BFS) algorithm is used to search a graph data structure for a node that meets a set of criteria. It starts… Read More