All Basic Articles
REPLACE() function could be used to replaces all presence of a substring within a string, with a new substring. REPLACE() function is a case-sensitive. Syntax… Read More
Prerequisite: Packages in GoLang and Import in GoLang  Technically defining, a package is essentially a container of source code for some specific purpose. Packages are… Read More
Operators are used to perform operations on values and variables. These are the special symbols that carry out arithmetic, logical, bitwise computations. The value the… Read More
1. Frequency Division Multiple Access (FDMA) : FDMA is a type of channelization protocol. In this bandwidth is divided into various frequency bands. Each station… Read More
All traditional networking devices like router and switches uses distributed control plane. But newer model of networking i.e., Software-defined Networking (SDN) uses centralized control plane.… Read More
In this article, we are going to cover an overview that how we can each compiler phase works individually with the help of an example.… Read More
The Era of technology has revolutionized communication with the introduction of mobile and wireless communication. Mobile communication system may be defined as a communication system… Read More
Given 2 lists, print the element in zig-zag manner, i.e print similar indices of lists and then proceed to next. Input : test_list1 = [5,… Read More
Python Lists have various built-in methods to remove items from the list. Apart from these, we can also use different methods to remove an element… Read More
Data Model is the model that organizes elements of the data and tell how they relate to one-another and with the properties of real-world entities.… Read More
In the software industry, there are clear differences between manual testing and automated testing. Where manual testing is used to ensure that the software code… Read More
In mathematics, the dot product or also known as the scalar product is an algebraic operation that takes two equal-length sequences of numbers and returns… Read More
Numpy in Python is a general-purpose array-processing package. It provides a high-performance multidimensional array object and tools for working with these arrays. It is the… Read More
Given an array arr[] consisting of N integers and an integer D, the task is to find the least integer T such that the entire… Read More
The pow.exponent() function is used to specify the exponent to the given value. It returns the current exponent when the exponent is not specified. The… Read More
psutil is a cross-platform library for retrieving information on running processes and system utilization(CPU, memory, disks, networks, sensors) in Python. The Python script below can… Read More
re.MatchObject.group() method returns the complete matched subgroup by default or a tuple of matched subgroups depending on the number of arguments Syntax: re.MatchObject.group([group]) Parameter: group:… Read More
In this article, we will discuss how to add and subtract elements of the matrix in Python.  Example: Suppose we have two matrices A and… Read More
Given two numbers n and m. The task is to find the quotient and remainder of two numbers by dividing n by m. Examples: Input:… Read More
Let’s discuss how to find the inner, outer, and cross products of matrices and vectors using NumPy in Python. Inner Product of Vectors and Matrices… Read More