All Easy Articles
Sometimes, while working with data, we have just a simple application in which we require to double the contents of a list and make it… Read More
In this article, we will discuss how to update the dependencies of a project with npm. You must have heard about npm which is called… Read More
Factorizing a large odd integer, n, into its corresponding prime factors can prove to be a difficult task. A brute approach can be testing all… Read More
I got interview mail that I have been shortlisted as software engineer role for interview .My recruiter asked me for date preferences. Round 1:- It… Read More
Given a non-negative number N, the task is to convert the number by deleting some digits of the number, such that the sum of the… Read More
Hello Everyone, I would like to share my experience in interviewing with Amazon for the SDE-2 position. I had 4.5 Years of experience while I… Read More
In the terms of Mathematics Cartesian Product of two sets is defined as the set of all ordered pairs (a, b) where a belongs to… Read More
Python requests are generally used to fetch the content from a particular resource URI. Whenever we make a request to a specified URI through Python,… Read More
DSC means Developer Student Club. It is a technical community that combines all the university students, and all the other students who learn, share ideas… Read More
1st round (Online) 30 MCQs and 2 coding questions 1) Find the contiguous sub-array with maximum sum (Kadane’s Algorithm) 2) Find mean, median and mode… Read More
NumPy is a Python fundamental package used for efficient manipulations and operations on High-level mathematical functions, Multi-dimensional arrays, Linear algebra, Fourier Transformations, Random Number Capabilities,… Read More
The problem of object localization is the most difficult part of object detection. One approach is that we use sliding window of different size to… Read More
In Node.js, console.log() method is used to display the message on the console. By default, the console.log() method prints on console with trailing newline. Example… Read More
Given a string. the task is to check if the string is symmetrical and palindrome or not. A string is said to be symmetrical if… Read More
Python’s Itertool is a module that provides various functions that work on iterators to produce complex iterators. This module works as a fast, memory-efficient tool… Read More
Requests library is one of the important aspects of Python for making HTTP requests to a specified URL. This article revolves around how one can… Read More
CherryPy is a popular framework of Python. Using CherryPy, web applications can be built in a faster and more reliable way. It is also called… Read More
Consider the following statements about process state transitions for a system using preemptive scheduling. I. A running process can move to ready state. II. A… Read More
Consider the following statements. I. If L1∪L2 is regular, then both L1 and L2 must be regular. II. The class of regular languages is closed… Read More