Go - (7) Maps

Maps A collection of key-value pairs You can initialize maps like below. ⛶students := make(map[string]int) students["SE"] = 100 students["BA"] = 73 students["DA"] = 49 age...
0 Read More

Go - (8) Advanced Functions

Higher Order Functions (HOF) We can pass functions as data to another function. A function that takes in another function as a parameter or returns another function is called a Higher-order f...
0 Read More

Go - (9) Pointers

Pointers Here we talk about the usage of Pointers in Golang. We don't discuss pointer theories. A pointer stores the memory address of another variable. ⛶x := 5 // value of x is 5 y := x /...
0 Read More

Computer Networks

Since yesterday, I have begun studying the fundamentals of computer networks. I would like to express my sincere gratitude to Professor Claudio Zunino and Neso Academy for their valuable guidance and ...
0 Read More