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
What is the full form of ASEAN ?
Introduction ASEAN (Association of Southeast Asian Nations) is a regional cooperation in Southeast Asia. Since its inception, ASEAN has worked relentlessly for growth and development in the region and in the areas of member nations. Its economic coordination has deepened more and more due to its aim for implementing the Asian Free Trade Area, industrialization, development of tourism, and other initiatives to uplift the region. Hence, in this article, we will briefly discuss this association. Overview of ASEAN ASEAN whose full form is the Association of Southeast Asian Nations is an intergovernmental organization of the developing countries of ...
Read MoreWhat is the full form of ASCII ?
What is the full form of ASCII? American Standard Code for Information Interchange is referred to as ASCII. The letters, numbers, punctuation, and other symbols used in electronic communication and computing are represented by special numeric codes in this character encoding scheme. History on ASCII The character encoding standard known as ASCII (American Standard Code for Information Interchange) was created in the early 1960s. The American Standards Association (ASA), which eventually evolved into the American National Standards Institute, created it (ANSI). The original goal of ASCII was to create a standard way of encoding characters for use in electronic ...
Read MoreCreating a string that contains regexp metacharacters in Golang
Regular expressions are used for pattern matching in programming, and they often contain metacharacters that have special meanings. When creating a regular expression pattern, it is important to consider the metacharacters that are used and escape them if necessary. In Golang, strings are a sequence of bytes that represent Unicode characters. In this article, we will discuss how to create a string that contains regexp metacharacters in Golang. Creating a String that Contains Regexp Metacharacters To create a string that contains regexp metacharacters in Golang, we need to escape the metacharacters that we want to include in the string. We ...
Read MoreWhat is the full form of ASAT ?
History and Evolution Anti-satellite weapons (ASAT) development began in the 1950s, during the Cold War, as a part of the arms race between the United States and the Soviet Union. The first ASAT tests were conducted in the early 1960s, with both countries successfully launched missiles to intercept and destroy their satellites in orbit. Over the years, several other countries, including China, India, and the United Kingdom, have also developed ASAT technology for military purposes. The weapons can be deployed in different forms, including missiles, lasers, and kinetic energy weapons, and can be launched from the ground, air, or space. ...
Read MoreWhat is the full form of ASAP ?
What do we mean by ASAP? ASAP is an acronym that stands for "as soon as possible." It is a term that is used to convey a sense of urgency and a request for immediate action. The term has been in use since the mid-20th century, and it is believed to have originated in the military. It was used in operational orders to convey the urgency of completing a mission or task. Today, ASAP is used in a variety of contexts and industries, including project management, customer service, and support. ASAP, or "as soon as possible, " is a term ...
Read MoreWhat is the full form of ARMD ?
What is ARMD? Age-related Macular Degeneration- AMD is a very common eye disorder leading to vision loss in older persons. Age Related Macular Degeneration does not lead to complete blindness, but can deprive our central vision which might interfere in recognising faces, reading books, driving, cooking or performing daily household activities. Symptoms AMD is classified into teo types: Dry AMD and Wet AMD. The symptoms differ for both of these and are explained below. Dry AMD Dry AMD involves slow and painless loss of central vision over the years.People bear very few symptoms with this disease but when ...
Read MoreWhat is the full form of ARDS ?
What is ARDS? Acute Respiratory Distress Syndrome or ARDS is a grievous lung disorder that occurs by accumulating fluid in the small elastic air sacs or alveolar chambers in the lungs. Several factors lead to ARDS and they involve pneumonia, sepsis or trauma. Inhalation of toxic chemicals like those working in asbestos factories are more prone to ARDS. This disease is much more predominant amongst the aged and less susceptible persons. ARDS was first reported in the 1960s, but the disease was not officially identified and named until 1967. Symptoms The severity of the symptoms of ARDS depends on ...
Read MoreFinding the Sine of Complex Number in Golang
Finding the sine of a complex number is a common mathematical operation that arises in various fields such as engineering, physics, and computer science. In this article, we will explore how to find the sine of a complex number in Golang using the math/cmplx package. Understanding Sine of a Complex Number In mathematics, the sine of a complex number is defined as the ratio of the imaginary part of the complex number to its magnitude. We can express this mathematically as − sin(z) = (e^(iz) - e^(-iz)) / (2i) where z is a complex number, e is the mathematical ...
Read MoreFinding the Natural Logarithm of Complex Number in Golang
In the field of mathematics and computer programming, natural logarithm is an important function that is used in many calculations. The natural logarithm of a number is the logarithm of that number to the base of e (Euler's number), where e is approximately equal to 2.71828. In Golang, the math/cmplx package provides various functions to perform complex number operations including the natural logarithm of a complex number. In this article, we will discuss how to find the natural logarithm of a complex number in Golang with the help of examples. Syntax The syntax for finding the natural logarithm of a ...
Read MoreFinding the Inverse Tangent of Complex Number in Golang
Trigonometric functions are widely used in mathematics, physics, engineering, and many other fields. Inverse trigonometric functions are the inverse of the trigonometric functions, and they are used to find the angle when the ratio of two sides of a right-angled triangle is known. In this article, we will discuss how to find the inverse tangent of a complex number in Golang. Finding the Inverse Tangent of a Complex Number To find the inverse tangent of a complex number in Golang, we can use the Atan() function from the math/cmplx package. The Atan() function takes a complex number as an argument ...
Read More