• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

I want to take the Java Foundations 1Z0-811 Exam

 
Greenhorn
Posts: 8
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello, I have worked with Java Before...but I have forgotten some concepts...I am starting again...I want to be certified...I want to start with the Foundations exam..But, I can't find any resources (books, mock exams etc) anywhere..Oracle Academy has a 90 hour course...which I think is un-necessary...The exam is very basic.

Any help would be appreciated
 
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch

I would suggest you write some basic programs before you try sitting the exam. You should be up to speed before you learn the sometimes strange things they ask in cert exams.
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Campbell Ritchie wrote:Welcome to the Ranch

I would suggest you write some basic programs before you try sitting the exam. You should be up to speed before you learn the sometimes strange things they ask in cert exams.



I have worked with Java before..it would take 1 day of revision to get up to speed...my Question was how do I prepare...when I can't find any study guides..
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So you could understand code like this?Moving to our foundation exam forum.
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I can understand the code I posted, but it contains several errors
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Campbell Ritchie wrote:So you could understand code like this?Moving to our foundation exam forum.



Somewhat...I dont know exactly what each function does..and, I personally think this is too advanced for the foundations exam..I might be wrong, but since there are no mock papers available..I can't really say
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What does it say about Streams in the exam syllabus?
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Numair Kaukab wrote:

Campbell Ritchie wrote:So you could understand code like this?Moving to our foundation exam forum.



Somewhat...I dont know exactly what each function does..and, I personally think this is too advanced for the foundations exam..I might be wrong, but since there are no mock papers available..I can't really say



So, I found some mock exams at enthuware...but still no study guide or anything...
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Campbell Ritchie wrote:What does it say about Streams in the exam syllabus?



https://education.oracle.com/java-foundations/pexam_1Z0-811

looks pretty basic
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Careful: Oracle exams are usually harder than they look at first sight. You are right that it doesn't seem to test Stream knowledge, even though it says it was validated for JDK 1.8 (sic).
You should be able to find such information in any Java® programming book, but I don't know about mock exams, nor did I find any specimen questions.
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Campbell Ritchie wrote:Careful: Oracle exams are usually harder than they look at first sight. You are right that it doesn't seem to test Stream knowledge, even though it says it was validated for JDK 1.8 (sic).
You should be able to find such information in any Java® programming book, but I don't know about mock exams, nor did I find any specimen questions.



Capture.PNG
[Thumbnail for Capture.PNG]
 
Numair Kaukab
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am having difficulty with this part of the syllabus

How will this part be tested in a Multiple-Choice Question Format
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A few ideas off the top of my head.

Java® is commonly used for
  • 1: Websites
  • 2: Mobile phone applications
  • 3: Connecting web apps to databases
  • 4: direct access to memory locations
  • 5: Multi-threaded applications
  • All the following were written by students as constructors: they all compiled without errors. Each class has two fields i and s. Which of these code snippets represent correct constructors that will execute correctly and not produce nasty surprises as any code is executed?Which of the following fields show the correct naming and declaration conventions?
  • 1: final static public int BOILING_WATER = 100;
  • 2: private static final String NAME = "Numair Kaukab";
  • 3: String name;
  • 4: String Name;
  • 5: private String Name;
  • Which of the following instructions will cause an application to run in Java8, assuming it has not yet been compiled and the class Foo has a main method?
  • 1: java Foo.java
  • 2: javac Foo.java java Foo.java
  • 3: javac Foo.java java Foo "Numair Kaukab"
  • 4: java Foo.java javac Foo.java
  • 5: javac Foo java Foo.java
  • Which of the following are headings for methods that can be run to start an application off?
  • 1: public static int main(String[] args)...
  • 2: public static void main(String... args)...
  • 3: public static void main(final String[] args)...
  • 4: static void main(String[] args)...
  • 5: public static void Main(String[] args)...
  • What new files would you expect to find if the instruction javac Foo.java has run for the first time without errors?
  • 1: A file called Foo containing bytecode
  • 2: A file called Foo.java containing machine code
  • 3: A file called Foo.class containing bytecode
  • 4: A file called Foo.class containing Java® code
  • 5: A file called Foo.class containing machine code
  • 6: No new files
  •  
    Numair Kaukab
    Greenhorn
    Posts: 8
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Thank you. This is very helpful. I also checked out the Mock exams..I have a clear idea now..what to expect from the exam.

    Can you recommend a book that can prepare me for this exam? I dont want a beginners guide..teaching me what a variable is or what a loop is. I am looking at Java in a Nutshell 7th Edition

    https://www.amazon.com/Java-Nutshell-Desktop-Quick-Reference/dp/1492037257/ref=sr_1_1?crid=3K3RPWES1J9FD&dchild=1&keywords=java+in+a+nutshell&qid=1603818953&sprefix=java+in%2Caps%2C452&sr=8-1

    Do you think this would be good for me?
     
    Campbell Ritchie
    Marshal
    Posts: 79707
    381
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Don't know about books, but I didn't like that book the few times I have used it.
     
    author & internet detective
    Posts: 41967
    911
    Eclipse IDE VI Editor Java
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    The streams example is way too hard for the Foundations exam. Objectives here

    We wrote a web page on the Java Foundations exam. You can use our Java 8 OCA (808) study guide for most of it. There are a few topics on the Foundations exam not on the OCA 8. For those we wrote blog posts (and sample questions) linked to from that page.
     
    Enthuware Software Support
    Posts: 4857
    52
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator

    Numair Kaukab wrote:
    So, I found some mock exams at enthuware...but still no study guide or anything...



    You may try: OCFA - Java Foundations 1Z0-811 Exam Study Guide by Hanumant Deshmukh
     
    MyExamCloud Software Support
    Posts: 735
    2
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    MyExamCloud offers 25 Mock Exams for Java Junior Certification.
    https://www.myexamcloud.com/onlineexam/1z0-811-java-foundations-exam-practice-tests.course
     
    Get meta with me! What pursues us is our own obsessions! But not this tiny ad:
    We need your help - Coderanch server fundraiser
    https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
    reply
      Bookmark Topic Watch Topic
    • New Topic