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

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

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

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

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

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

السؤال #1
Given the code fragment: class CallerThread implements Callable { String str; public CallerThread(String s) {this.str=s;} public String call() throws Exception { return str.concat(“Call”); } } and public static void main (String[] args) throws InterruptedException, ExecutionException { ExecutorService es = Executors.newFixedThreadPool(4); //line n1 Future f1 = es.submit (newCallerThread(“Call”)); String str = f1.get().toString(); System.out.println(str); } Which statement is true?
A. The program prints Call Call and terminates
B. The program prints Call Call and does not terminate
C. A compilation error occurs at line n1
D. An ExecutionException is thrown at run time
عرض الإجابة
اجابة صحيحة: D
السؤال #2
Given: and the code fragment: Which definition of the ColorSorter class sorts the blocks list?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: A
السؤال #3
Given the code fragment: List colors = Arrays.asList(“red”, “green”, “yellow”); Predicate test = n - > { System.out.println(“Searching…”); return n.contains(“red”); }; colors.stream() .f ilter(c -> c.length() > 3) .allMatch(test); What is the result?
A. Searching
B. Searching
C. Searching
D. A compilation error occurs
عرض الإجابة
اجابة صحيحة: B
السؤال #4
Given: Book.java: public class Book { private String read(String bname) { return “Read” + bname } } EBook.java: public class EBook extends Book { public class String read (String url) { return “View” + url } } Test.java: public class Test { public static void main (String[] args) { Book b1 = new Book(); b1.read(“Java Programing”); Book b2 = new EBook(); b2.read(“http://ebook.com/ebook”); } } What is the result?
A. Read Java Programming View http:/ ebook
B. Read Java Programming Read http:/ ebook
C. The EBook
D. The Test
عرض الإجابة
اجابة صحيحة: A
السؤال #5
Given that course.txt is accessible and contains: Course : : Java and given the code fragment: public static void main (String[ ] args) { int i; char c; try (FileInputStream fis = new FileInputStream (“course.txt”); InputStreamReader isr = new InputStreamReader(fis);) { while (isr.ready()) { //line n1 isr.skip(2); i = isr.read (); c = (char) i; System.out.print(c); } } catch (Exception e) { e.printStackTrace(); } } What is the result?
A. ur :: va
B. ueJa
C. The program prints nothing
D. A compilation error occurs at line n1
عرض الإجابة
اجابة صحيحة: D
السؤال #6
Given the code fragment: UnaryOperator uo1 = s -> s*2; line n1 List loanValues = Arrays.asList(1000.0, 2000.0); loanValues.stream() .filter(lv -> lv >= 1500) .map(lv -> uo1.apply(lv)) .forEach(s -> System.out.print(s + “ “)); What is the result?
A. 4000
B. 4000
C. A compilation error occurs at line n1
D. A compilation error occurs at line n2
عرض الإجابة
اجابة صحيحة: D
السؤال #7
Given: and the code fragment: What is the result?
A. [Java EE: Helen:Houston][Java ME: Jessy:Chicago, Java ME: Mark:Chicago]
B. Java EEJava ME
C. [Java ME: Jessy:Chicago, Java ME: Mark:Chicago] [Java EE: Helen:Houston]
D. A compilation error occurs
عرض الإجابة
اجابة صحيحة: B
السؤال #8
Given: and this code fragment: What is the result?
A. Open-Close– Exception – 1 Open–Close–
B. Open–Close–Open–Close–
C. A compilation error occurs at line n1
D. Open–Close–Open–
عرض الإجابة
اجابة صحيحة: A
السؤال #9
Given the code fragments: class Caller implements Callable { String str; public Caller (String s) {this.str=s;} public String call()throws Exception { return str.concat (“Caller”);} } class Runner implements Runnable { String str; public Runner (String s) {this.str=s;} public void run () { System.out.println (str.concat (“Runner”));} } and public static void main (String[] args) InterruptedException, ExecutionException { ExecutorService es = Executors.newFixedThreadPool(2); Future f1 = es.submit (ne
A. The program prints: Run RunnerCall Caller : nullAnd the program does not terminate
B. The program terminates after printing: Run RunnerCall Caller : Run
C. A compilation error occurs at line n1
D. An Execution is thrown at run time
عرض الإجابة
اجابة صحيحة: C
السؤال #10
What is the result?
A. A compilation error occurs at line 7
B. 100
C. A compilation error occurs at line 8
D. A compilation error occurs at line 15
عرض الإجابة
اجابة صحيحة: A
السؤال #11
Given that data.txt and alldata.txt are accessible, and the code fragment: What is required at line n1 to enable the code to overwrite alldata.txt with data.txt?
A. br
B. bw
C. br
D. bw
عرض الإجابة
اجابة صحيحة: A

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

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

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

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