java-language – programming-java – কুইজ মডেল টেস্ট অনুশীলন – 9
7824. Suppose that you would like to create an instance of a new Map that has an iteration order that is the same as the iteration order of an existing instance of a Map. Which concrete implementation of the Map interface should be used for the new instance?
- LinkedHashMap
- The answer depends on the implementation of the existing instance.
- TreeMap
- HashMap
7825. __________ translates high-level language program into machine language program
- An assembler
- CPU
- A compiler
- The operating system
7826. Given: int x= 12; while (x < 10) { x–; } System.out.print(x); What is the result?
- 0
- 10
- Last line will never be reached.
- 12
7827. Given: int i = 0; for (; i < 4; i += 2) { System.out.print(i + “ “); } System.out.println(i); What is the result?
- 0 2 4
- 0 2 4 5
- 0 1 2 3 4
- Compilation fails.
7828. Given: int x = l, y = 6; while (y–) { x++; } System.out.println(x = + x + y = + y); What is the result?
- Compilation fails.
- x = 6 y = -1
- x = 7 y = 0
- x = 6 y = 0
7829. Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
- rem = 3.14 % 2.1;
- Remainder cannot be obtain in floating point division.rem = modf(3.14
- 2.1);rem = fmod(3.14
- 2.1);”;}}
7830. Which of the following class level (nonlocal) variable declarations will not compile?
- protected int a;
- private synchronized int e;
- transient int b = 3;
- volatile int d;
7831. Java was developed by ____________
- IBM
- Oracle
- Sun Microsystems
- Microsoft
7832. Overloaded methods ____
- may fail unexpectedly due to stress.
- are a group of methods with the same name
- make life simpler for programmer
- have the same number and type of arguments
আমাদের কাছে থাকা লক্ষ লক্ষ মডেল টেস্ট থেকে প্রাকটিজের জন্য কিছু এখানে তুলে ধরা হল। প্রতিটি অধ্যায়ের উপরে ইশিখন.কম কুইজ চ্যালেঞ্জ এ আছে শত শত মডেল টেস্ট বার বার মডেল টেস্ট দিয়ে নিজেকে যাচাই কর এবং পুরো বাংলাদেশের সকল শিক্ষার্থীর সাথে আপনার মেধা তালিকা দেখুন। প্রশ্নে কোন প্রকার ভুল থাকলে সঠিক উত্তরসহ নিচে কমেন্ট করে জানাবেন, আমরা ঠিক করে দেবো।
0 responses on "java-language - programming-java - কুইজ মডেল টেস্ট অনুশীলন - 9"