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 Integer parseInt()Method

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

Java Integer parseInt() method returns int value after parsing the given string using the specified radix. If radix is not provided, then it uses 10… [Read More]

Tags: Integer

Java Integer numberOfTrailingZeros() Method

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

The numberOfTrailingZeros() method of Integer class, returns number of zero-bits after the last one-bit in the binary representation of the given int number. Returns 32… [Read More]

Tags: Integer

Java Integer numberOfLeadingZeros() Method

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

The numberOfLeadingZeros() method of Integer class, returns number of 0’s bits before the first one-bit in the binary representation of the given int number. If… [Read More]

Tags: Integer

Java Integer longValue() Method

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

The longValue() method of Integer class, returns the value represented by this Integer object as long. Since the size of long is greater than the… [Read More]

Tags: Integer

Java Integer intValue() Method

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

The intValue() method of Integer class returns the value of this Integer object as int. You can use this method for Integer to int conversion…. [Read More]

Tags: Integer

What is byte Keyword in Java

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

The byte keyword has following two usages in Java: byte data type byte return type of a method The byte keyword is used to define… [Read More]

What is break Keyword in Java

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

The break keyword is used inside loops (for, while or do-while) or switch-case block. When used in loops: It ends the loop as soon as… [Read More]

What is a boolean Keyword in Java

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

The boolean keyword has following two usages in Java: boolean data type boolean return type of a method The boolean keyword is a data type… [Read More]

What is abstract Keyword in Java

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

The abstract keyword is used for classes and methods in Java. It is not an access modifier, but it is used to achieve abstraction in… [Read More]

Type Casting in Java

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

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]

Tags: Java-Conversion

Java Integer min() Method

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

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]

Tags: Integer

Java Integer max() Method

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

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]

Tags: Integer

Java Integer lowestOneBit() Method

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

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]

Tags: Integer

Java Integer highestOneBit() Method

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

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]

Tags: Integer

Java Integer hashCode() Method

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

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]

Tags: Integer

  • « Previous Page
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • …
  • 43
  • 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