Java Qarışıq Kuiz
Java qarışıq suallardan ibarət kuiz. Uğurlar!
1. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
String str = "Java";
str = str.concat(" Azərbaycan");
System.out.println(str);
}
}
Doğru
Yanlış
2. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
int x = 10;
int y = ++x * 10 / x++ + ++x;
System.out.println(y);
}
}
Doğru
Yanlış
3. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
String str = null;
try {
System.out.println(str.length());
} catch (NullPointerException e) {
System.out.println("NullPointerException xətası");
}
}
}
Doğru
Yanlış
4. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
int[][] arr = {
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}
};
System.out.println(arr[1][2]);
}
}
Doğru
Yanlış
5. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
try {
int result = 10 / 0;
System.out.println(result);
} catch (ArithmeticException e) {
System.out.println("ArithmeticException xətası");
} finally {
System.out.println("Finally blok");
}
}
}
Doğru
Yanlış
6. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
StringBuilder sb = new StringBuilder("Java");
sb.append(" Azərbaycan");
sb.insert(5, "Kuiz ");
System.out.println(sb);
}
}
Doğru
Yanlış
7. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
String str = "Hello";
str.replace('l', 'p');
System.out.println(str);
}
}
Doğru
Yanlış
8. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4, 5};
int sum = 0;
for (int num : arr) {
if (num % 2 == 0) {
continue;
}
sum += num;
}
System.out.println(sum);
}
}
Doğru
Yanlış
9. Aşağıdakı kodun çıxışı nə olacaq?
class Parent {
public void display() {
System.out.println("Parent Display");
}
}
class Child extends Parent {
public void display() {
System.out.println("Child Display");
}
}
public class Test {
public static void main(String[] args) {
Parent obj = new Child();
obj.display();
}
}
Doğru
Yanlış
10. Aşağıdakı kodun çıxışı nə olacaq?
public class Test {
public static void main(String[] args) {
int i = 1;
while (i <= 5) {
if (i == 3) {
break;
}
System.out.println(i);
i++;
}
}
}