Author: Arpit Mandliya
- 04 May
Convert Character to ASCII Numeric Value in Java
Learn about how to convert Character to ASCII Numeric Value in Java.
- 03 May
How to return array from function in C++?
Learn about how to return array from function in C++
- 03 May
Convert string to int in C++
Learn about how to convert string to int in C++ in different ways
- 02 May
Check if String Is Number in C++
1. Introduction to the Problem Statement In C++ programming, a common task is determining whether a given string represents a valid number. This challenge can arise in various contexts, such as input validation, data parsing, or before performing arithmetic operations. Our Goal: To check if a string like "123" or "45.67" is a valid number. […]
- 02 May
7 ways to print float to 2 decimal places in java
Learn about how to print float to 2 decimal places in java in 7 different ways.
- 21 April
How to Concatenate String and Int in C++
Learn about how to concatenate string and int in C++ in different ways.
- 16 April
Top 40+ Hibernate interview questions and answers
Hibernate is most popular Object relational Mapping (ORM) framework and if you have used hibernate and has good experience on it, then you may face good hibernate interview questions. I am sharing some important hibernate interview questions here. 1. What is ORM? ORM stands for Object Relational mapping. It is programming paradigm which is used […]
- 16 April
Data Structures in java
In this post, we will see about various data structures in java. Data structure is a way of storing and organizing data. Data structure provide a way to process and store data efficiently. For example: Imagine you have pile of books on the table and you are going to read these books one by one […]