Saumya Srivastava has Published 12 Articles

Golang program to Calculate the Volume, Diagonal and Area of a Cuboid?

Saumya Srivastava

Saumya Srivastava

Updated on 28-Dec-2022 12:18:31

170 Views

In this tutorial, we will discuss the approach to calculating the volume, diagonal and area of a cuboid using its length, breadth and height. But before writing its Golang code, let’s briefly discuss the cuboid and its volume, diagonal and area. Cuboid A cuboid is a three−dimensional figure with six ... Read More

Golang program to print a 2D array?

Saumya Srivastava

Saumya Srivastava

Updated on 28-Dec-2022 12:10:20

860 Views

Two−dimensional arrays are commonly used in Go. For example, storing data in a table requires a 2D array. In this tutorial, we will be discussing the approach to printing a 2D array in Golang programming. But before writing this code, let’s briefly discuss the two−dimensional array. What is a 2D ... Read More

Golang program to print an array?

Saumya Srivastava

Saumya Srivastava

Updated on 28-Dec-2022 12:06:41

2K+ Views

Data plays an essential role when we write programs. It can be stored in multiple ways. For storing a collection of data with the same data type, an array can be used. In this tutorial, we will be discussing the approach to printing an array in Golang programming. But before ... Read More

Golang Program to Create a Simple Class?

Saumya Srivastava

Saumya Srivastava

Updated on 28-Dec-2022 11:58:59

468 Views

In this tutorial, we will be discussing the approach to creating a simple class in Golang programming. However, before writing the code for this, let’s briefly discuss the concept of class. What is Class? A class is a template or blueprint for creating objects. A class binds together all the ... Read More

Golang program to find the area of a rectangle

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:56:16

447 Views

This tutorial will discuss how to find the area of a rectangle in Golang programming using two methods − Area of the rectangle using length and breadth Area of the rectangle using diagonal and breadth Rectangle A rectangle is a two-dimensional shape that has four sides. The opposite ... Read More

Golang program to calculate the volume of a cube

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:51:26

195 Views

In this tutorial, we will be discussing the approach to finding the volume of a cube in Golang programming using the sides of the cube. But before writing the code for this, let’s briefly discuss the cube and its volume. Cube A cube is a three-dimensional figure that has ... Read More

Golang program to calculate the volume and area of the Cylinder

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:38:05

150 Views

In this tutorial, we will be discussing the approach to calculate the volume and area of a cylinder in Golang programming using its height and radius. But before writing the code for this, let’s briefly discuss the cylinder and its volume and area. Cylinder A cylinder is a ... Read More

Golang program to calculate the volume and area of a Sphere

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:33:21

142 Views

In this tutorial, we will be discussing the approach to calculate the volume and area of a sphere using its radius in Golang programming. But before writing the code for this, let’s briefly discuss the sphere and its volume and area. Sphere A sphere is a three-dimensional figure ... Read More

Golang program to calculate the volume and area of a Cone

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:29:08

196 Views

In this tutorial, we will be discussing the approach to calculate the volume and area of a cone using its height and radius in Golang programming. But before writing the code for this, let’s briefly discuss the cone and its volume and area. Cone A cone is a three-dimensional figure ... Read More

Golang program to calculate the sum of all odd numbers up to N

Saumya Srivastava

Saumya Srivastava

Updated on 21-Nov-2022 06:26:06

362 Views

In this tutorial, we will be discussing the program to find the sum of all odd numbers up to ‘N’ in Golang programming. But before writing the code for this, let’s have a brief discussion on odd numbers. Odd Numbers An odd number is a number that is not completely ... Read More

Advertisements