راهنمای آزمون جاوا

در این صفحه راهنمای آزمون جاوا را می توانید مطالعه نمایید.

محتوای آزمون

این آزمون که با هدف ارزیابی دانش جاوا و مهارتهای برنامه نویسی طراحی شده است از دو سطح جاوای پایه و جاوای حرفه‌ای تشکیل شده است. سوالات تستی یا جواب کوتاه هستند و هر بخش پرسشنامه جداگانه دارد.

  • جاوای پایه (40 سوال، 100 دقیقه)
    • هدف از این بخش ارزیابی مهارتهای برنامه نویسی با زبان جاوا می‌باشد.
    • سوالات این بخش شامل این موضوعات می‌باشد:
  1. تعریف اولیه، مقدار دهی و حوزه بندی (Declarations, Initialization and Scoping)
    Section 1: Declarations, Initialization and Scoping
    – Develop code that declares classes (including abstract and all forms of nested classes), interfaces, and enums, and includes the appropriate use of package and import statements (including static imports).
    – Develop code that declares an interface.
    – Develop code that implements or extends one or more interfaces.
    – Develop code that declares an abstract class.
    – Develop code that extends an abstract class.
    – Develop code that declares, initializes, and uses primitives, arrays, enums, and objects as static, instance, and local variables. Also, use legal identifiers for variable names.
    – Given a code example, determine if a method is correctly overriding or overloading another method, and identify legal return values (including covariant returns), for the method.
    – Given a set of classes and superclasses, develop constructors for one or more of the classes.
    – Given a class declaration, determine if a default constructor will be created, and if so, determine the behavior of that constructor.
    – Given a nested or non-nested class listing, write code to instantiate the class.
  2. کنترل توالي اجراي برنامه (Flow Control)
    شامل دستورات شرطی و حلقه
    Section 2: Flow Control
    – Develop code that implements an if or switch statement; and identify legal argument types for these statements.
    – Develop code that implements all forms of loops and iterators, including the use of for, the enhanced for loop (for-each), do, while, labels, break, and continue; and explain the values taken by loop counter variables during and after loop execution.
    – Develop code that makes use of assertions, and distinguish appropriate from inappropriate uses of assertions.
    – Develop code that makes use of exceptions and exception handling clauses (try, catch, finally), and declares methods and overriding methods that throw exceptions.
    – Recognize the effect of an exception arising at a specified point in a code fragment. Note that the exception may be a runtime exception, a checked exception, or an error.
    – Recognize situations that will result in any of the following being thrown: ArrayIndexOutOfBoundsException,ClassCastException, IllegalArgumentException, IllegalStateException, NullPointerException, NumberFormatException, AssertionError, ExceptionInInitializerError, StackOverflowError or NoClassDefFoundError. Understand which of these are thrown by the virtual machine and recognize situations in which others should be thrown programatically.
  3. رشته و آرایه
    – Develop code that uses the primitive wrapper classes (such as Boolean, Character, Double, Integer, etc.), and/or autoboxing & unboxing. Discuss the differences between the String, StringBuilder, and StringBuffer classes.
    – Given a scenario involving navigating file systems, reading from files, writing to files, or interacting with the user, develop the correct solution using the following classes (sometimes in combination), from java.io: BufferedReader, BufferedWriter, File, FileReader, FileWriter, PrintWriter, and Console.
    – Use standard J2SE APIs in the java.text package to correctly format or parse dates, numbers, and currency values for a specific locale; and, given a scenario, determine the appropriate methods to use if you want to use the default locale or a specific locale. Describe the purpose and use of the java.util.Locale class.
    – Write code that uses standard J2SE APIs in the java.util and java.util.regex packages to format or parse strings or streams. For strings, write code that uses the Pattern and Matcher classes and the String.split method. Recognize and use regular expression patterns for matching (limited to: . (dot), * (star), + (plus), ?, d, s, w, [], ()). The use of *, +, and ? will be limited to greedy quantifiers, and the parenthesis operator will only be used as a grouping mechanism, not for capturing content during matching. For streams, write code using the Formatter and Scanner classes and the PrintWriter.format/printf methods. Recognize and use formatting parameters (limited to: %b, %c, %d, %f, %s) in format strings.
  4. مفاهيم شي گرايي (OO Concepts)
    شامل کلاس، اشیاء، وراثت (inheritance)، چندریختی (polymorphism) و واسط (interface)
    Section 4: OO Concepts
    – Develop code that implements tight encapsulation, loose coupling, and high cohesion in classes, and describe the benefits.
    – Given a scenario, develop code that demonstrates the use of polymorphism. Further, determine when casting will be necessary and recognize compiler vs. runtime errors related to object reference casting.
    – Explain the effect of modifiers on inheritance with respect to constructors, instance or static variables, and instance or static methods.
    – Given a scenario, develop code that declares and/or invokes overridden or overloaded methods and code that declares and/or invokes superclass, or overloaded constructors.
    – Develop code that implements \”is-a\” and/or \”has-a\” relationships.
  5. مجموعه ها و انواع عمومي (Collections / Generics)
    Section 5: Collections / Generics
    – Given a design scenario, determine which collection classes and/or interfaces should be used to properly implement that design, including the use of the Comparable interface.
    – Distinguish between correct and incorrect overrides of corresponding hashCode and equals methods, and explain the difference between == and the equals method.
    – Write code that uses the generic versions of the Collections API, in particular, the Set, List, and Map interfaces and implementation classes. Recognize the limitations of the non-generic Collections API and how to refactor code to use the generic versions. Write code that uses the NavigableSet and NavigableMap interfaces.
    – Develop code that makes proper use of type parameters in class/interface declarations, instance variables, method arguments, and return types; and write generic methods or methods that make use of wildcard types and understand the similarities and differences between these two approaches.
    – Use capabilities in the java.util package to write code to manipulate a list by sorting, performing a binary search, or converting the list to an array. Use capabilities in the java.util package to write code to manipulate an array by sorting, performing a binary search, or converting the array to a list. Use the java.util.Comparator and java.lang.Comparable interfaces to affect the sorting of lists and arrays. Furthermore, recognize the effect of the \”natural ordering\” of primitive wrapper classes and java.lang.String on sorting.
    – Given a code example and a scenario, write code that uses the appropriate access modifiers, package declarations, and import statements to interact with (through access or inheritance) the code in the example.
    – Given an example of a class and a command-line, determine the expected runtime behavior.
    – Determine the effect upon object references and primitive values when they are passed into methods that perform assignments or other modifying operations on the parameters.
    – Given a code example, recognize the point at which an object becomes eligible for garbage collection, determine what is and is not guaranteed by the garbage collection system, and recognize the behaviors of the Object.finalize() method.
    – Given the fully-quali fied name of a class that is deployed inside and/or outside a JAR file, construct the appropriate directory structure for that class. Given a code example and a classpath, determine whether the classpath will allow the code to compile successfully.
    – Write code that correctly applies the appropriate operators including assignment operators (limited to: =, +=, -=), arithmetic operators (limited to: +, -, *, /, %, ++, –), relational operators (limited to: <, <=, >, >=, ==, !=), the instanceof operator, logical operators (limited to: &, |, ^, !, &&, ||), and the conditional operator ( ? : ), to produce a desired result. Write code that determines the equality of two objects or two primitives.
  • جاوای حرفه‌ای (35 سوال، 50 دقیقه)
    • Java 7 & Java 8
    • Thread & Concurrency
    • I/O
    • Reflection
    • مباحث پیشرفته (Patterns، JUnit، Refactoring، Performance Tunningو …)

