All Medium Articles
Adding links to HTML buttons is essential for creating interactive web interfaces. In this article, we’ll explore various methods, including inline events, form attributes, and… Read More
The java.math.BigInteger.add(BigInteger val) is used to calculate the Arithmetic sum of two BigIntegers. This method is used to find arithmetic addition of large numbers of… Read More
Hi, I was recently interviewed for Software Developer position for Cadence Design Systems (Location: Bangalore) and got selected. I have 2.5-year experience in C++. Following… Read More
I applied for Microsoft Off Campus Internship through mettl.com. Minimum CGPA was 7 and no backlogs were allowed. Coding Round( ONLINE ) It was an… Read More
Given a linked list, the task is to sort the linked list in ascending order by using selection sort.Examples:   Input : 1->4->2->2->3 Output : 1->2->2->3->4… Read More
Given a graph, the task is to detect a cycle in the graph using degrees of the nodes in the graph and print all the… Read More
Given an array arr[] of size N. The task is to find the length of the longest subsequence from the given array such that the… Read More
Given a number, the task is to reverse this number using Command Line Arguments. Examples: Input: num = 12345Output: 54321Input: num = 786Output: 687 Approach:… Read More
While working with GUI one may need to open files and read data from it or may require to write data in that particular file.… Read More
The numpy.meshgrid function is used to create a rectangular grid out of two given one-dimensional arrays representing the Cartesian indexing or Matrix indexing. Meshgrid function… Read More
Given a permutation P (P1, P2, P3, … Pn) of first n natural numbers. Find the minimum number of operations to convert it into an… Read More
Given an integer N. The task is to find the number of all possible distinct binary strings of length N which have at least 3… Read More
Given an array arr[] of integer elements, the task is to arrange them in such a way that these numbers form the smallest possible number. For… Read More
Two players A and B are playing NIM Game with each other. Both are playing optimally. Player A starts the game. The task is to… Read More
The CSS Font Border is a technique used to create a border-like outline around HTML text characters. This technique is used to enhance the visibility… Read More
Structure Chart represents the hierarchical structure of modules. It breaks down the entire system into the lowest functional modules and describes the functions and sub-functions of… Read More
stty command in Linux is used to change and print terminal line settings. Basically, this command shows or changes terminal characteristics. Syntax: stty [-F DEVICE… Read More
Given a nested dictionary, the task is to convert this dictionary into a flattened dictionary where the key is separated by ‘_’ in case of… Read More
Given an integer K, the task is to find the length of the smallest no. N which is divisible by K and formed by using… Read More
Given an array arr[] of integers of size n. For each element, you have to print the summation of multiplication of every triplet formed using… Read More