Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.3K+ articles
how-to-install
1.2K+ articles
Go Language
764+ articles
Golang
169+ articles
Spotlight
132+ articles
Go-Keywords
7+ articles
Go-Basics
8 posts
Recent Articles
Popular Articles
Hello World in Golang
Last Updated: 12 July 2025
Hello, World! is the first basic program in any programming language. Let’s write the first program in the Go Language using the following steps:First of all open Go compi...
read more
Go Language
Go-Basics
Golang
Spotlight
Type Casting or Type Conversion in Golang
Last Updated: 12 July 2025
Prerequisite: Golang Data TypesType conversion happens when we assign the value of one data type to another. Statically typed languages like C/C++, Java, provide the suppo...
read more
Go Language
Go-Basics
Golang
Scope of Variables in Go
Last Updated: 12 July 2025
Prerequisite: Variables in Go Programming Language The scope of a variable defines the part of the program where that variable is accessible. In Go, all identifiers are l...
read more
Go Language
Go-Basics
Golang
How to Install Go on Windows?
Last Updated: 12 July 2025
Prerequisite: Introduction to Go Programming LanguageBefore, we start with the process of Installing Golang on our System. We must have first-hand knowledge of What the Go...
read more
Go Language
Go-Basics
Golang
how-to-install
Data Types in Go
Last Updated: 11 July 2025
Data types specify the type of data that a valid Go variable can hold. In Go language, the type is divided into four categories which are as follows:Basic type: Numbers, s...
read more
Go Language
Go-Basics
Golang
Go Keywords
Last Updated: 03 February 2020
Keywords or Reserved words are the words in a language that are used for some internal process or represent some predefined actions. These words are therefore not allowed ...
read more
Go Language
Go-Basics
Go-Keywords
Golang
Identifiers in Go Language
Last Updated: 20 September 2023
In programming languages, identifiers are used for identification purposes. In other words, identifiers are the user-defined names of the program components. In the Go lan...
read more
Go Language
Go-Basics
Golang
Go Variables
Last Updated: 09 May 2023
A typical program uses various values that may change during its execution. For Example, a program that performs some operations on the values entered by the user. The val...
read more
Go Language
Go-Basics
Golang