در خصوص سرفصلهای مربوط به جاوای حرفه‌ای، امکانات موجود در API جاوا ملاک سوالات خواهد بود.
برای سرفصل JUnit  نسخه 4 ان کتابخانه مدنظر قرار گرفته است. سرفصل مربوط به مباحث پیشرفته شامل مفاهیم نظری با رویکرد به زبان جاوا خواهد بود.
برای اطلاع دقیقتر از محتوای آزمون می‌توانید سرفصل دوره‌های Java SE 7 Fundamental و Java SE7 Programming را که طراحی آزمون‌ها با الهام از آنها صورت می‌گیرد مشاهده نمایید.
لازم به ذکر است که تمامی قطعه برنامه های مربوط به سوالات، بر اساس نسخه 8 جاوا کامپایل و اجرا شده و نتیجه حاصله با متن سوالات و پاسخ های مورد انتظار مقابله شده است.

مشاهده بودجه‌بندی پنجمین آزمون جاواکاپ 

مشاهده نمونه سوال آزمون کتبی (جدید)

 گواهی نامه ها

  • گواهی Java Programmer: اعطای این گواهی‌نامه مستلزم کسب حداقل 60 درصد نمره بخش جاوای پایه می‌باشد.
  • گواهی Java Professional Developer: اعطای این گواهی‌نامه مستلزم کسب حداقل 75 درصد نمره بخش پایه و کسب حداقل 60 درصد نمره بخش حرفه‌ای می‌باشد.

