Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Java-Functions
4.2K+ articles
java-guava
153+ articles
Guava-Functions
71+ articles
Guava-IntMath
7 posts
Recent Articles
Java Guava | IntMath.checkedPow(int b, int k) method with Examples
Last Updated: 11 July 2025
checkedPow(int b, int k) is a method of Guava's IntMath Class which accepts two parameters b and k and is used to find the k-th power of b. Syntax:public static int checke...
read more
Java
java-guava
Guava-Functions
Guava-IntMath
Java Guava | IntMath.divide(int, int, RoundingMode) method with Examples
Last Updated: 11 July 2025
The divide(int p, int q, RoundingMode mode) method of Guava's IntMath Class accepts three parameters and calculates the result of dividing first parameter by second parame...
read more
Java
java-guava
Guava-Functions
Guava-IntMath
Java Guava | IntMath.checkedMultiply(int a, int b) method with Examples
Last Updated: 11 July 2025
The checkedMultiply(int a, int b) is a method of Guava's IntMath Class which accepts two parameters a and b, and returns their product.Syntax:public static int checkedMult...
read more
Java
java-guava
Guava-Functions
Guava-IntMath
Java Guava | IntMath.checkedSubtract(int a, int b) method with Examples
Last Updated: 11 July 2025
The checkedSubtract(int a, int b) is a method of Guava's IntMath Class which accepts two parameters a and b, and returns their difference.Syntax:public static int checkedS...
read more
Java
java-guava
Guava-Functions
Guava-IntMath
Java Guava | IntMath.checkedAdd(int a, int b) method with Examples
Last Updated: 11 July 2025
The checkedAdd(int a, int b) is a method of Guava's IntMath Class which accepts two parameters a and b, and returns their sum.Syntax:public static int checkedAdd(int a, in...
read more
Java
java-guava
Guava-Functions
Guava-IntMath
Java Guava | IntMath log10(int x, RoundingMode mode) method with Examples
Last Updated: 11 July 2025
The log10(int x, RoundingMode mode) method of Guava’s IntMath Class accepts two parameters and calculates the base-10 logarithmic value of the first parameter rounded acco...
read more
Java
Java-Functions
java-guava
Guava-IntMath
Java Guava | gcd(int a, int b) method of IntMath Class
Last Updated: 11 July 2025
The method gcd(int a, int b) of Guava's IntMath class returns the greatest common divisor of a, b.Syntax :public static int gcd(int a, int b)Where a and b are integers.Ret...
read more
Misc
Java
Java-Functions
java-guava
Guava-IntMath