Skip to content

Java Vogue

Java Tutorials

  • All Tutorials
  • Java
  • Java8
  • Spring Boot
  • Microservices
  • Spring
  • Hibernate
  • Reactjs
  • Interview Question
  • Contact

Author: javavogue

January 21, 2015 javavogue

Find absolute value of any number

the absolute value (or modulus) |x|of a real number x is the non-negative value of xwithout regard to its sign. If number

Continue reading
January 17, 2015 javavogue

Reverse string in java

Reverse string in java means that swap first character with last and second character with second last and so on

Continue reading
January 17, 2015 javavogue

Java Program to Find Duplicate Characters in a String

To find duplicate characters in a string java we have two method . We can find repeated characters in a

Continue reading
January 17, 2015 javavogue

Permutation of a number

Find all permutation of a number public class permutation { void    doPermutation(char [] str,int i,int n){ if (i==n) { for

Continue reading
January 17, 2015 javavogue

Features of arrays in Java

 Features of arrays in Java : 1. Stores similar data types. 2. Contiguous (continuous) memory is allocated for the elements.

Continue reading
January 17, 2015 javavogue

How to Split String in Java : Split() String Method Example

Split the string in java is important frequency asked questions . Because In our application we need to spit string

Continue reading
January 17, 2015 javavogue

Java Program To Find LCM of Two Numbers

We will discuss how to find LCM of Two Numbers In Java in this article . We have different methods to

Continue reading
January 17, 2015 javavogue

How to Convert String into int In Java

Convert string into int or respectively wrapper class Integer is very simple and common operation . During of development in

Continue reading
January 17, 2015 javavogue

Call by value and call by reference in java

 In java there is only call by value is possible. We achieve call by reference using call by object in

Continue reading
January 17, 2015 javavogue

Swap two Strings without using third Variable In Java

In this tutorial we will learn how to swap two strings without using third variable in java . We will

Continue reading

Posts navigation

«Previous Posts 1 … 32 33 34 35 Next Posts»

Recent Posts

  • Java Program to display student details Using Class and Object
  • TreeMap floorEntry() method in Java
  • Check If Int is Null In Java
  • Java Math min() method example
  • TreeMap ceilingKey() method in Java

Popular Posts

  • How to Read value From application.properties in spring boot
  • ‘Field required a bean of type that could not be found.’ error spring restful API
  • How to Reload Changes Without Restarting the Server – Spring Boot
  • No converter found for return value of type: org.springframework.http.converter.HttpMessageNotWritableException: No converter found
  • Spring Boot @ConfigurationProperties Property Validation
hi