
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 206 Articles for Programming Languages

700 Views
In the present era, cloud programming has acquired critical value across ventures. Cloud programming languages are the best-growing choice for firms hoping to benefit from a safe, profoundly versatile cloud environment. It changes how you manage information. So, there are quite a few languages every developer should know. Realising which top cloud programming languages an engineer ought to know is essential because of how important a resource it has become in the modern world. In this composition, we will learn about the top 10 cloud programming developers should know in 2023. What Are Cloud Programming Languages? A cloud coding language ... Read More

9K+ Views
A computer is simply a machine and hence it cannot perform any task itself. Therefore, to make a computer functional different coding languages are developed, which are known as programming languages. A computer programming language is a language in which the codes are written to instruct the computer to perform tasks. Computer programming languages are broadly classified into the following three main categories − Machine Language Assembly Language High-level Language Read this article to get an overview of assembly language and high-level languages, and how they are different from each other. What is Assembly Language? Assembly language is ... Read More

902 Views
The business software industry is brimming with possibilities, each with its features and benefits. Great Plains and SAP are two of the most popular software packages. While both have a wide variety of capabilities, there are several major distinctions. Both Great Plains and SAP are enterprise resource planning (ERP) software. Microsoft created Great Plains, while a German corporation called SAP created SAP. Great Plains is for small to medium-sized organizations, whereas SAP is for large corporations. Great Plains is less expensive than SAP and can be installed more quickly, although it lacks several of SAP's sophisticated capabilities. Both ... Read More

2K+ Views
In this tutorial, we will learn how to check whether the number is positive or negative. This tutorial includes two ways to achieve this by using the built-in function Signbit() present in the math library. Another way is to use the relation operators using which we can compare a number with zero and predict whether the number is positive or not. Method 1: Using Signbit() function In this example, we are going to use the built-in function Signbit() present in the math library to check whether the number is positive or negative. Syntax Signbit() is a function in math library ... Read More

817 Views
This tutorial will teach us how to create a function with arguments and a return value. This tutorial involves a gist about the function, and syntax for the function with an argument and a return type in Golang, then last we will see two different examples of a function with arguments and with a return type. In one example we will return the sum of two numbers and in the other one, we will return the area of the circle. Functions in the Programming language. Let us first see what function is. The function is a subset of a program ... Read More

332 Views
This tutorial will teach us how to create a function with arguments but without a return value. This tutorial involves a gist about the function, and syntax for the function with argument and without return type in Golang, then last we will see two different examples of a function with arguments but without a return type. In the first example, we are going to print the argument passed in the function with the respective statement. In the other example, we are going to add the numbers passed as arguments and print the sum in the same function. Function with argument ... Read More

2K+ Views
This tutorial will teach us how to create a function without arguments and with a return value. This tutorial involves a gist about the function, and syntax for the function without an argument and with a return type in Golang, then last we will see two different examples of a function without arguments and with a return type. In both examples, we are going to create two functions which are returning a string whenever called. Function without argument and with a return type. SyntaxNow we will see the syntax and explanation for the function without an argument and with a ... Read More

292 Views
In this tutorial, we are going to see how we can write a simple recursive function Golang with the help of an algorithm and, examples. In the first example, we will print the number from 1 to N in ascending order similarly in the other example we are going to print the number from 1 to N in descending order. In terms of programming, a function is a recursive function if we are calling the function in the same function and have a base condition. Whenever the base condition is satisfied the calling of the function is stopped and we ... Read More

325 Views
In this tutorial, we will see how to find the Greatest common divisor of two numbers using the Golang language using recursion. We will see two ways to find the GCD of two numbers recursively. First will take more time where we are reducing the minimum of both numbers by 1 and then check if both the numbers are divisible by the min number or not. The second approach will take less time where we are subtracting the larger number from the smaller number until both numbers become equal. Algorithm Step 1 - Declaring the variables to store the ... Read More

2K+ Views
In this tutorial, we are going to see how we can return multiple values from the function in Golang with the help of an algorithm and examples. Like other programming languages like python, Golang also supports returning multiple values from a function. In the first, example we are going to pass two numbers in the function and return the smaller and then greater number together. In the second example we are passing two numbers and returning the addition, subtraction, multiplication, and division at once. Syntax Func functionName(arguments) (returnType1, returnType2, …) { // logic ... Read More