Programming

Your first C program in Ubuntu

Your first C program in Ubuntu

C, programming language was designed by Dennis Ritchie. We have already discussed how to compile a C program in Ubuntu distribution. In this article, we would focus on how to write your first C program. Open a text editor in terminal, we have used nano – nano first-code.c And, insert the following code in it …

Your first C program in Ubuntu Read More »

Compile C Program in Ubuntu

Compile C Program in Ubuntu

In this article, we would focus on how to compile C Program in Ubuntu distribution. C is a programming language designed by Dennis Ritchie. It was first released in the year 1972. The programming language can be implemented on multiple platforms. We would first write a basic C program and thereafter, compile it through GCC …

Compile C Program in Ubuntu Read More »

Use Jupyter Notebook for writing Python programs

Use Jupyter Notebook for writing Python programs

In this article, we would focus on how to use Jupyter Notebook for writing Python programs. Jupyter Notebook provides us a REPL (read-evaluate-print-loop) shell. The shell opens inside a web browser. Furthermore, it supports numerous programming languages. Notebook server is one of three main components of Jupyter Notebook. The other two are – browser and …

Use Jupyter Notebook for writing Python programs Read More »

Install and Setup Jupyter Notebook for Python in Ubuntu

Install and Setup Jupyter Notebook for Python in Ubuntu

In this article, we would discuss how to install and setup Jupyter Notebook for Python programming language in Ubuntu. A Jupyter Notebook enables us to have a browser-based REPL (read-evaluate-print-loop) shell. It supports many programming languages including Python, R, Haskell and Julia. Through Jupyter Notebook, we can run our code & store its output in …

Install and Setup Jupyter Notebook for Python in Ubuntu Read More »

Your first Python program

Your first Python program

In this article, we would discuss how to write/execute your first Python program. First, we will discuss input() function which is used to get the input from the user. Later, modules will be imported for arithmetic operations. Lastly, print() function – to display the results. We have used Python v3.7.4. Ubuntu users get the latest …

Your first Python program Read More »

Your first Java Program

Your first Java Program

There are two items you will need to write your first Java program. These are: OpenJDK Development Kit (JDK) A text editor – vim, nano, featherpad, gedit etc. If you haven’t yet installed OpenJDK Development Kit (JDK), then you may look how to install one here. Next, you need to open your text editor and …

Your first Java Program Read More »

Code Comments in Kotlin

Code Comments in Kotlin

It is imperative to for us understand code comments before we delve further to understand basics of Kotlin. Developers who have worked on large projects do understand the need of code comments. Understand from the perspective of a developer, who have recently been asked to fix a project. If the project contained few lines of …

Code Comments in Kotlin Read More »

Scroll to Top