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
How to generate random value from a given list in Excel?
This article is designed to allow users to understand the process and can generate random data values, from the provided list of data that is based on some predefined or provided data set or collection. Here, data can be of any type, for example, string, int, and any other. For this article will assume that the available data is of string type. The article contains two examples, first example performs the provided task by using the predefined formula. While the second example will perform the same task by using the kutool. Example 1 − To generate random value from a ...
Read MoreHow to Generate Random Positive and Negative Numbers in Excel?
Random data is a type of data generated randomly. In this article, the users will learn how to generate random positive and negative numbers by using the predefined available Excel methods, and kutool. Random data can be used for any purpose such as creating a sample data set or evaluating results based on the dataset. This article contains four examples in which the first two examples will allow the user to generate random positive and negative numbers by using available formula methods, while the remaining two examples will allow the user to generate positive and negative numbers by using the ...
Read MoreHow to Generate Random Decimal/Integer Numbers in Excel?
Random numbers are the random values, used to obtain some results. It can be used to perform simulations and to understand the pattern of different system components. It is useful when the user requires a large data set to evaluate some common feature. Decimal numbers are numbers that contain some fractional part. For example, ,1.2, and 3.5 are decimal numbers. While integer data contain numbers without fractional parts. An example of integer value is 1, 2, 5, and many other, that does not contain a decimal value. Example 1: To generate a random decimal number in Excel by using the ...
Read MoreHow to Generate Lottery Numbers in Excel?
Generating lottery numbers by using Excel is an easy and time-saving process. The described task can be done by using two different examples. The first practice involves using the VBA code. The user needs to create a module and execute the module to generate the lottery number. The second example is based on the use of kutools. In the kutools example, the user is required to use a random value function to implement the required functionality. Since the lottery number should be an integer data. Therefore, this tutorial is generating the lottery number with an integer type. To generate the ...
Read MoreWhat is the full form of ALL ?
What is Acute Lymphoblastic leukaemia? Acute Lymphocytic Leukaemia or ALL is a very progressive disorder and intensifies rapidly thereby creating immature blood cells in the body, rather than forming matured ones. Acute lymphocytic leukaemia is very much prevalent amongst children and correct treatments might increase the chance of survival to a greater extent. Acute lymphocytic leukaemia is also prevalent amongst adults but the chance of getting cured is very less. Symptoms There can be multiple symptoms of acute lymphocytic leukaemia which may include − Bleeding from the gums Severe Bone pain High Fever Frequent infections in different body ...
Read MoreFinding the Square Root of the Complex Number in Golang
In mathematics, a square root of a number is a value that when multiplied by itself, gives the original number. In Golang, the math/cmplx package provides built-in functions to find the square root of a complex number. In this article, we will discuss how to find the square root of a complex number in Golang with examples. Example 1: Finding the Square Root of a Complex Number Let's consider an example of finding the square root of a complex number using Golang. Suppose we want to find the square root of z = 3 + 4i. Here's the code snippet ...
Read MoreWhat is the full form of AT &T ?
AT&T AT&T stands for American Telephone & Telegraph Company is a telecommunications firm that offers businesses and customers all around the world voice, video, data, and internet services. Alexander Graham Bell, the creator of the telephone, established the business in 1885 under the name American Telephone and Telegraph Company. Over time, AT&T has transformed from a provider of telephone services into a diversified telecommunications business offering a variety of goods and services. Mobile phone services, home phone services, high-speed internet, digital TV, and IP-based services for enterprises are some of its main offers. One of the largest businesses in ...
Read MoreWhat is the full form of ASP ?
What is the full form of ASP? ASP stands for Active Server Pages. Microsoft created ASP, a server-side scripting language, to enable the development of dynamic and interactive web sites. Developers can use ASP to make web pages that interact with databases and respond to user input. In order to construct dynamic web pages that are run on the server before being transmitted to the client's web browser, developers can use ASP to integrate HTML, scripts, and server-side components. This enables more effective and secure web applications. History In 1996, as a component of their ActiveX technology, Microsoftoriginally published ...
Read MoreWhat is the full form of ASLV ?
What are Launchers The Indian Space Research Organization (ISRO) created the four-stage Augmented Satellite Launch Vehicle (ASLV) to launch satellites into Low Earth Orbits (LEO). Launchers, also known as launch vehicles or rockets, are vehicles designed to carry payloads such as satellites, spacecraft, or other payloads from Earth into space. They provide the initial thrust required to overcome the Earth's gravitational pull and accelerate the payload to the desired velocity and altitude for orbit insertion or interplanetary trajectories. Launchers typically consist of multiple stages, each with its own engine and fuel supply. The first stage provides the majority of the ...
Read MoreFinding Index of the Regular Expression present in Slice of Golang
In Golang, you can use regular expressions to search for a pattern in a string. The regexp package provides functionality to work with regular expressions. In this tutorial, we will learn how to find the index of the regular expression present in the slice of Golang. Step 1: Importing the Required Packages To use the regexp package, you need to import it first. You can import it using the following code − import "regexp" Step 2: Creating a Slice Next, we will create a slice of strings. This slice will contain the strings in which we will search for ...
Read More