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

Java Program to detect USB Device

By Krishna Lakhi

Hey Everyone! In this article, we will learn how to detect a USB device in Java that is inserted into a PC/laptop. We know that the external USB inserted into the PC/laptop is dete.... 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

Python program to find the number of trailing zero in factorial of a large number

By Bipin Kumar

In this tutorial, We will see how to find the number of trailing zero in factorial of a large number in Python. A solution that comes to our mind is to just find factorial of a la.... Read More

How to check a list contains only unique elements or not in the Python

By Bipin Kumar

In this tutorial, we will see the Python program to check if a list contains unique elements or not. A list will be provided by the user which may have repetitions of elements or .... Read More

Python program to find the missing term of any Arithmetic progression

By Bipin Kumar

In this tutorial, We will see the Python program to find the missing term of any Arithmetic progression. In this type of problem, An array given by the user that represent the el.... Read More

Python program to find out or detect the mobile number from the given paragraph or string

By Bipin Kumar

In this tutorial, we will see how to find out or detect the mobile/phone number from a given paragraph in the Python program. To solve this problem, we will use the re module in .... Read More

Related Posts