Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Difference between Monochrome and Color Displays
Display is the most important part of a visual display unit (VDU) like TV, monitor, etc. Depending on the colors displayed on the screen, displays are of two types namely, monochrome display and color display. The fundamental difference between monochrome and color display is that a monochrome display can display graphics like images, text, etc. in gray shades only, while a color display can display graphics in full color. In this article, we will discuss all the important differences between monochrome display and color display. But before discussing the differences, let us first have a look into their basics. ...
Read MoreDifference between Micro USB and USB-C
USB stands for Universal Serial Bus. USB is a modern communication interface used in computers and other electronic devices for connecting peripherals such as mouse, keyboard, etc. Today, USB has become a standard protocol for connections in electronic devices. USB was first introduced in mid-1990 and has become popular due to its plug and play feature. The USB interface allows peripheral devices to connect to and disconnect from electronic devices without the requirement restarting of the device. USB interface uses Bus Network Topology, allowing multiple devices to connect to a single USB port through a USB hub. Several types of ...
Read MoreInverse Error Function of Given Number in Golang
The inverse error function (erf⁻¹) is the inverse function of the error function (erf) which is used to calculate the probability of a normally distributed random variable falling within a certain range of values. In this article, we will discuss how to calculate the inverse error function of a given number using Golang. Understanding the Error Function Before we dive into the inverse error function, it is important to understand what the error function is and how it works. The error function is defined as − erf(x) = (2/√π) ∫₀ ˣ e⁻ᵗ² dt This function is used to ...
Read MoreHow to write backslash in Golang string?
Golang is a powerful programming language that is used to create a wide range of applications, from web servers to command-line utilities. One of the basic tasks in any programming language is working with strings. In this article, we will discuss how to write backslash in Golang strings, including the syntax and examples. What is a Backslash in Golang? In Golang, the backslash character () is used to escape special characters, such as newline (), tab (\t), and double quotes ("). This means that when you want to include these special characters in a string, you need to use a ...
Read MoreDifference between LCD TV and Plasma TV
TV, Television, is a very common electronic device used to display audio-video content on a screen. Based on the display technology used, several types of TVs available, such as LCD TVs, LED TVs, Plasma TVs, CRT TVs, etc. In this article, we will discuss the important differences between LCD TV and Plasma TV. But, before going to discuss the differences, let us first have a look into the basics of LCD TV and Plasma TV individually. What is LCD TV? LCD stands for Liquid Crystal Display. A type of television in which liquid crystal display technology is used for ...
Read MoreDifference between HDMI and DisplayPort
There are two types of digital audio and video interfaces namely, HDMI (High-Definition Multimedia Interface) and DisplayPort that are used for connecting a source device and an output device. Both HDMI and DisplayPort are extensively being used in several modern devices such as computers, TVs, laptops, gaming consoles, etc. In this article, we will discuss the important differences between HDMI and DisplayPort. But before discussing the differences, let us first discuss their basics. What is HDMI? HDMI is the abbreviation for High-Definition Multimedia Interface. HDMI is also a digital interface developed for transmitting high quality video and audio signals ...
Read MoreHow to use Ellipsis (…) in Golang?
Ellipsis (...) is a special syntax in Golang that allows developers to pass a variable number of arguments to a function. This can be extremely useful when working with functions that require a variable number of arguments, such as print statements or string concatenation. In this article, we will discuss how to use ellipsis in Golang and provide some practical examples. Understanding Ellipsis in Golang Ellipsis (...) is a syntax that allows developers to pass a variable number of arguments to a function. This syntax is used in the function signature and indicates that the function can take any number ...
Read MoreHow to use Array Reverse Sort Functions for Integer and Strings in Golang?
Arrays are an essential data structure in programming. They allow us to store a fixed-size sequence of elements of the same type. In Golang, arrays can be sorted in ascending or descending order based on the type of data they contain. In this article, we will discuss how to use array reverse sort functions for integers and strings in Golang. Sorting an Array of Integers in Descending Order To sort an array of integers in descending order, we can use the "sort" package that comes with Golang. The "sort" package provides the "IntSlice" type, which is a wrapper around a ...
Read MoreDifference between Feedback and Feed Forward Control Systems
A system of components that is used to provide the desired response by controlling different parameters in the process is referred to as a control system. In a control system, the final output or response of the system is controlled by varying the input, and hence it named so. Based on the control mechanism used, the control systems can be classified into the two types namely, feedback control system and feed forward control system. The fundamental difference between the feedback control system and feed forward control system is that in the case of feedback control system, the corrective action is ...
Read MoreDifferences between E-paper and LCD
There are two popular display technologies namely, E-Paper and LCD. The fundamental difference between E-Paper and LCD is in their display image technology that is, the e-paper uses e-ink (electronic-ink) technology to display images, while the LCD (Liquid Crystal Display) uses liquid crystals technology to display images. In this article, we will discuss the important differences between E-paper and LCD. But before that let us first know a bit about them individually. What is E-Paper? E-Paper stands for Electronic Paper. E-paper is a display technology that displays images on a screen in the same look and functionality of the ...
Read More