Categories for Programming

Java Development Kit 9: What to Expect

April 1, 2016 4:47 pm Published by

Java Standard Edition (SE) 8 was initially released on March 18, 2014, introducing several features into the general-purpose programming language, some of which includes language-level support for lambda expressions, a runtime environment in which developers can embed JavaScript code, annotation...

Read More

How to use Interfaces in Golang

January 17, 2016 8:54 am Published by

Welcome to Golang certification class number 19—How to use interfaces in Golang programming. Today, we’ll be discussing how you can define and use interfaces in Golang programming. Let’s begin by discussing why interfaces are necessary in programming. An interface is...

Read More

Looping with Golang’s Maps

January 16, 2016 1:53 am Published by

We’ve so far discussed how you can declare and initialize maps in Golang. In this blog post, we discuss how you can use loops to implement your Golang maps. We use loops in maps to initialize a block of several...

Read More

Looping with Golang’s Arrays and Slices

January 15, 2016 12:41 pm Published by

We’ve so far discussed how you can declare and initialize arrays and slices in Golang. In this blog post, we discuss how you can use loops to initialize your arrays and slices. Why do we need loops when initializing some...

Read More

A Guide to Golang’s Maps

January 14, 2016 12:02 pm Published by

In our previous blogs, we’ve discussed Golang’s data types, arrays and slices. In this tutorial, we present a one more in-built type—the maps. By the end of the class, you should have learnt how to use maps in your Golang...

Read More