Convert a string to a number in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to convert a string to a number in JavaScript. In projects, it is often needed to convert number formatted string into integer formatted number .... Read More

lower_bound() and upper_bound() in Vector of Pairs in C++

By Joyeeta Choubey

Hi folks! In this tutorial, we are going to learn and implement lower_bound () and upper_bound() in the vector of pairs in C++. Before moving forward let’s have a look at wha.... Read More

vector :: cbegin() and vector :: cend() in C++

By Joyeeta Choubey

Hello folks! In this tutorial, we are going to learn what are vectors and also learn about the functions vector::cbegin() and vector::cend() in C++ program. Vectors are known as dy.... Read More

Sort a list using stream.sorted() in Java

By Kratika Jain

In this tutorial, we will learn about How to sort a list using stream.sorted() in Java. Before getting into the coding let’s know about java 8.  Introduction to Java 8 Java .... Read More

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

Related Posts