آزمون نمونه

برای دانلود فایل آزمون نمونه  اینجا را کلیک کنید

معرفی منابع

  •  SCJP Sun Certified Programmer for Java6 Study Guide Exam (310-065),Kathy Sierra, Bert Bates, McGraw-Hill Publication, ISBN-10: 0071591060, 2008
  •  A Programmer’s Guide to Java™ SCJP Certification A Comprehensive Primer, Khalid A. Mughal, Rolf W. Rasmussen, Third Edition, ISBN-10: 0321556054 ,2008
  • SCJA Sun Certified Java Associate Study Guide(Exam CX-310-019),Robert Liguori, Edward Finegan, McGraw-Hill Publication, ISBN-10: 0071490035,2009
  • SCJA Sun Certified Java Associate Study Guide (Exam CX-310-019): Study Guide Exam CX-310-019 (Certification Press)
  • Java 7

    • http://docs.oracle.com/javase/tutorial/extra/certification/javase-7-upgrade.html#lang
    • http://donaldojdk.files.wordpress.com/2011/11/55j7.pdf
    • The Well-Grounded Java Developer( J. Evans- 2012 )- Chapter 1,2
  • JDBC

    • http://docs.oracle.com/javase/tutorial/extra/certification/javase-7-programmer2.html#jdbc
    • http://courses.coreservlets.com/Course-Materials/pdf/msajsp/10-JDBC.pdf
    • http://pdf.coreservlets.com/Accessing-Databases-JDBC.pdf
    • Java How to Program (Deitel), 9th edition, Chapter 28
  • Thread & Concurrency

    • http://docs.oracle.com/javase/tutorial/extra/certification/javase-7-upgrade.html#concurrency
    • Java How to Program (Deitel), 9th edition, Chapter 26
    • Thinking in Java (Bruce Eckel), 4th edition, Chapter 22
    • http://www.d.umn.edu/~cprince/courses/cs5631spring07/lectures/JavaThreads.pdf
    • http://www.freejavaguide.com/java-threads-tutorial.pdf
    • Thread Slides at »Advance Programming in Java« course in Sharif University
  • I/O

    • http://docs.oracle.com/javase/tutorial/essential/io/
    • Java How to Program (Deitel), 9th edition, Chapter 17 and 27
    • Thinking in Java (Bruce Eckel), 4th edition, Chapter 19
    • http://www.gui.net/portfolio/csci4448/courseNotes/08_JavaIO.pdf
    • http://www.freejavaguide.com/corejava-io.pdf
    • IO Slides at »Advance Programming in Java« course in Sharif University
  • JUnit

    • https://github.com/junit-team/junit/wiki
    • Test Driven Development Slides at ASTA Knowledgebase
    • Test & Refactoring Slides from»Advance Programming in Java« course in Sharif University
    • JUnit in Action, Second Edition(Manning Publications,2010)
    • https://ece.uwaterloo.ca/~lintan/courses/testing/tutorials/T1-JUnit.pdf
    • http://www.vogella.com/articles/JUnit/article.html
    • http://www.tutorialspoint.com/junit/junit_tutorial.pdf
  • Reflection

    • http://docs.oracle.com/javase/tutorial/reflect
    • Thinking in Java (Bruce Eckel), 4th edition, Chapter 15
    • Reflection Slides at »Advance Programming in Java« course in Sharif University
    • http://www.csd.uoc.gr/~hy252/references/JavaReflection.pdf
  • Advanced Topics (Patterns، Refactoring، Performance Tunningو…)

    • Professional Java JDK 6 Edition  (Wrox-2007), Chapter 2,3
    • The Well-Grounded Java Developer( J. Evans- 2012 )- Chapter 6

