How to prepare for the exam ( or at least how did I :))

Slides:



Advertisements
Similar presentations
1 Software Engineering Lecture 11 Software Testing.
Advertisements

Advanced Java New York University School of Continuing and Professional Studies.
This presentation is designed to help assist you in registering and creating an account to do online homework using the MyMathLab program via CourseCompass.
Exceptions Handling Exceptionally Sticky Problems.
MATH APPS | First Day of Class Introduction Course Name, Course Number College Date.
1 1.Log in to the computer in front of you –Temp account: 231class / 2.Update your in Cascadia's system –If I need to you I'll use.
+ Summer Institute for Online Course Development Institute – Assessment Techniques Presentation by Nancy Harris Dept of Computer Science.
Exceptions and Assertions Chapter 15 – CSCI 1302.
Copyright © 2010 Pearson Education, Inc. or its affiliate(s). All rights reserved.1 | Assessment & Information 1 Online Testing Administrator Training.
How to Get Certified as a Java Programmer Jeanne Boyarsky 4/28/16.
Programming Language Basics. What is a Programming Language? “A computer, human-created language used to write instructions for a computer.” “An artificial.
Oracle Certified Specialist 1Z0-809 Test Oracle Certified Professional, Java SE 8 Programmer Certification.
Monday. In 2-3 sentences, explain what you think this quote means… “Before I can walk in another’s shoes, I must first remove my own.”
TOPS Technologies Java Course : tops-int
Student Orientation to Connect Math Hosted by ALEKS
Topic 2: Hardware and Software
Why don’t programmers have to program in machine code?
Component 1.6.
Course Information EECS 2031 – Section A Fall 2017.
How to prepare for the exam ( or at least how did I :))
Portland State University
WHAP April 17-may 25.
Handling Exceptionally Sticky Problems
COMP 523 Diane pozefsky 24 August 2016.
Objectives You should be able to describe: Interactive Keyboard Input
MyStatLab Student help/instructions MTH/233
MUSIC by Campbell Required text for Music Appreciation
CMPTR by Pinard / Romer Required text for Introduction to Computers
Skill Based Assessment
Integrity - Service - Innovation
Skill Based Assessment
Skill Based Assessment
Dell EMC Isilon Solutions E Questions Killtest
Dell EMC VxRail Appliance 4.x E Questions Killtest
2018 New CheckPoint Exam Dumps Killtest
Student Orientation Fall 2016.
Using Microsoft forms in the English class to evaluate content formatively Context: English foreign language class Level: pre-intermediate Students.
Online Testing System Assessment Viewing Application (AVA)
Introduction to Computer Programming
EECE 310 Software Engineering
Online Testing System Assessment Viewing Application (AVA)
Hybrid Course Overview & Requirements
Overview of SHRM Learning System 8/22/12
11/29/2018 Department of Software Engineering and IT Engineering
Welcome! May 3rd, Thursday
Study Support Revision Skills Do you want to find out more about…?
Exploring the Power of EPDM Tasks - Working with and Developing Tasks in EPDM By: Marc Young XLM Solutions
Week of March th grade.
Sridhar Narayan Java Basics Sridhar Narayan
Online Testing System Assessment Viewing Application (AVA)
A Guide to adding Sites and Blocks within ESTATE Manager
The Orientation Orientation
Programming Language Basics
Warm Up What happened in Mexico on 5/5, that makes it a national holiday there? Fabulous prize to the first person with the correct answer!
with Pearson’s MyITLab for Office 2013
Remember: Do Now's are INDEPENDENT and QUIET exercises. Thank you 
Welcome! May 9th, 2018 Wednesday
Handling Exceptionally Sticky Problems
TV/Film Writing Week 6.
Week of December 2-6, 2013 Warm-ups.
Language Arts: Tuesday 10/16 I.N. 49
7th Grade Math Warm-ups Week of October 3-7, 2016.
MGMT5 by Williams Required text for Principles of Management
SE-1011 Slide design: Dr. Mark L. Hornick Instructor: Dr. Yoder
WORLD by Lockard Required text for World History
CMSC 202 Exceptions 2nd Lecture.
Exception Handling.
2019 Exams.
ECON3 Micro by McEachern
M&B2 by Croushore Required text for Money and Banking
Presentation transcript:

