How to Detect Screen Resolution of a Device in Java

By Anirudh Jakhotia

Hello learners!. In this tutorial, we will know how to detect the screen resolution of a device in Java. Detect Screen Resolution of a Device in Java Firstly, We use the Java Toolk.... Read More

Convert Java object to JSON string

By Kratika Jain

In this tutorial, we will learn about how to convert Java object to JSON string in Java. Before starting with this tutorial we should know about the basics of  JSON. Java object t.... Read More

Convert date to timestamp in Python

By Manam Sampath Kumar Reddy

In many Databases date and time are stored in timestamp format. Converting date and time from strings format into timestamp format we can do this using Python. We mostly encounter .... Read More

Bidirectional Hash table or Two way dictionary in Python

By Sai Mukesh Reddy Gutha

Hey Geek! In this tutorial, we will implement a two-way dictionary or a bidirectional hashmap in Python. Before getting started you need to be familiar with the dictionary data str.... Read More

From dividing line to Support Vector Machines in Python

By Premkumar Vemula

A simple dividing line is used to make predictions on simple 2D data where we have a dependent variable and an independent variable. A line can be drawn according to the relation b.... Read More

How to reverse a string in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to reverse a string in JavaScript. Reversing a string in JavaScript Variables used in the code  str – the name of the variable where we s.... Read More

Extract speech text from video in Python

By Krushna Borse

In this tutorial, we are going to see how to Extract speech text from a video in Python. We are going to extract the audio content from the video clip. And then we will convert tha.... Read More

Convert NumPy array to list in Python

By Khushi Aswani

In this tutorial, we will be learning how to convert a NumPy array into a list in Python. It is very simple, you just need to use a basic syntax as: mylist = myarr.tolist() Steps y.... Read More