• 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

Does anybody have an example of 1Z0-808 in Russian?

 
Greenhorn
Posts: 27
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have never seen any example of OCA exam questions in Russian. As far as I know the most of people prefer to take the exam in English. But the reason of my interest is that Russian translations of most of English textbooks which concern Java have a very specific feature: almost all of them translate "operator" as "operation" but use "operator" to translate "statement". Actually I know the only Russian translation which uses values of these words in there straight meaning. So it is very interesting for me what about exam questions? Becouse some basic terms concerning Java building blocks could look confusing for the person who use different text books in different language to prepare himself for the exam. But the worst thing is that he can met controversial questions while taking the exam.
 
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is Russian an official OCAJP certification exam language? I know it does exist in (Modern) Spanish.
 
author & internet detective
Posts: 41878
909
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 OCJP 6 was given in Russian. I wasn't aware the OCAJP 8 was.

That said, I would strongly suggest you take it in English. Your English is fine in this forum. And your study guide will likely be in English. I would assume translations would "lack precision" which is a risk for taking the exam. That said, exam questions are more code heavy than text heavy. So finding a question where this distinction matters is likely to be low.
 
Roel De Nijs
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am also not a native English speaker and even if the certification exam would have been available in Dutch (my native language), I'll take the exam in English. First of all because most study guides and other resources are in English. Secondly translating questions into another language can be very tricky (this mock question is an excellent example). And thirdly because there are only very few text-only questions on the exam.
 
Jeanne Boyarsky
author & internet detective
Posts: 41878
909
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
Roel,
That's a great example. I can hardly imagine what would happen if that question were translated!
 
Vitaliy Ovcharenko
Greenhorn
Posts: 27
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
And what about this kind of question from Programmer I page 50:
#23. Which of the following are true? (Choose all that apply)
A. javac compiles a .class file into a .java file.
B. javac compiles a .java file into a .bytecode file.
C. javac compiles a .java file into a .class file.
D. Java takes the name of the class as a parameter.
E. Java takes the name of the .bytecode file as a parameter.
F. Java takes the name of the .class file as a parameter.

C, D. Java puts source code in .java files and bytecode in .class files. It does not use
a .bytecode file. When running a Java program, you pass just the name of the class
without the .class extension.

As for me D and F are the same. Because it is not mentioned anything concerning file extension but just about its name.
 
Jeanne Boyarsky
author & internet detective
Posts: 41878
909
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
Vitaliy,
That question is testing if you know the command is java MyClass (option D) vs java MyClass.class (option F). The period is important. I hope that a translator wouldn't remove syntax.
reply
    Bookmark Topic Watch Topic
  • New Topic