Category: Java

Top Oracle Java Developer Interview Questions [2024]

Prepare for your Oracle Java developer interview with these top 10 questions. Get expert tips and insights to ace your interview and land your dream job. Oracle Interview Experience: Oracle Java Developer Interview overall there were 6 rounds in total, inclusive of the Screening Round. So, here’s a Round wise division: 𝗠𝗼𝘀𝘁 𝗖𝗿𝗶𝘁𝗶𝗰𝗮𝗹 (𝗦𝗰𝗿𝗲𝗲𝗻𝗶𝗻𝗴 𝗥𝗼𝘂𝗻𝗱) […]

Read More

Gitlab in Tamil

Title: Gitlab in Tamil Mentor: Vijayaragavan We are going to conduct live sessions on Gitlab through our YouTube Channel. https://www.youtube.com/@PayilagamChennai

Read More

String in Java – Java Fresher Tutorial in Tamil

This tutorial Explain about String in Java. What is the String? String Methods, Where to use the String ? Each method is Explained with a brief Description, Syntax and an Example: In Java, the String class is used to represent a sequence of characters. String in Java are used for storing text. Here are some […]

Read More

Java in Tamil – Abstraction in Java

Abstraction – Java Tutorial in Tamil This blog explain about Abstraction in Java Easy to understand Java Oops concept Abstraction:- In the context of Java programming, abstraction is one of the four fundamental principles of object-oriented programming (OOP), along with encapsulation, inheritance, and polymorphism. Abstraction is “Handling complexity by hiding unnecessary details from the user” […]

Read More

Inheritance in Java

In this blog explain what is Inheritance, How to use inheritance & Types of Inheritance. Inheritance:- An object of one class behaving as an object of another class. In Java, inheritance means creating new classes based on existing ones. Inheritance purpose is code re-usability. There are two major classes namely Parent class or Super class […]

Read More

Array In Java

This blog explain about Array in detailed. Array:- A group of similar data types is called an array. Arrays are used in computer programming to organize the same type of data. To declare an array, define the variable type with square brackets. Array can store the primitive datatypes such as int, char, double, and float. Array occupy […]

Read More

Final Keyword in Java

final keyword is used in different contexts. First of all, final is a non-access modifier applicable only to a variable, a method, or a class. The following are different contexts where final is used. Final Variable: When applied to a variable, the final keyword indicates that the variable’s value cannot be changed after it has been initialized. This is typically […]

Read More

JAVA New Features – Stream – Part 3

This blog explains about Stream part 3 in java is given below :  map(Function) map(List of Objects -> List of Objects) Example 2: It should be rewritten as below: limit() skip() total reduce() //Converting ArrayList to Array //Get max from an ArrayList Parallel Stream //ParallelStream //Sorting Based on Key: Alphabetical Order //anyMatch() anyMatch() //allMatch() //noneMatch()

Read More

JAVA Features – Stream API – Part 2

This blog explains about Stream API in java is given below :  Print Array values in Sorted Order: Note: Intermediate Operations are Lazy OperationsTerminal Operations are Eager Operations Find average of elements in an Array: Finding max of given Array: Finding minimum of given Array: Finding First value of given Array: Finding any value of […]

Read More