All Basic Articles
Given a singly linked list, write a function to swap elements pairwise. Input: 1->2->3->4->5->6->NULL  Output: 2->1->4->3->6->5->NULL Input: 1->2->3->4->5->NULL  Output: 2->1->4->3->5->NULL Input: 1->NULL  Output: 1->NULL  For… Read More
It had total 4 rounds and each one was an elimination round. Round 1 (Online Assessment): This was conducted on Hackkerrank platform on 20th of… Read More
Coding Round: First round is coding round in which there would be 10 MCQ and 2 coding question. 17 students were selected for further round.… Read More
I got an interview opportunity for the role of Digital Specialist Engineer after clearing the first round (coding exam). The first round was held on… Read More
Java source file structure describes that the Java source code file must follow a schema or structure. In this article, we will see some of… Read More
Given a large positive number as string, count all rotations of the given number which are divisible by 4.  Examples:  Input: 8 Output: 1 Input:… Read More
Algebra is the branch of mathematics that includes numerals and variables with operators. The term that has constant value is known as numerals, it is… Read More
Permutation is known as the process of organizing the group, body, or numbers in order, selecting the body or numbers from the set, is known… Read More
Statistics is a subject that deals with the collection, analysis, and representation of collected data. The analytical data derived from methods of statistics are used… Read More
DiskPart is a powerful tool for disk management under Windows OS. Diskpart Command is used to manage the computer hard drive, partitions, and volumes. This… Read More
Cloud computing refers to the on-demand delivery of IT services/resources over the internet. On-demand computing service over the internet is nothing but cloud computing. By… Read More
Conventional testing is a software testing process that is conducted when the waterfall life cycle is used while developing software. This testing is always performed… Read More
When the concentrations of reactants and products do not change over time, they are said to be in a state of equilibrium. The stability of certain… Read More
Sometimes in an app, we need to pick and open a file from the phone’s storage, in this article, we will achieve the same using… Read More
In this article, we will discuss how to read text files with pandas in Python. In Python, the Pandas module allows us to load DataFrames… Read More
2.5 quintillion bytes of data are generated every day by users. Predictions by Statista suggest that by the end of 2021, 74 Zettabytes( 74 trillion… Read More
Centripetal and Centrifugal Force – An object performing a circular motion is changing its velocity every second. That means a force acts on the particle… Read More
In this article we will discuss how to fix RuntimeWarning: overflow encountered in exp in Python. This warning occurs while using the NumPy library’s exp()… Read More
replicate() function in R Programming Language is used to evaluate an expression N number of times repeatedly. Syntax: replicate(n, expression) where expression is a statement… Read More
In this article, we are going to learn how to take input from users using Batch Script. Taking User Input: @echo off echo Batch Script… Read More