BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java Math.multiplyExact() Method

Last Updated: October 13, 2022 by Chaitanya Singh | Filed Under: java

Java Math multiplyExact() method returns the product of its arguments. In this tutorial, we will discuss multiplyExact() method with examples. public class JavaExample { public… [Read More]

Tags: Java Math

Java Math.subtractExact() Method

Last Updated: October 11, 2022 by Chaitanya Singh | Filed Under: java

Java Math.subtractExact() method returns the difference of its arguments. It subtracts the value of second argument from the first argument and returns the result. public… [Read More]

Tags: Java Math

Java Math.addExact() Method

Last Updated: October 11, 2022 by Chaitanya Singh | Filed Under: java

Java Math.addExact() method returns sum of its arguments. public class JavaExample { public static void main(String[] args) { int i = 10, i2 = 20;… [Read More]

Tags: Java Math

Java Math.nextDown() Method

Last Updated: October 11, 2022 by Chaitanya Singh | Filed Under: java

Java Math.nextDown() method returns floating point number adjacent to the passed argument, in the direction of negative infinity. public class JavaExample { public static void… [Read More]

Tags: Java Math

Java Math.nextUp() Method

Last Updated: October 11, 2022 by Chaitanya Singh | Filed Under: java

Java Math.nextUp() method returns floating point number adjacent to the passed argument, in the direction of positive infinity. public class JavaExample { public static void… [Read More]

Tags: Java Math

Java Math.nextAfter() Method

Last Updated: October 11, 2022 by Chaitanya Singh | Filed Under: java

Java Math.nextAfter() method returns the floating point number adjacent to the first argument, in the direction of second argument. public class JavaExample { public static… [Read More]

Tags: Java Math

Java Math.copySign() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.copySign() method returns the first argument with the sign of second argument. In simple words, it copies the sign of second argument and replaces… [Read More]

Tags: Java Math

Java Math.ceil() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.ceil() method returns the closest integer value, which is greater than or equal to the given value. For example, Math.ceil(9.9) would return 10. In… [Read More]

Tags: Java Math

Java Math.signum() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.signum() method returns the signum function of passed argument. If the argument is zero, it returns zero. If argument is negative, it returns -1.0…. [Read More]

Tags: Java Math

Java Math.pow() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.pow() method returns, first argument raised to the power of second argument. For example, Math.pow(3, 2) returns 9. In this tutorial, we will discuss… [Read More]

Tags: Java Math

Java Math.cbrt() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.cbrt() method returns cube root of a given double value. In this guide, we will discuss cbrt() method with examples. public class JavaExample {… [Read More]

Tags: Java Math

Java Math.sqrt() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.sqrt() method returns the square root of a given number. In this guide, we will discuss sqrt() method in detail with examples. public class… [Read More]

Tags: Java Math

Java Math.round() Method

Last Updated: October 8, 2022 by Chaitanya Singh | Filed Under: java

Java Math.round() method returns closest number to the passed argument. For example, Math.round(15.75) would return 16. In this tutorial, we will discuss the round() method… [Read More]

Tags: Java Math

Java Math.min() Method

Last Updated: October 9, 2022 by Chaitanya Singh | Filed Under: java

Java Math.min() method returns the smaller number between two numbers passed as arguments. In this tutorial, we will discuss Math.min() method with examples. public class… [Read More]

Tags: Java Math

Java Math.max() Method

Last Updated: October 8, 2022 by Chaitanya Singh | Filed Under: java

Java Math.max() returns the greater number between two passed numbers. In this tutorial, we will discuss this method in detail with the help of examples…. [Read More]

Tags: Java Math

  • « Previous Page
  • 1
  • 2
  • 3
  • 4
  • Next Page »

Java Tutorial

Java Introduction

  • Java Index
  • Java Introduction
  • History of Java
  • Features of Java
  • C++ vs Java
  • JDK vs JRE vs JVM
  • JVM - Java Virtual Machine
  • First Java Program
  • Variables
  • Data Types
  • Operators

Java Flow Control

  • Java If-else
  • Java Switch-Case
  • Java For loop
  • Java while loop
  • Java do-while loop
  • Continue statement
  • break statement

Java Arrays

  • Java Arrays

OOPs Concepts

  • OOPs Concepts
  • Constructor
  • Java String
  • Static keyword
  • Inheritance
  • Types of inheritance
  • Aggregation
  • Association
  • Super Keyword
  • Method overloading
  • Method overriding
  • Overloading vs Overriding
  • Polymorphism
  • Types of polymorphism
  • Static and dynamic binding
  • Abstract class and methods
  • Interface
  • Abstract class vs interface
  • Encapsulation
  • Packages
  • Access modifiers
  • Garbage Collection
  • Inner classes
  • Static import
  • Static constructor

Java Exception Handling

  • Exception handling
  • Java try-catch
  • Java throw
  • Java throws
  • Checked and Unchecked Exceptions
  • Jav try catch finally
  • Exception Examples
  • Exception Propagation

Collections Framework

  • Collections in Java
  • Java ArrayList
  • Java LinkedList
  • Java Vector
  • Java HashSet
  • Java LinkedHashSet
  • Java TreeSet
  • Java HashMap
  • Java TreeMap
  • Java LinkedHashMap
  • Java Queue
  • Java PriorityQueue
  • Java Deque
  • Comparable interface
  • Comparator interface
  • Collections Interview Questions

MORE ...

  • Java Scanner Class
  • Java 8 Features
  • Java 9 Features
  • Java Conversion
  • Java Date
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations
  • Java main method
  • Java Interview Q

Copyright © 2012 – 2025 BeginnersBook . Privacy Policy . Sitemap