REST-assured is an Open Source Java library which is used to test and validate REST APIs. Dynamic languages like Groovy , Ruby are helpful in API testing which was harder in Java. We have a famous Java library named Apache Http Client which is also used to do API Testing but it requires a lot …
Continue reading Overview about RestAssuredbloggersantosh1097
A class that represents an immutable universally unique identifier (UUID). A UUID represents a 128-bit value. There exist different variants of these global identifiers.
Continue reading UUID class in javaScanner is a class in java.util package used for obtaining the input of the primitive types like int, double, etc. and strings. It is the easiest way to read input in a Java program, To create an object of Scanner class, we usually pass the predefined object System.in, which represents the standard input stream. We …
Continue reading Scanner Class in JavaFibonacci Series The Fibonacci series is a series where the next term is the sum of the previous two terms. The first two terms of the Fibonacci sequence are 0 followed by 1 Program to print fibonacci series using for loop Fibonacci series up to a given number (instead of terms)
Continue reading Program to Display Fibonacci SeriesUsing Java Find Factorial of a number using for loop
Continue reading Program to Find Factorial of a Number