
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
Akhil Sharma has Published 671 Articles

Akhil Sharma
461 Views
In this tutorial, we will write a program to print an upper star triangle pattern in go language. In an upper star triangle pattern, there can be only one star printed in the first row and the base must be at the bottom. Printing Upper Star Triangle Pattern In Go ... Read More

Akhil Sharma
205 Views
In this article, we will write a go language program to interchange the diagonal elements of a matrix. Exchange the diagonal elements of a matrix using an external function In this program, we will write a go language program to interchange the diagonal elements of a 3 X 3 matrix ... Read More

Akhil Sharma
142 Views
In this article, we will write a go language program to interchange elements of first and last row in a matrix. Interchange Elements Of The First And Last Row In A Matrix Using An External Function In this program, we will write a go language program to interchange the elements ... Read More

Akhil Sharma
199 Views
In this article, we will write a go language program to interchange elements of the first and last column in a matrix. Interchange Elements Of The First And Last Column In A Matrix Using An External Function In this program, we will write a go language program to interchange the ... Read More

Akhil Sharma
556 Views
In this article, we will write a go language program to find the transpose of a matrix. A matrix is a collection of numbers that are arranged in rows and columns, which is a two-dimensional array. Find The Transpose Of A Matrix The following code illustrates an example to find ... Read More

Akhil Sharma
158 Views
In this tutorial, we will write an article to find the normal and trace of a matrix. A matrix is considered normal if its square root equals the sum of the squares of each member and the trace is the total of a matrix's diagonal elements. Golang Program To Find ... Read More

Akhil Sharma
912 Views
In this tutorial, we will see to write a go language program to find common elements in two arrays. Find Common Array Elements Using User-Defined Function The following code illustrates how we can find the common elements in two different arrays of strings. Algorithm Step 1 − import the fmt ... Read More

Akhil Sharma
1K+ Views
In this tutorial, we will see to write a go language program to copy all the elements of one array to another array. Copy All The Elements Of One Array To Another Array Using Equality Operator Let us now look at a go language code to copy all the elements ... Read More

Akhil Sharma
393 Views
The product of two numbers is the result you get when you multiply them together. So 15 is the product of 3 and 5 and 22 is the product of 2 and 11 and so on. A Recursion is where a function calls itself by direct or indirect means. ... Read More

Akhil Sharma
915 Views
In this tutorial program, we will learn how to display the factors of a given number in the Go programming language. A factor of a number is defined as the algebraic expression that divides any given number evenly, with its remainder being zero. All composite numbers will have more than ... Read More