Java 11 Certification Introduction - OCP Complete Study Guide Exam 1Z0-815 1Z0-816 1Z0-817 1Z0-819

preview_player
Показать описание
Hello Friends,

If you are interested to do Java 11 certification or expand your current Java knowledge this is the right channel you have landed in. I will be creating a lot of vides of various topics covered in the certification book written by Jeanne Boyarsky and Scott Selikoff. The name of the book that I am following is OCP Oracle Certified Professional Java SE 11 Developer Complete Study Guide.

Authors of the book.

This book can be used to study for 1Z0-819 also. All the topics are covered. Following is post by Jeanne

If you have any question or feedback please feel free to leave the comment. Subscribe and turn on the notification to be notified about the course uploads.

Thanks,
Harry Gill
Рекомендации по теме
Комментарии
Автор

Keen subber here. Have to say your Java 8 series really got me through some learning hitches! Thanks Harry. Gerhard.

gerdsfargen
Автор

will be adding also Chapter 3 to Chapter 11 vids. It was very useful to follow along the vids and the book at the same time. Good

cdoloriert
Автор

I have cleared OCA 8 exam, now which exam should I give for Java 11? Is there any OCA 11 exam?? I am not able to find out on Oracle's site.

shrutigarg
Автор

Hi Harry
do you know what the differences between OCPJP 11 and OCPJP 17 are?

sergioantoniomartinez
Автор

Hi. Do you have videos about chapters 4, 5 and 6?

r_majka
Автор

does this playlist all topics included for certification for java 1ZO 819?

gaganashreess
Автор

Hi. I had cleared OCAJP 8 last year but failed in OCPJP 8. Now I am considering going for Java 11 certification. Can I do that or do I need to clear the OCPJP 8 first?

asawanted
Автор

Hi I am a fresher .. trying to clear OCA 11 . Is both OCA and OCP does not make much difference ? Which book I have to refer?

bhuvaneshwaridharwad
Автор

Here some questions..How long do you take from the 'first day(including the textbook reading)' of preparation until 'the last day' of it(include the day of the exam)?
Did take the exam 'immediately' after, the last day of your preparation or did you took same rest before the exam, in order to relieve the preparation-stress?
How many 'hours per day (average)' you dedicated for exam-preparation?
How many days, per a week, did you usually study?
What was your professional experience, as Java developer, before the exam?
Did you have any previous Java certifications?
How does the certification improve your career?
The certification brought you more job opportunities/proposals for example, in your LinkedIn?
Can you say that, the certification increase your salary rates/proposals, when you apply for a new job position, in a new hiring process?
Do you think that, after your certification, the recruiters, coworks, managers/etc..., start to "see you as a differentiated/distinct professional"?

petroniobonavides
Автор

Mother of god. That book version is way bigger than the previous. Its because of additional features from java 8 to 11 or because they put more exercises?

pedrodfg
Автор

how much the book cost, is it good for 0cjp 8, is there any chance of exam fee coming back to 11000 from 21000 indian rs.

mohammadazharuddin
Автор

Hello, i am java develloper with any certificat in java.
But i want to pass java 11 certificat . That is possible to do java 11 directly ?
Or i must pass java 8 certificat before ?

Thank you for advance !

toutoulandry
Автор

HI ... I have ebooks These three books are enough to prepare for 1z0-819 exam?

SURYA-mslw
Автор

Is negative marking are their in IZO-819 ?

sagararora
Автор

Harry Gill sir i can't afford this book its price is very high can you please give me pdf of this book

pranaychavan
Автор

public static Person createPeople() {
Person jane=new Person("Jane");
Person john=new Person("John", jane);
return jane;
}
public static Person createPerson(Person person) {
person=new Person("Jack", person);
return person;
}
public static void main(String[] args) {
Person person=createPeople();
/* line 1 */

/* line 2 */
String name=person.toString();
System.out.println(name);
}

}
class Person{
String name;

public Person(String name) {
this.name = name;
}
public Person(String name, Person p) {
this.name = name;
}

public Person() {
}
@Override
public String toString() {
return "Person [name=" + name + "]";
}

}
A. The memory allocated for Jane object can be resued in line1
B. The memory allocated for Jane object can be resued in line2
C. The memory allocated for Jack object can be resued in line2
D. The memory allocated for John object can be resued in line1
teacher!whate is the anser. thank you very much

frpchannel