How to prepare for the exam ( or at least how did I :)) 26/5/2016 Gavrail Kubatev

Introduction Certification general info Exam details Before the Exam During the Exam After the Exam Study resources and Tools Additional resources Learning/Exam tips Code Examples

Certification general info Associate(OCA) Oracle Certified Associate, Java SE 8 Programmer Oracle Certified Associate, Java SE 7 Programmer Professional(OCP) Oracle Certified Professional, Java SE 8 Programmer Oracle Certified Professional, Java SE 7 Programmer Master(OCM) Oracle Certified Master, Java SE 6 Programmer

Before the Exam Create your account in the Pearson Vue system Create your account in the Oracle CertView system Link/Authenticate the accounts (should be done at least 1 hour after account creation) Identify the Test center you want to take the Exam in. Book your Exam At least a week earlier Two ways of booking Via the Pearson Vue site( Wednesdays and Thursdays) Directly with the test center( Monday, Tuesday and Friday)

During the Exam Test center tour Security is tight , no cheating  Video surveillance Pc with sub 20 inch display You cant bring anything inside except for your personal ID(even water) Test center will provide you with pens, laminated sheet for writing and ear plugs https://www.youtube.com/watch?v=ly3QqlES_4w

During the Exam You can not pause the exam , once started Exam software is easy to use The exam consists of 77 questions. 12 of them are not graded, you are not aware which ones. 2.5 hours, 65 % correct answers required There are no drag and drop questions You are told how many correct answers there are You are able to strike out answers

After the Exam Results are available online in your CertView account,30 minutes after finishing Your passing result is not listed on your certificate Certificate is provided for you to download and print Your mistakes are listed as “objectives” Ex. “Differentiate among checked exceptions, unchecked exceptions, and Errors”

Study resources and Tools OCA Study guide – Boyarski & Selikoff Enthuware practice exams Thinking in Java by Bruce Eckel Java Language Specs codingBat Notepad(++) Flashcard Machine

Additional resources OCA Java SE 8 Programmer I Certification Guide by Mala Gupta OCA/OCP Java SE 7 Programmer I & II Study Guide (Exams 1Z0-803 & 1Z0-804) by Kathy Sierra and Bert Bates OCA Java SE 8 Programmer I (1Z0-808) Complete Video Course MyExamCloud practice tests WhizLabs practice tests http://www.informit.com/store/oca-java-se-8-programmer-i-1z0-808-complete-video-course-9780134498287 http://www.myexamcloud.com/onlineexam/viewStudyPlan.html?s=KFx2lAszxQI= http://www.whizlabs.com/oracle-certified-associate-java-se-8-programmer/ocajp8-practice-tests/

Learning/Exam tips Be comfortable with distinguishing between compile errors and exceptions Learn which exceptions are thrown by the programmer and which by the JVM Learn all core classes’ APIs Use the language specification

Learning/Exam tips Read all answers Subvocalization while reading code Separate and analyze your mock exam wrong answers Pay attention for “unreachable code”

Code examples 1) final int a = 5; final int b = 10; for(;b<a;){ System.out.println("Dreamix"); } 2) for(int i=0;i<10;) { i=i++; System.out.println("Dreamix"); } 3) for(int i=0;i<10;new String("Dreamix")) { i++; System.out.println("Dreamix"); }

Code examples 4) int f= 011; float a=0x1.1p0f; float g=0x612f; float b=01101f; float d=0b101; 5) HRISTO:for(int i=0;i<10;i++){ GEORGI:System.out.println("Dreamix"); if(i>3)break HRISTO; }

Code examples 6) True or false "String".replace('g','g')=="String“; 7) interface A{ int TEST =5; } interface B{ int TEST =5; } class FatherOfAll implements A,B{ int a = 5; }

Code examples 8) ArrayList<Integer> numbers = new ArrayList<Integer>(Arrays.asList(2,4,7,9,0)); numbers.removeIf(2,a -> a>4); System.out.println(numbers); 9) LocalDateTime timer= LocalDateTime.parse("2016-01-02"); System.out.println(timer);

Code examples 10) Java Exceptions is a mechanism .. for dealing with unexpected user inputs. that you can use to determine what to do when something unexpected happens. for logging unexpected behavior. to ensure that the program runs even if something unexpected happens. that the VM uses to exit the program when something unexpected happens. B &C

Thank you and Good Luck!