สรุปบทเรียน การเขียนโปรแกรมเชิงวัตถุเบื้องต้น 1

สรุปบทเรียน การเขียนโปรแกรมเชิงวัตถุเบื้องต้น 1

12th Grade

60 Qs

quiz-placeholder

Similar activities

ข้อสอบปลายภาค-ม.6-1-2567

ข้อสอบปลายภาค-ม.6-1-2567

9th - 12th Grade

57 Qs

การใช้ Photoshop เบื้องต้น

การใช้ Photoshop เบื้องต้น

10th Grade - University

60 Qs

ข้อสอบกลางภาค วิชาเทคโนโลยีและการออกแบบ ม.3 ปี 1/2567

ข้อสอบกลางภาค วิชาเทคโนโลยีและการออกแบบ ม.3 ปี 1/2567

12th Grade

60 Qs

31910-2008  การประยุกต์ AI สําหรับงานธุรกิจ

31910-2008 การประยุกต์ AI สําหรับงานธุรกิจ

9th - 12th Grade

60 Qs

ข้อสอบปลายภาคเรียนที่ 1-2567 องค์ประกอบศิลป์สำหรับงานกราฟิก

ข้อสอบปลายภาคเรียนที่ 1-2567 องค์ประกอบศิลป์สำหรับงานกราฟิก

12th Grade

60 Qs

รวมข้อสอบวิทยาการคำนวณปลายภาค

รวมข้อสอบวิทยาการคำนวณปลายภาค

12th Grade

60 Qs

ข้อสอบวิทยาศาสตร์

ข้อสอบวิทยาศาสตร์

12th Grade

60 Qs

การพัฒนาโครงงาน ม.4

การพัฒนาโครงงาน ม.4

9th - 12th Grade

60 Qs

สรุปบทเรียน การเขียนโปรแกรมเชิงวัตถุเบื้องต้น 1

สรุปบทเรียน การเขียนโปรแกรมเชิงวัตถุเบื้องต้น 1

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Anuwat Jaidee

Used 3+ times

FREE Resource

60 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

ถ้าต้องการเข้าถึงสมาชิกตัวแรกในอาร์เรย์ arr จะต้องใช้คำสั่งใด

arr[0];

arr[1];

arr.first();

arr.begin;

2.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

คำสั่งใดใช้สำหรับประกาศอาร์เรย์ของจำนวนเต็ม

int array = new int[10];

int[] array = new int[10];

array int = new [10];

new int[10] array;

3.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

ผลลัพธ์ของโปรแกรมต่อไปนี้คืออะไร

int[] arr = {1, 2, 3, 4, 5};

System.out.println(arr[5]);

5

0

Error: ArrayIndexOutOfBoundsException

ไม่สามารถรันโปรแกรมได้

4.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

ผลลัพธ์ของโปรแกรมต่อไปนี้คืออะไร

int[] arr = {1, 2, 3, 4, 5};

System.out.println(arr.length);

4

2

3

5

5.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

คำสั่งใดใช้ในการเข้าถึงสมาชิกตัวที่ 3 ของอาร์เรย์ numbers

int[] numbers = {10, 20, 30, 40, 50};

numbers[2];

numbers[3];

numbers(2);

numbers(3);

6.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

ผลลัพธ์ของโค้ดต่อไปนี้ คืออะไร

int[][] array = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} };

System.out.println(array[1][2]);

2

4

6

8

7.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

ถ้าเราต้องการสร้างอาร์เรย์ 2 มิติขนาด 3x4 (3 แถว 4 คอลัมน์) และกำหนดค่าเริ่มต้นเป็น 0 ควรใช้คำสั่งใด

int[] array = new int[3][4];

int[][] array = new int[4][3];

int array = new int[3][4];

int[][] array = new int[3][4];

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?