لا تريد أن تفوت شيئا؟

نصائح اجتياز امتحان الشهادة

آخر أخبار الامتحانات ومعلومات الخصم

برعاية وحديثة من قبل خبرائنا

نعم، أرسل لي النشرة الإخبارية

خذ اختبارات أخرى عبر الإنترنت

السؤال #1
A company has an existing Java app that includes two Java 8 jar files, sales-3.10. jar and clients-10.2.jar.The jar file ,sales -8, 10, jar reference packages in clients -10.2 jar, but clients-10.2 jar does notreference packages in sales -8.10, jar.They have decided to modularize clients-10.2.jar.Which module-info. Java file would work for the new library version clients-10.3 jar?A)B)C)D)
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: C
السؤال #2
Which two modules include APIs in the Java SE Specification? (Choose two.)
A. java
B. java
C. javafx
D. jdk
E. jdk
عرض الإجابة
اجابة صحيحة: C
السؤال #3
Given the code fragment:What is the result?A)B)C)D)
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: C
السؤال #4
Given:What is the result?
A. Take extra care
B. The program prints nothing
C. Take extra care Take extra care
D. An exception is thrown at runtime
عرض الإجابة
اجابة صحيحة: D
السؤال #5
Given this enum declaration: Examine this code: System.out.println(Alphabet.getFirstLetter()); What code should be written at line 3 to make this code print A?
A. final String getFirstLetter() { return A
B. static String getFirstLetter() { return Alphabet
C. static String getFirstLetter() { return A
D. String getFirstLetter() { return A
عرض الإجابة
اجابة صحيحة: AB
السؤال #6
Given:What is the result?A)B)C)D)
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: A
السؤال #7
Given:You want to examine the items list it contains an item for which the variable count is below zero.Which code fragment at line 1 accomplish this?
A. If (items
B. If (items
C. If (items
D. If (items
عرض الإجابة
اجابة صحيحة: A
السؤال #8
Given the code fragment:What is the result?
A. 13 5 7 9
B. 1 3 5 7 9 11
C. 2 4 6 B 10
D. 2 4 6 8
عرض الإجابة
اجابة صحيحة: B
السؤال #9
What is the result?
A. 85
B.
C. he compilation fails
D. 0
E. 5
عرض الإجابة
اجابة صحيحة: A
السؤال #10
Given:What is the result?
A. 2134
B. 234
C. 2341
D. 214
عرض الإجابة
اجابة صحيحة: A
السؤال #11
You want to calculate the average of the Player's score. Which statement inserted on line 1 will accomplish this?
A. layers
B. layers
C. layers
D. layers
عرض الإجابة
اجابة صحيحة: B
السؤال #12
How many Thing objects are eligible for garbage collection in line 1?
A. 3
B. 2
C. 0
D. 1
E. 4
عرض الإجابة
اجابة صحيحة: D
السؤال #13
Given the code fragment:Which two statement inserted independently at line 1 enable this code to print PRRT?
A. i—;
B. continue b;
C. break b;
D. j--;
E. continue a;
F. break a ;
عرض الإجابة
اجابة صحيحة: F
السؤال #14
Given the code fragment: Which can replace line 2?
A. naryOperator u = (int i) -> i * 2;
B. naryOperator u = (var i) -> (i * 2);
C. naryOperator u = var i -> { return i * 2; };
D. naryOperator u = i -> { return i * 2);
عرض الإجابة
اجابة صحيحة: B
السؤال #15
Given:You want to implement the java. Io, serializable interface to the MypersisteneData class.Which method should be overriden?
A. The readExternal and writeExternal method
B. The readExternal method
C. The writeExternal method
D. nothing
عرض الإجابة
اجابة صحيحة: A
السؤال #16
What is the type of x?
A. char
B. List
C. String
D. List
عرض الإجابة
اجابة صحيحة: BE
السؤال #17
Given the Customer table structure: ID Number Primary Key NAME Text NullableGiven code fragment:Which statement inserted on line 14 sets NAME column to a NULL value?
A. Stmt
B. Stmt
C. Stmt
D. Stmt
عرض الإجابة
اجابة صحيحة: A
السؤال #18
Given the code fragment:What is the result?
A. 2
B. -1
C. 1
D. -3
عرض الإجابة
اجابة صحيحة: A
السؤال #19
Given:A) An exception is thrown at run time.B)C) The compilation fails due to an error on line 2.D) The compilation fails due to an error on line 1.E)F)The compilation fails due to an error on line 3.
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
F. Option F
عرض الإجابة
اجابة صحيحة: A
السؤال #20
Given:What is the result?
A. Keys: 4 Values: 4 Map: 0
B. Keys: 4 Values: 4 Map: 4
C. The compilation fails
D. Keys: 0 Values: 0 Map:
E. Keys: 0 Values: 0 Map: 0
عرض الإجابة
اجابة صحيحة: B
السؤال #21
Which statement on line 1 enables this code fragment to compile?
A. Function function = String::toUpperCase;
B. UnaryOperator function = s > s
C. UnaryOperator function = String::toUpperCase;
D. Function function = m > m
عرض الإجابة
اجابة صحيحة: C
السؤال #22
Given:Which three classes successfully override showFirst ()?A)B)C)D)E)F)
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
F. Option F
عرض الإجابة
اجابة صحيحة: C
السؤال #23
Why would you choose to use a peek operation instead of a forEach operation on a Stream?
A. o process the current item and return void
B. o remove an item from the end of the stream
C. o process the current item and return a stream
D. o remove an item from the beginning of the stream
عرض الإجابة
اجابة صحيحة: C
السؤال #24
What is the output?
A. 2 [1, 2, 3, four] 3 four
B. 2 [1, 2, 3, 4] 3 4
C. 2 [1, 2, 3, 4] 3 four
D. 2 [1, 2, 3, four] 3 4
عرض الإجابة
اجابة صحيحة: B

عرض الإجابات بعد التقديم

يرجى إرسال البريد الإلكتروني الخاص بك والواتس اب للحصول على إجابات الأسئلة.

ملحوظة: يرجى التأكد من صلاحية معرف البريد الإلكتروني وWhatsApp حتى تتمكن من الحصول على نتائج الاختبار الصحيحة.

بريد إلكتروني:
رقم الواتس اب/الهاتف: