All Basic Articles
AMQP (Advanced Message Queuing Protocol) and HTTP (Hypertext Transfer Protocol) are two communication protocols used in distributed systems, however, they perform different functions and have… Read More
Coefficient of determination also called as R2 score is used to evaluate the performance of a linear regression model. It is the amount of the… Read More
Python defines type conversion functions to directly convert one data type to another. This article is aimed at providing the information about converting decimal to… Read More
The Database System is developed in the following phases: Phase-1: Requirements Collection Phase – Goal of this phase is collecting correct requirements from stakeholders and… Read More
Prerequisite – Dynamic Host Configuration Protocol (DHCP) Every protocol that we learn in Computer Network have some rules, these rules govern working of protocols. These… Read More
In Dart concatenation of string can be done in four different ways: By using ‘+’ operator. By string interpolation. By directly writing string literals. By… Read More
In multi programming environment, it often happens that more than one processes compete for CPU resources at the same time. If only one CPU is… Read More
Let us see how to copy arrays in Python. There are 3 ways to copy arrays :  Simply using the assignment operator. Shallow Copy Deep… Read More
While building a Deep Learning model, the first task is to import datasets online and this task proves to be very hectic sometimes. We can… Read More
In a multivariate optimization problem, there are multiple variables that act as decision variables in the optimization problem. z = f(x1, x2, x3…..xn) So, when you look… Read More
A slideshow can be used to display text or images that continuously scroll from one slide to the other to display its content. This article… Read More
Clocks are useful elements for any UI if used in a proper way. Clocks can be used on sites where time is the main concern… Read More
In JavaScript, the for in loop is used to iterate over the properties of an object. Syntax: for (let i in obj1) { // Prints… Read More
AUG-2019 ROUND 1: It was a Computer Based Test Interview of 90 min. Difficulty : Medium. 3 TIMER SECTIONS : 1- Aptitude questions. 2- Debug… Read More
The customElements define() method is used to define a new custom element. There are two types of custom elements that can be created: Autonomous custom… Read More
Github has recently added a really cool feature that allows you to add a README to your GitHub profile. It’s just like an “About Me”… Read More
JSON: JSON refers to JavaScript Object Notation. It is a language-independent, human-readable language used for its simplicity and is most commonly used in web-based applications.… Read More
The static keyword is used for memory management of global data members. The static keyword can be applied to the fields and methods of a… Read More
Text Alignment in Python is useful for printing out clean formatted output. Some times the data to be printed varies in length which makes it… Read More
Perquisites: Identifiers, Variables Identifiers Identifiers are used for the naming of variables, functions, and arrays. It is a string of alphanumeric characters that begins with… Read More