‫13 دیدگاه ها

    1. سلام
      روزتون بخیر.
      خیر، آزمون محدودیت سنی نداره، اتفاقا ما از اینکه برنامه‌نویس‌های خیلی جوان یا خیلی با تجربه در آزمون شرکت کنند هیجان‌زده می‌شویم.

  1. سلام وقتتون بخیر
    هفتمین آزمون جاواکاپ به صورت آنلاین برگزار میشه؟
    و اینکه نسخه 7 جاوا مورد سوال خواهد بود یا 8 یا 9؟
    ممنون از سایت خوبتون مطالبش عالیه =)

    1. سلام
      بله به صورت آنلاین برگزار می‌شه.
      در بخش جاوای استاندارد، اکثر سوالات رو با نسخه 7 هم می‌تونید جواب بدید. احتمالا یک سوال اختصاصی از نسخه 8 باشد. از نسخه‌های 9 به بعد هم سوالی نمی‌دهیم.

  2. با سلام و احترام و تشکر از تمام زحماتتون
    با تسلط بر مباحث مطرح شده در ویدئوهای آموزشی سایت جاواکاپ و همچنین کتاب “چگونه با جاوا برنامه بنویسیم ویرایش دهم ” میتونم نمره ی خوبی در مسابقه بگیرم ؟
    و یا اینکه منابعی که بالا معرفی کردید رو حتما باید بخونم ؟ مطالعه ی منابع بالا در حال حاضر برام مقدور نیست ( منابع انگلیسی خیلی ازم زمان میگیره و الان فرصتش رو ندارم ) و میخوام تمرکزم روی دو منبعی که ذکر کردم باشه .
    با تشکر .

  3. با عرض سلام و خسته نباشید
    چقدر از سرفصل‌های جاوای حرفه‌ای در ویدیو‌هاتون موجود است؟ تا اونجا که من تو لیست ویدیو‌هاتون دیدم قسمت مباحث پیشرفته (Patterns، JUnit، Refactoring، Performance Tunningو …) وجود نداره. طرح سوال از این قسمت چطور انجام میشه؟ چون برخی مباحث این قسمت گسترده است و نمیتوان برای یک آزمون بهش تسلط کامل پیدا کرد.

  4. Excellent blog right here! Also your site lots up very fast! What web host are you the use of? Can I get your affiliate hyperlink for your host? I desire my website loaded up as quickly as yours.

  5. سلام
    من از این مسابقات خیلی خوشم میاد
    .
    .
    .
    فقط کد نویسیش رو دوست دارم
    آیا مسابقات کد نویسی هم دارید در j2se ؟؟

    قول میدم از صد نمره صد بگیرم

    بی صبرانه منتظر جوابتون هستم

    1. مسابقه جاواکاپ فعلاً فقط به صورت کتبی برگزار می‌شود.

      البته طراحی اين مسابقات به گونه‌ای است که توانایی برنامه‌نويسی، تجربه، دانش و توان حل مسأله شرکت‌کنندگان را ارزيابی می‌کند.

      1. برای ثبت نام تو دوره بعدی باید چکار کنیم و کجا ثبت نام کنیم
        ممنون میشم راهنمایی کنید

        1. سلام
          شروع و نحوه ثبت‌نام در سایت و شبکه‌های اجتماعی جاواکاپ اطلاع‌رسانی خواهد شد.

دیدگاهتان را بنویسید

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *

دکمه بازگشت به بالا