Get the Maximum of Two Numbers Using Math.max in Java

George John
Updated on 26-Jun-2020 10:03:08

1K+ Views

To obtain the maximum of two numbers using Math.max in Java, we use the java.lang.Math.max() method. The Math.max() accepts two numbers and returns the greater of the two. The result is closer to positive infinity on the number line. Even if one of the values is not a number(NaN), the result is NaN.Declaration - The java.lang.Math.max() method is declared as follows −public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b)Let us see a program to get the maximum of two numbers ... Read More

Compare Two Boolean Arrays in Java

Samual Sam
Updated on 26-Jun-2020 10:03:06

246 Views

Use Arrays.equals() method to compare two Boolean Arrays. Let us first create some arrays to be compared. For using this method, you need to import the following package −import java.util.Arrays;We have 4 arrays and value “true” and “false” are assigned to them.boolean[] myArr1 = new boolean[] { true, false, true, true, true }; boolean[] myArr2 = new boolean[] { true, false, true, true , true }; boolean[] myArr3 = new boolean[] { false, false, true, true, true }; boolean[] myArr4 = new boolean[] { true, false, false, true , false };Now, let us compare Boolean arrays 1 and 2.Arrays.equals(myArr1, myArr2);In ... Read More

Zip Entry CompressionMethod Function in PHP

karthikeya Boyini
Updated on 26-Jun-2020 10:02:29

61 Views

The zip_entry_compressionmethod() function returns the compression method of a zip archive entry.Syntaxzip_entry_compressionmethod()Parameterszip_entry − The zip entry resource. Required.ReturnThe zip_entry_compressionmethod() function returns the compression method of a zip archive entry.The following is an example. Let’s say we have 3 files in our zip archive "new.txt", therefore the compression method for all of these files will get displayed.ExampleOutputCompression Method = deflated Compression Method = deflated Compression Method = deflated

Get Natural Logarithm Value Using Math.log in Java

Chandu yadav
Updated on 26-Jun-2020 10:02:10

3K+ Views

To obtain the natural log of a number, we use the java.lang.Math.log() method. The Math.log() method returns the natural logarithm i.e. log to the base e of a double value. If the value passed is NaN or negative, the result is NaN. If the value passed is positive infinity, then the value returned is positive infinity. When the parameter is positive zero or negative zero, then negative infinity is returned.Declaration - The java.lang.Math.log() method is declared as followspublic static double log(double a)where a is a value whose natural logarithm is to be found.Let us see a program to get the ... Read More

ZipEntry FileSize Function in PHP

Samual Sam
Updated on 26-Jun-2020 10:01:55

98 Views

The zip_entry_filesize() function returns the file size before compression i.e. the actual file size is returned.Syntaxzip_entry_filesize(zip_entry)Parameterszip_entry − A zip file opened with zip_open() is to be mentioned here.ReturnThe zip_entry_filesize() function returns the file size before compression i.e. the actual file size is returned.Example

Get Power Using Math.pow in Java

Arjun Thakur
Updated on 26-Jun-2020 10:01:34

571 Views

In order to get the power of a number in Java, we use the java.lang.Math.pow() method. The Math.pow(double a, double b) method accepts two arguments of the double data type and returns a value of the first parameter raised to the power of the second argument.Declaration - The java.lang.Math.pow() method is declared as follows −public static double pow(double a, double b)where a is the base and b is the power to which the base is raised.Let us see a program where we find the power of a number using Math.pow() methodExample Live Demoimport java.lang.Math; public class Example {    public static ... Read More

Get Square Root of a Number Using Math.sqrt() in Java

Ankith Reddy
Updated on 26-Jun-2020 10:00:56

1K+ Views

In order to get the square root of a number in Java, we use the java.lang.Math.pow() method. The Math.pow(double a) method accepts one argument of the double data type and returns a value which is the square root of the argument.Declaration − The java.lang.Math.sqrt() method is declared as follows −public static double sqrt(double a)where a is the number whose square root is to be found.Let us see a program where we find the square root of number using the Math.sqrt() method.Example Live Demoimport java.lang.Math; public class Example {    public static void main(String[] args) {       // declaring and ... Read More

Round Float and Double Numbers in Java

George John
Updated on 26-Jun-2020 10:00:20

10K+ Views

In order to round float and double numbers in Java, we use the java.lang.Math.round() method. The method accepts either double or float values and returns an integer value. It returns the closest integer to number. This is computed by adding ½ to the number and then flooring it.Declaration - The java.lang.Math.round() method is declared as follows −public static int round(float a) public static int round(double a)where a is the value to be rounded.Let us see a program where float and double numbers are rounded in Java.Example Live Demoimport java.lang.Math; public class Example {    public static void main(String[] args) {   ... Read More

Get Hyperbolic Cosine of a Given Value in Java

Chandu yadav
Updated on 26-Jun-2020 09:59:19

206 Views

In order to get the hyperbolic cosine of a given value in Java, we use the java.lang.Math.cosh() method. The cosh() method accepts an argument in radians and returns the hyperbolic cosine of the argument which acts as the angle.Declaration − - The java.lang.Math.cosh() is declared as follows −public static double cosh(double x)where x is the angle in radians.Let us see a program to get the hyperbolic cosine of a given value in Java.Example Live Demoimport java.lang.Math; public class Example {    public static void main(String[] args) {       // get two double numbers in degrees       double ... Read More

Get ENUM Possible Values in MySQL Database Using PHP

Samual Sam
Updated on 26-Jun-2020 09:59:16

2K+ Views

You can get the enum possible values in a MySQL database with the help of INFORMATION_SCHEMA.COLUMNS table. The syntax is as follows −SELECT    COLUMN_TYPE AS anyAliasName FROM    INFORMATION_SCHEMA.COLUMNS WHERE    TABLE_SCHEMA = ‘yourDatabaseName’ AND TABLE_NAME = 'yourTableName' AND COLUMN_NAME = 'yourEnumColumnName';To understand the above syntax, let us create a table with an ENUM data type. The query to create a table is as follows −mysql> create table EnumDemo -> ( -> Id int, -> Color ENUM('RED', 'GREEN', 'BLUE', 'BLACK', 'ORANGE') -> ); Query OK, 0 rows affected (0.66 sec)Here the table ‘EnumDemo’ is present in the ‘sample’ database. ... Read More

Advertisements