Posts by Yashas

Author Biographical Info: Not available

Pointers and references in C++

By Yashas

In this tutorial, we will learn about pointers and references in C++. Pointers are one of the powerful features of C++. Pointers are used to access and manipulate addresses. Everyt.... Read More

Singly Linked Lists in C++

By Yashas

In this tutorial, we will learn everything about Singly Linked Lists in C++. We will learn the following – What are Singly Linked lists? How are they created? Different opera.... Read More

Doubly Linked Lists in C++

By Yashas

In this tutorial, we will learn about Doubly Linked Lists in C++. We will learn the following – What are Doubly Linked Lists(DLL)? Advantages and disadvantages of DLL of Sing.... Read More

Handling click events on Android

By Yashas

In this tutorial, we will learn about handling click events on Android. There are 2 ways to handle click events of a button on Android – onClick in XML layout Using an onClic.... Read More

Multithreading in Java

By Yashas

In this tutorial, we will learn about threads and multithreading in Java. We will learn the following in the following tutorial What are threads? What is multithreading? Some e.... Read More

How to compare two strings in Java

By Yashas

In this tutorial, we will learn how to compare two strings in Java. There are different ways to do that – 1. By using String.equals() method 2. By using compareTo()  method .... Read More

The fork() system call using C++ in Linux

By Yashas

In this tutorial, we will learn what fork() system call does and how it is implemented in Linux systems (only). There are some example questions to help you understand better. What.... Read More

How to break a string into characters in Java?

By Yashas

In this tutorial, we will learn how to break(or split) a String into characters. The end result can be an array of characters or an array of Strings which contain characters. Below.... Read More