• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How much fact/conceptual memorization do I need to do?

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not being lazy, but I would like to know:

I'm studying for the OCA and I'm trying to determine how much fact memorization I have to do.

Does the OCA ask questions like "which of the following are the relational operators" and "which of the following are equality operators"?

Thanks,
Steve

 
Author
Posts: 375
22
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Steve,

Welcome to JavaRanch.

Does the OCA ask questions like "which of the following are the relational operators" and "which of the following are equality operators"?



This exam focuses on the usage and implementation of Java language features and concepts. Instead of asking you to select the relational or equality operators from a set of options, the exam might use them in code and query you on its output. For an example, you might get to answer a similar question in the exam on operators:

Question) What is the output of the following code?


a)
true
true

b)
false
false

c)
true
false

d)
false
true


I wish you Good Luck with your exam preparation.

With respect,
Mala
 
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Likes 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
And of course you'll also need some memorization about the Java classes from the API. When do you need to use property length, method length() or method size(); so you know for example when you see in a code snippet (like the example of Mala Gupta) something like anArray.length() that you have to choose Compilation fails option and you can proceed with the next question
 
Mala Gupta
Author
Posts: 375
22
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks, Roel.

Steve,

I've created a sample question based on Roel's answer for you:

Question) What is the output of the above code?



a) 30
b) 60
c) Compilation error
d) Runtime exception


With respect,
Mala
 
Stephen-Austin Murphy
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Roel and Mala,

Thank you so much for responding to my query and providing such helpful responses.

I really like the helpfulness and friendliness of both of you, and of this forum in general.

Mala, I saw your book while researching Java study books. Looks really nice!

Regards,
Steve
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic