VOOZH about

URL: https://www.javainterviewpoint.com/

โ‡ฑ Java Interview Point - Java Tutorial for Beginners


๐Ÿ‘ Java Identifiers

What is an identifier in Java? Java Identifiers are nothing but the name of class, interface, method, or variable. For example int message = "Welcome" Where int is the data type and message is the identifier/ variable name. โ€ฆ [Read more...]

๐Ÿ‘ Java Consumer Example

The Consumer Functional interface takes a single input and does not return anything. The consumer interface is located in java.util.function package. It has a Single Abstract Method (SAM) accept(), which accepts the generic object type T and doesn't return any result. โ€ฆ [Read more...]

๐Ÿ‘ Java Function Example

The Function Functional interface takes a single input and returns any value. The function interface is located in java.util.function package. It has a Single Abstract Method (SAM) apply(), which accepts the generic object type T and returns object type R. โ€ฆ [Read more...]

๐Ÿ‘ Java Predicate Example

The Predicate Functional interface takes a single input and returns a boolean value. The predicate interface is located in java.util.function package. It has a Single Abstract Method (SAM) test(), which accepts the generic object type T and returns a boolean. โ€ฆ [Read more...]

๐Ÿ‘ Types of Method Reference

In this article, we will look at Java method reference and its types - Static method reference, Instance method reference, Arbitrary object reference, and Constructor Reference. The method reference is nothing but the simplified version of the lambda expression. Instead of providing an implementation body, a method reference refers to an existing available method. โ€ฆ [Read more...]

๐Ÿ‘ Python Split String

Splitting a String into separate words is one of the most common operations performed on a String. We can use the split() method of the str class to perform the split operation. In this Python Split String article, we will learn how to split string in Python based on a delimiter, comma, space, character, regex, and multiple delimiters. โ€ฆ [Read more...]

๐Ÿ‘ Python String to Int Conversion

In this tutorial, we will learn how to convert Python String to Int and vice-versa (Python Int to String). We will also explore the how-to convert String into an int with different bases and the possible conversion errors. โ€ฆ [Read more...]

๐Ÿ‘ Comparator Interface

The Functional Interface is introduced in Java 8, and it is nothing but an interface with a Single Abstract Method (SAM). A functional interface can act as a target for a lambda expression or a method reference. โ€ฆ [Read more...]

๐Ÿ‘ Spring Dependency Injection

Dependency Injection(DI) is the most important feature of Spring Framework. Dependency Injection is a design pattern that removes the dependency between objects so that the objects are loosely coupled. In Spring there exist two major types of Dependency Injection. Setter Injection Constructor Injection โ€ฆ [Read more...]

๐Ÿ‘ Prime Number Program in Python

What is a Prime Number? A Prime Number is a number which is greater than 1 and divisible by 1 and only itself. Some of the Prime Numbers are 2, 3, 5, 7, 11, 13, 17... In this article, let's create a Prime Number Program in Python and learn some Optimization techniques. โ€ฆ [Read more...]

๐Ÿ‘ Python Keywords and Identifiers

In this article, let's learn about Python Keywords and Identifiers. Keywords in Python are the reserved words and cannot be used as variable names, function names, or class names, etc. Python Identifiers are nothing but the name which we give to identify a variable, function, object, etc. โ€ฆ [Read more...]

Follow

About JavaInterviewPoint

javainterviewpoint.com is a tech blog dedicated to all Java/J2EE developers and Web Developers. We publish useful tutorials on Java, J2EE and all latest frameworks.

All examples and tutorials posted here are very well tested in our development environment.

Connect with us on Facebook | Privacy Policy | Sitemap