Tag: OCA Java 8 Exam Preparation

Core Java

OCA Java 8 Preparation : Looping Statements

Looping statements provide a means to achieve an iteration over a set of elements or to perform some operation repeatedly without adding redundant lines of code.Java provides a variety of looping or iteration statements. For your Java OCA exam, you need to be comfortable with the use of Java looping statements and we have some […]

Be the First to comment. Read More
Core Java

Java – Break and Continue

When dealing with loops in Java, break and continue keywords are the ones we often come across.  We’ll see what they mean and how can they be used. We’ll be learning the usage of Java break and continue statements in both labelled as well as unlabelled context. Let’s start by first understanding what is a […]

Be the First to comment. Read More
Core Java

Exception Handling in Java – try, catch and finally

The try-catch-finally blocks available in the Java exception handling framework are a great way to deal with exceptions. In the previous post, we covered what exceptions are and their types – checked vs unchecked exceptions. Today we’ll enable you to be a pro in using Java try-catch-finally blocks for exception handling. Before proceeding with this […]

Be the First to comment. Read More
Core Java

Exceptions in Java : An Introduction

Java Exception framework helps us to handle exceptions in Java very effectively and without much pain. In this post, we’ll learn about Exceptions in Java, their types, the difference between checked and unchecked exceptions. We’ll also cover significantly good number of classes available in Java Exception framework. Introduction : Exceptions are abnormal disruptions in the […]

Be the First to comment. Read More
Core Java

OCA Java 8 Preparation : Operators

Java Operators is one of the topic in which Java OCA aspirants score comparatively a lot lower than the other sections of the test. In this post, we’ll cover all the must-know points about Java Operators for your OCA exam. Now pass your Java OCA Exam with flying colours! Operator Precedence & Associativity : Precedence […]

Be the First to comment. Read More
Core Java

Java OCA Certification Preparation Series

Struggling with preparing for your Oracle Java OCA certification( Exam Number –1Z0-808 )? Looking for where to start ? We have got you covered. It is recommended for you to go through below list of articles to give a sharp edge to your Java OCA Preparation. I am sure you are going to find them […]

Be the First to comment. Read More
Core Java

OCA Java 8 Preparation : DateTimeFormatter

Introduction : DateTimeFormatter class belongs to java.time.format package. You can use it to format or parse the date or time or a datetime object. Remember for the sake of exam, it defines rules for both parsing and formatting. To instantiate a DateTimeFormatter, use any of the below ways : Calling the static ofLocalizedXXX() method, passing […]

Be the First to comment. Read More
Core Java

OCA Java 8 Preparation : Lambda Expressions

  The concept of Lambda expressions and Functional Interface(FI) is itself very large in scope. However, for the OCA Java 8, you are expected to know only the basics of Lambda Expression. Today, we’ll cover lambda expressions in great details for your Java OCA exam. To understand why to even use lambda expressions , you […]

2 comments Read More
Core Java

OCA Java 8 Preparation : Selection Constructs

I know you are already a Java programmer and you might think–  ‘I already know about Java selection constructs. I have been using it since long.’  But still, I would suggest you to go through these points before you plan to give your OCA Java certification exam. After preparing on these points, you will be […]

Be the First to comment. Read More
Core Java

Java 8 – Why use Lambda Expressions?

Introduction : Java 8 introduced the concept of Lambda expressions which enables you to implement functional-style programming in Java. Functional programming allows you to focus on ‘what to do’, rather than ‘how to do it’. It allows you to pass in code blocks as a method argument, instead of simply passing the data. This can […]

Be the First to comment. Read More