Assigning a value of one primitive data type to another primitive data type is known as casting. There are two types of type casting in… [Read More]
DBMS 5NF
A relation is said to be in 5NF, if it satisfies the following conditions: It is in 4NF. It cannot be further broken down to… [Read More]
DBMS 4NF
A relation is in 4NF if it satisfies the following conditions: It is in BCNF (Boyce Codd Normal Form). It does not have any multi-valued… [Read More]
Java Integer min() Method
The min() method of Integer class, returns smaller of two int numbers passed as arguments to this method. It works similar to Math.min() method. Hierarchy:… [Read More]
Java Integer max() Method
The max() method returns greater of two int numbers passed as arguments to this method. It works similar to Math.max() method. Hierarchy: java.lang Package ->… [Read More]
Java Integer lowestOneBit() Method
The lowestOneBit() method of Integer class, returns an int value with a single one bit in the position of the lowest order. This is determined… [Read More]
Java Integer highestOneBit() Method
The highestOneBit() method of Integer class, returns an int value with a single one bit in the position of the highest order. This is determined… [Read More]
Java Integer hashCode() Method
The hashCode() method returns a hash code for the given integer value. Syntax of hashCode() method The following variation of hashCode() method does not accept… [Read More]
Java Integer getInteger() Method
The getInteger() method of Integer class, returns the integer value of the system property with the specified property name. Hierarchy: java.lang Package -> Integer Class… [Read More]
Java Integer floatValue() Method
Java Integer floatValue() method returns the value of this Integer object as float after performing widening primitive conversion (Integer -> float). Hierarchy: java.lang Package ->… [Read More]
- « Previous Page
- 1
- …
- 9
- 10
- 11
- 12
- 13
- …
- 150
- Next Page »