Mục tiêu bài viết
- Ôn tập kiến thức lập trình Java, Android trên thiết bị di động.
- Xâu chuỗi lại các kiến thức học phần.
- Nhằm đánh giá lại kết quả học tập.
Module 1-Ôn tập Java
Quiz-summary
0 of 70 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 70 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
- Cái tâm thể hiện cái tầm mỗi người!
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- Answered
- Review
- Question 1 of 70
1. Question
Bộ phận nào tạo ra máy ảo Java?CorrectIncorrect - Question 2 of 70
2. Question
Tìm dòng sai trong đoạn mã sau:1: public class ChaoBan
2: {
3: public static void Main (String[] args)
4: {
5: System.out.println("Chào bạn đã đến với Java");
6: }
7: }
CorrectIncorrect - Question 3 of 70
3. Question
Tìm dòng sai trong đoạn mã sau:1: public Class Chao Ban
2: {
3: public static void main (String[] args)
4: {
5: System.out.println("Chào bạn đã đến với Java");
6: }
7: }
CorrectIncorrect - Question 4 of 70
4. Question
Tìm dòng sai trong đoạn mã sau:1: public class ChaoBan
2: {
3: public static void main (String[] args)
4: {
5: System.Out.println("Chào bạn đã đến với Java");
6: }
7: }
CorrectIncorrect - Question 5 of 70
5. Question
Khi chạy, chương trình sau cho kết quả nào?public class TinhToan
{
public static void main(String[] args)
{
a=1;
b=2;
c=3;
s=a+b+c;
System.out.println("S="+s);
}
}
CorrectIncorrect - Question 6 of 70
6. Question
Khi chạy, chương trình sau cho kết quả nào?public class TinhToan
{
public static void main(String[] args)
{
int a, b, c, s
a=10;
b=20;
c=30;
s=a*b*c;
System.out.Println("S="+s);
}
}
CorrectIncorrect - Question 7 of 70
7. Question
Khi chạy chương trình sau cho kết quả nào?public class TinhToan
{
public static void main(String[] args)
{
int a, b, c, s
a=10;
b=20;
c=30;
s=a*b*c;
System.out.println("S="+s);
}
}
CorrectIncorrect - Question 8 of 70
8. Question
Khi chạy chương trình sau cho kết quả nào?public class ViDu
{
public static void main(String[] args)
{
int i;
i=1;
if (i<1)
{
System.out.println("I="+(i+3));
}
else
{
System.out.println("I="+(i+5));
}}
}
CorrectIncorrect - Question 9 of 70
9. Question
Khi chạy chương trình sau cho kết quả nào?public class LenhChon
{
public static void main(String[] args)
{
int i;
i=11;
switch (i)
{
case 1:
System.out.println("I="+(i+9));
break;
case 2:
System.out.println("I="+(i+5));
break;
default:
System.out.println("I="+(i+3));
}
}
}
CorrectIncorrect - Question 10 of 70
10. Question
Khi chạy, chương trình sau cho kết quả nào?public class TinhTong
{
public static void main(String[] args)
{
int s,i;
for (i=1;i<=3;i++) { s=0; s=s+i; } System.out.println("s="+s); } }CorrectIncorrect - Question 11 of 70
11. Question
Khi chạy, chương trình sau cho kết quả nào?public class TinhTong
{
public static void main(String[] args)
{
int s,i;
for (i=1;i<=3;i++) { s=s+i; s=0; } System.out.println("s="+s); } }CorrectIncorrect - Question 12 of 70
12. Question
Khi chạy, chương trình sau cho kết quả nào?public class TinhTong
{
public static void main(String[] args)
{
int s,i;
s=0;
for (i=1;i<=3;i++) { s=s+i; s=s+1; } System.out.println("s="+s); } }CorrectIncorrect - Question 13 of 70
13. Question
Khi chạy, chương trình sau sẽ cho kết quả nào?public class TinhTong
{
public static void main(string[] args)
{
int s,i;
s=0; i=1;
while (i<=3) { s=s+i; i=i+1; } System.out.println("s="+s); } }CorrectIncorrect - Question 14 of 70
14. Question
Khi chạy, chương trình sau sẽ cho kết quả nào?public class TongMang
{
public static void main(String[] args)
{
int [] a;
int s;
int i;
a[0]=1;
a[1]=2;
a[2]=5;
for (i=0; i<3; i++)
s=s+a[i];
System.out.println(“s=”+s);
}
}
CorrectIncorrect - Question 15 of 70
15. Question
File chứa mã nguồn java sau khi được biên dịch có đuôi là gì?CorrectIncorrect - Question 16 of 70
16. Question
Java platform gồm mấy thành phần?CorrectIncorrect - Question 17 of 70
17. Question
Java Virtual Machine là gì?CorrectIncorrect - Question 18 of 70
18. Question
Java chạy trên hệ điều hành nào sau đây:CorrectIncorrect - Question 19 of 70
19. Question
API là gì?CorrectIncorrect - Question 20 of 70
20. Question
Có bao nhiêu cách viết chú thích trong Java?CorrectIncorrect - Question 21 of 70
21. Question
Thứ tự các từ khóa public và static khi khai bao như thế nào?CorrectIncorrect - Question 22 of 70
22. Question
Trong Java các dạng chú thích sau, dạng nào SAI?CorrectIncorrect - Question 23 of 70
23. Question
Khi biên dịch gặp lỗi Exception in thread main java.lang.NoClassDefFoundError: myprogram. Lỗi này có nghĩa gì?CorrectIncorrect - Question 24 of 70
24. Question
Đối tượng trong phần mềm là gì?CorrectIncorrect - Question 25 of 70
25. Question
Khai báo lớp nào dưới đây là đúng?CorrectIncorrect - Question 26 of 70
26. Question
Trong Java cách đặt tên nào sau đây là sai?CorrectIncorrect - Question 27 of 70
27. Question
Một chương trình gồm 2 class sẽ có bao nhiêu phương thức main?CorrectIncorrect - Question 28 of 70
28. Question
Một lớp trong Java có thể có bao nhiêu lớp cha?CorrectIncorrect - Question 29 of 70
29. Question
Một lớp trong Java có bao nhiêu lớp con?CorrectIncorrect - Question 30 of 70
30. Question
Để khai báo lớp Xedap1 kế thừa lớp Xedap phải làm như thế nào?CorrectIncorrect - Question 31 of 70
31. Question
Chọn câu trả lời đúng nhất. Interface là gì?CorrectIncorrect - Question 32 of 70
32. Question
Để sử dụng giao diện Xedap cho lớp Xedap1, ta làm thế nào?CorrectIncorrect - Question 33 of 70
33. Question
Có bao nhiêu loại biến trong Java?CorrectIncorrect - Question 34 of 70
34. Question
Trường dữ liệu là các biến dạng nào sau đây?CorrectIncorrect - Question 35 of 70
35. Question
Biến dữ liệu là các biến dạng nào sau đây?CorrectIncorrect - Question 36 of 70
36. Question
Biến f nào sau đây là biến đại diện?CorrectIncorrect - Question 37 of 70
37. Question
Cách đặt tên nào sau đây là không chính xác?CorrectIncorrect - Question 38 of 70
38. Question
Có bao nhiêu kiểu dữ liệu cơ sở trong Java?CorrectIncorrect - Question 39 of 70
39. Question
Có bao nhiêu kiểu số nguyên trong Java?CorrectIncorrect - Question 40 of 70
40. Question
Khái niệm phương thức start()?CorrectIncorrect - Question 41 of 70
41. Question
Lệnh str.charat(n) có tác dụng gì?CorrectIncorrect - Question 42 of 70
42. Question
Trong Java, kiểu char biểu diễn bộ mã code nào dưới đây?CorrectIncorrect - Question 43 of 70
43. Question
Hai câu lệnh sau ra kết quả s là bao nhiêu?String greetings = “Hello”
String s = greetings.substring(0,3);
CorrectIncorrect - Question 44 of 70
44. Question
Kiểu enum là gì?CorrectIncorrect - Question 45 of 70
45. Question
Có bao nhiêu loại quyền truy cập trong JAVA?CorrectIncorrect - Question 46 of 70
46. Question
Nếu không khai báo từ khóa chỉ phạm vi truy cập, phạm vi truy cập của đối tượng là gì?CorrectIncorrect - Question 47 of 70
47. Question
Phạm vi truy cập của một đối tượng khi khai báo private là gì?CorrectIncorrect - Question 48 of 70
48. Question
Phạm vi truy cập của một đối tượng khi được khai bao protected là gì?CorrectIncorrect - Question 49 of 70
49. Question
Phạm vi truy cập của một đối tượng khi được khai báo public là gì?CorrectIncorrect - Question 50 of 70
50. Question
Khi có nhiều component được gắn các bộ lắng nghe của cùng một loại sự kiện thì component nào sẽ nhận được sự kiện đầu tiên?CorrectIncorrect - Question 51 of 70
51. Question
Chọn phát biểu đúngCorrectIncorrect - Question 52 of 70
52. Question
Chọn các component có phát sinh action eventCorrectIncorrect - Question 53 of 70
53. Question
Chọn phát biểu đúng?CorrectIncorrect - Question 54 of 70
54. Question
Giả sữ chúng ta có thể hiện e của bộ lắng nghe sự kiện TextEvent và thể hiện t của lớp TextArea. Cho biết cách để gắn bộ lắng nghe e vào t?CorrectIncorrect - Question 55 of 70
55. Question
Cho một component comp và một container cont có kiểu trình bày là BorderLayout. Cho biết cách để gắn comp vào vị trí đầu của cont?CorrectIncorrect - Question 56 of 70
56. Question
Chọn phương thức dùng để xác định cách trình bày của một khung chứa?CorrectIncorrect - Question 57 of 70
57. Question
Chọn phương thức dùng để xác định vị trí và kích thước của các component?CorrectIncorrect - Question 58 of 70
58. Question
Chọn phương thức để hiện thị Frame lên màn hình?CorrectIncorrect - Question 59 of 70
59. Question
Chọn phát biểu đúng?CorrectIncorrect - Question 60 of 70
60. Question
Chọn khai báo đúng cho phương thức main()CorrectIncorrect - Question 61 of 70
61. Question
Phương thức nào dùng để tìm kiếm một chuỗi trong một chuỗi khác trong class String của Java?CorrectIncorrect - Question 62 of 70
62. Question
Trong Java, kiểu dữ liệu nào là một địa chỉ của đối tượng hoặc một mảng được tạo ra trong bộ nhớ?CorrectIncorrect - Question 63 of 70
63. Question
Java cung cấp một số câu lệnh làm thay đổi dòng điều khiển dựa trên các điều kiện. Lệnh nào dừng việc hoạt động của vòng lòng trong cùng và bắt đầu câu lệnh tiếp theo ngay sau khối lệnh?CorrectIncorrect - Question 64 of 70
64. Question
Lệnh nào ngừng vòng lặp hiện thời và bắt đầu vòng lặp tiếp theo?CorrectIncorrect - Question 65 of 70
65. Question
Hàm nào sau đây có thể được sử dụng đối với output có định dạng?CorrectIncorrect - Question 66 of 70
66. Question
Cho String str = “univerity”, lệnh nào dưới đây lấy chuỗi “univer” và gắn vào chuỗi str1?CorrectIncorrect - Question 67 of 70
67. Question
Lệnh charAt(n) có tác dụng gì?CorrectIncorrect - Question 68 of 70
68. Question
Hàm nào sau đây có thể được sử dụng đối với output có định dạng?CorrectIncorrect - Question 69 of 70
69. Question
Định nghĩa interface nào sau đây là không hợp lệ?CorrectIncorrect - Question 70 of 70
70. Question
Cho String str = “univerity”, lệnh nào dưới đây lấy chuỗi “univer” và gắn vào chuỗi str1?CorrectIncorrect
Module 2-Ôn tập Android Cơ bản
Quiz-summary
0 of 50 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 50 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
- Cái tâm thể hiện cái tầm mỗi người!
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- Answered
- Review
- Question 1 of 50
1. Question
Thành phần nào để truyền dữ liệu giữa các activities trong Android?CorrectIncorrect - Question 2 of 50
2. Question
Những layouts nào không có trong android?CorrectIncorrect - Question 3 of 50
3. Question
Đâu là layout trong Android?CorrectIncorrect - Question 4 of 50
4. Question
Để truy cập nội dung từ giao diện người dùng của Android ta chọn phương thức nào?CorrectIncorrect - Question 5 of 50
5. Question
Lớp anonymous trong Android là?CorrectIncorrect - Question 6 of 50
6. Question
Hiện tại (29/7/202), Phiên bản cao nhất dành cho Windows của Android Studio là?CorrectIncorrect - Question 7 of 50
7. Question
Hiện tại (29/7/2020) phiên bản cao nhất của Android là?CorrectIncorrect - Question 8 of 50
8. Question
Hiện tại (29/7/2020) phiên bản cao nhất của Jdk là?CorrectIncorrect - Question 9 of 50
9. Question
Điện thoại đầu tiên sử dụng hệ điều hành Android là?CorrectIncorrect - Question 10 of 50
10. Question
Một class cho phép hiển thị thông báo trên cửa sổ logcat là?CorrectIncorrect - Question 11 of 50
11. Question
Tùy chọn nút (button) có thể được chọn từ danh mục bảng nào?CorrectIncorrect - Question 12 of 50
12. Question
Theo mặc định trong android studio, trong quá trình phát triển ứng dụng, tập tin chứa thông tin về các tính năng và thành phần cơ bản của ứng dụng là:CorrectIncorrect - Question 13 of 50
13. Question
Hệ điều hành nền tảng cho Android là:CorrectIncorrect - Question 14 of 50
14. Question
Thành phần quản lý giao diện và định dạng trên màn hình trong Android được gọi là:CorrectIncorrect - Question 15 of 50
15. Question
Môi trường Android cần thiết để phát triển được gọi là:CorrectIncorrect - Question 16 of 50
16. Question
Trong android studio, các tùy chọn nhanh có thể được truy cập từ:CorrectIncorrect - Question 17 of 50
17. Question
Theo mặc định trong android studio trong quá trình phát triển ứng dụng, thư mục được tạo cho các tệp xml làCorrectIncorrect - Question 18 of 50
18. Question
Một kiểu của bố cục trình bày cho phép bố trí tất cả các phần tử theo thứ tự là:CorrectIncorrect - Question 19 of 50
19. Question
Một lớp dùng để hiển thị thông điệp toast cho người dùng là:CorrectIncorrect - Question 20 of 50
20. Question
Thành phần Android mà hiển thị một phần của activity trên màn hình được gọi là:CorrectIncorrect - Question 21 of 50
21. Question
Layout hoặc thiết kế của ứng dụng android được lưu trong file:CorrectIncorrect - Question 22 of 50
22. Question
Theo mặc định trong android studio trong quá trình phát triển ứng dụng, tệp chứa thông tin về SDK, phiên bản, Id ứng dụng, v.v. là:CorrectIncorrect - Question 23 of 50
23. Question
Thư viện Android cung cấp thao tác văn bản và hiển thị ứng dụng là:CorrectIncorrect - Question 24 of 50
24. Question
Một loại phần tử bố trí cho phép mô tả vị trí tương đối các con của nó là:CorrectIncorrect - Question 25 of 50
25. Question
Android chủ yếu đang sử dụng bằng:CorrectIncorrect - Question 26 of 50
26. Question
Quá trình chuyển đổi Java thành dạng có thể đọc được của Android được gọi là:CorrectIncorrect - Question 27 of 50
27. Question
Đâu là IDE chính thức để phát triển Android?CorrectIncorrect - Question 28 of 50
28. Question
Một trong các thành phần ứng dụng, quản lý các dịch vụ nền của ứng dụng được gọi là:CorrectIncorrect - Question 29 of 50
29. Question
Một phần của android studio, hoạt động như một trình giả lập cho các thiết bị Android được gọi làCorrectIncorrect - Question 30 of 50
30. Question
Trong android studio, mỗi activity mới được tạo phải được định nghĩa bởi:CorrectIncorrect - Question 31 of 50
31. Question
Phương thức nào bạn sử dụng để ánh xạ đến các view của Android thông qua thuộc tính id?CorrectIncorrect - Question 32 of 50
32. Question
Liên minh các công ty để phát triển những tiêu chuẩn mở cho các thiết bị di động được công bố vào năm nào?CorrectIncorrect - Question 33 of 50
33. Question
Công ty nào phát triển Android đầu tiên?CorrectIncorrect - Question 34 of 50
34. Question
Chiếc điện thoại chạy hệ điều hành Android đầu tiên được bán ra là?CorrectIncorrect - Question 35 of 50
35. Question
Android Emulator có chức năng gì?CorrectIncorrect - Question 36 of 50
36. Question
Android hỗ trợ bao nhiêu định hướng?CorrectIncorrect - Question 37 of 50
37. Question
Phương thức nào sau đây được gọi trong một Activity khi một Activity khác được gọi?CorrectIncorrect - Question 38 of 50
38. Question
Thuộc tính nào sau đây được sử dụng để đặt màn hình activity theo hướng ngang?CorrectIncorrect - Question 39 of 50
39. Question
Để lập trình Android thì yêu cầu tối thiểu của bộ nhớ RAM là bao nhiêu?CorrectIncorrect - Question 40 of 50
40. Question
Trên màn hình Android Studio thì nội dung hiển thị của Logcat khi chạy chương trình có ý nghĩa gì?CorrectIncorrect - Question 41 of 50
41. Question
AVD Manager có chức năng gì?CorrectIncorrect - Question 42 of 50
42. Question
AndroidManifest có chức năng gì trong màn hình Android Studio?CorrectIncorrect - Question 43 of 50
43. Question
Thư mục java có chức năng gì trên cửa sổ Android Studio?CorrectIncorrect - Question 44 of 50
44. Question
Android Studio tách riêng một màn hình tương tác thành mấy thành phần?CorrectIncorrect - Question 45 of 50
45. Question
Để mở máy ảo Android Emulator ta chọn mục nào?CorrectIncorrect - Question 46 of 50
46. Question
Để sắp xếp các view trên giao diện theo chiều đứng hoặc chiều ngang thì ta chọn Layout nào?CorrectIncorrect - Question 47 of 50
47. Question
Muốn sắp xếp các view theo dạng cột và dòng thì ta dùng Layout nào?CorrectIncorrect - Question 48 of 50
48. Question
Thuộc tính nào bắt buộc phải khai báo lkhi sử dụng Layout?CorrectIncorrect - Question 49 of 50
49. Question
Thuộc tính android:capitalize trong view Textview có chức năng gì?CorrectIncorrect - Question 50 of 50
50. Question
Thuộc tính android:editable trong EditText có chức năng gì?CorrectIncorrect
Module 3-Ôn tập Android Nâng cao
Quiz-summary
0 of 50 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 50 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
- Cái tâm thể hiện cái tầm mỗi người!
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- Answered
- Review
- Question 1 of 50
1. Question
1 pointsTrong Table Layout khái niệm cột (column) được hiểu dựa vào đối tượng nào?CorrectIncorrect - Question 2 of 50
2. Question
1 pointsLớp cha của Service?CorrectIncorrect - Question 3 of 50
3. Question
1 pointsBạn có thể tắt một activity bằng cách gọi phương thức _______ của nóCorrectIncorrect - Question 4 of 50
4. Question
1 pointsKhi nào contentProvider được kích hoạt?CorrectIncorrect - Question 5 of 50
5. Question
1 pointsCác lớp con trực tiếp của Activity là gì?CorrectIncorrect - Question 6 of 50
6. Question
1 pointsCái nào KHÔNG liên quan đến fragment class?CorrectIncorrect - Question 7 of 50
7. Question
1 pointsSự khác biệt giữa Activity context và Application context?CorrectIncorrect - Question 8 of 50
8. Question
1 pointsNhững điểm quan trọng nào của thiết bị mà bạn nên xem xét khi thiết kế và phát triển ứng dụng của mình?CorrectIncorrect - Question 9 of 50
9. Question
1 pointsComponent nào không được kích hoạt bởi một Intent?CorrectIncorrect - Question 10 of 50
10. Question
1 pointsLý do chính để thay thế máy ảo Java bằng máy ảo Dalvik khi bắt đầu dự án là gì?CorrectIncorrect - Question 11 of 50
11. Question
1 pointsLớp Dialog trong Android là?CorrectIncorrect - Question 12 of 50
12. Question
1 pointsKhi phát triển ứng dụng Android, các nhà phát triển có thể test ứng dụng của họ trên?CorrectIncorrect - Question 13 of 50
13. Question
1 pointsTập tin nào chịu trách nhiệm thiết lập các quyền, Activity, Service, BroadCast Receiver,…cho ứng dụng?CorrectIncorrect - Question 14 of 50
14. Question
1 pointsPhần nào được sử dụng trong Android không phải là nguồn mở?CorrectIncorrect - Question 15 of 50
15. Question
1 pointsNếu bạn muốn chia sẻ dữ liệu trên tất cả các ứng dụng, bạn nên chọn cách nào?CorrectIncorrect - Question 16 of 50
16. Question
1 pointsTập tin XML nào chứa tất cả văn bản mà ứng dụng của bạn sử dụng?CorrectIncorrect - Question 17 of 50
17. Question
1 pointsSự khác biệt giữa Android API và Google API ?CorrectIncorrect - Question 18 of 50
18. Question
1 pointsTạo giao diện người dùng (User Interface) trong Android yêu cầu người dùng lưu ýCorrectIncorrect - Question 19 of 50
19. Question
1 pointsAndroid được tích hợp sẵn cơ sở dữ liệu nào?CorrectIncorrect - Question 20 of 50
20. Question
1 pointsTập tin quy định bố trí màn hình của bạn?CorrectIncorrect - Question 21 of 50
21. Question
1 pointsMột Activity có thể được coi là tương ứng với những gì?CorrectIncorrect - Question 22 of 50
22. Question
1 pointsCái gì chạy trong nền và không có thành phần UI?CorrectIncorrect - Question 23 of 50
23. Question
1 pointsĐể tạo một emulator, bạn cần có AVD. Dùng nó để làm gì?CorrectIncorrect - Question 24 of 50
24. Question
1 pointsBạn có thể sử dụng cách nào sau đây để hiển thị thanh tiến trình trong ứng dụng Android?CorrectIncorrect - Question 25 of 50
25. Question
1 pointsLớp nào sau đây có thể được sử dụng để xử lý chức năng Bluetooth trên thiết bị?CorrectIncorrect - Question 26 of 50
26. Question
1 pointsCó thể sử dụng lệnh gọi nào sau đây để khởi động Service từ ứng dụng Android của bạn?CorrectIncorrect - Question 27 of 50
27. Question
1 pointsĐiều nào sau đây là/phù hợp để lưu trạng thái của ứng dụng Android?CorrectIncorrect - Question 28 of 50
28. Question
1 pointsNên sử dụng cách nào sau đây để lưu dữ liệu chưa được lưu và giải phóng tài nguyên đang được ứng dụng Android sử dụng?CorrectIncorrect - Question 29 of 50
29. Question
1 pointsView nào sau đây là các View mà bạn có thể sử dụng trong cửa sổ của ứng dụng Android?CorrectIncorrect - Question 30 of 50
30. Question
1 pointsChức năng của lớp ContentProvider là gì?CorrectIncorrect - Question 31 of 50
31. Question
1 pointsLớp nào sau đây là lớp cha của lớp ứng dụng chính trong Android có giao diện người dùng?CorrectIncorrect - Question 32 of 50
32. Question
1 pointsSự khác biệt giữa margin và padding in android layout?CorrectIncorrect - Question 33 of 50
33. Question
1 pointsVòng đời của Activity trong Android là gì?CorrectIncorrect - Question 34 of 50
34. Question
1 pointsGiới hạn thời gian của broadcast receiver trong Android là gì?CorrectIncorrect - Question 35 of 50
35. Question
1 pointsKhông gian bên ngoài Widget có thể được điều chỉnh bằng cách?CorrectIncorrect - Question 36 of 50
36. Question
1 pointsMôi trường Java cần thiết để phát triển được gọi là?CorrectIncorrect - Question 37 of 50
37. Question
1 pointsKhông gian tuỳ chỉnh giữa cạnh của nội dung widget của widget bằng cách sử dụngCorrectIncorrect - Question 38 of 50
38. Question
1 pointsButton Option có thể được chọn từ danh mục Palette nào?CorrectIncorrect - Question 39 of 50
39. Question
1 pointsTrong Android Studio, thẻ hiển thị lỗi được gọi làCorrectIncorrect - Question 40 of 50
40. Question
1 pointsCác yêu cầu từ lớp Content Provider được xử lý bằng phương thức nào?CorrectIncorrect - Question 41 of 50
41. Question
1 pointsTrong giao diện người dùng Android,onClick
thật sự làCorrectIncorrect - Question 42 of 50
42. Question
1 pointsDalvik Virtual Machine (DVM) sử dụng nhân mã nguồn của:CorrectIncorrect - Question 43 of 50
43. Question
1 pointsPhương thức được gọi khi Service được tạo lần đầu tiên bằng cách sử dụng onStartCommand() hoặc onBind()là:CorrectIncorrect - Question 44 of 50
44. Question
1 pointsTrong android studio, các tùy chọn nhanh có thể được truy cập từ:CorrectIncorrect - Question 45 of 50
45. Question
1 pointsPhương thức được sử dụng để tạo thông báo Log trong android là:CorrectIncorrect - Question 46 of 50
46. Question
1 pointsTrong android studio, hoạt động chính cho ứng dụng phải được khai báo trong:CorrectIncorrect - Question 47 of 50
47. Question
1 pointsMột loại dịch vụ được cung cấp bởi Android giúp tạo giao diện người dùng là:CorrectIncorrect - Question 48 of 50
48. Question
1 pointsPhương thức nào dưới đây để lưu trữ dữ liệu vào Shared ReferenceCorrectIncorrect - Question 49 of 50
49. Question
1 pointsĐể hiển thị dữ liệu lên Listview, Spinner… ta phải dùng một bộ chuyển đổi dữ liệu phù hợp, trước khi nạp vào các đối tượng đó, ta gọi nó là:CorrectIncorrect - Question 50 of 50
50. Question
1 pointsVị trí lưu trữ cơ sở dữ liệu mặc định của ứng dụng trên thiết bịCorrectIncorrect
Trắc nghiệm Lập trình C Số 1
Quiz-summary
0 of 30 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 30 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score | |
Your score |
Categories
- Not categorized 0%
- Mọi thành công cần phải vượt qua thử thách!
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- Answered
- Review
- Question 1 of 30
1. Question
1 pointsĐâu là ký tự dùng để kết thúc một câu lệnh trong ngôn ngữ lập trình C?CorrectIncorrect - Question 2 of 30
2. Question
1 pointsPhát biểu nào sau đây là đúng?CorrectIncorrect - Question 3 of 30
3. Question
1 pointsCách khai báo biến nào sau đây là đúng?CorrectIncorrect - Question 4 of 30
4. Question
1 pointsĐâu là cách gán giá trị cho biến int x; chính xác?CorrectIncorrect - Question 5 of 30
5. Question
1 pointsCho đoạn code sau:
#include <stdio.h>; int main(){ int x = 2, y = 3, z = -1; int t = 3 * x / y - z * x + y % 5 / 2; return 0; }
Hỏi giá trị của t bằng bao nhiêu?
CorrectIncorrect - Question 6 of 30
6. Question
1 pointsBiết rằng trong ngôn ngữ lập trình C có 3 loại toán tử logic là: AND (&&), OR (||) và NOT (!). Hỏi kết quả của biểu thức10 && (-10) || 0 && !(-1)
là bao nhiêu?CorrectIncorrect - Question 7 of 30
7. Question
1 pointsCho đoạn code sau:int x = 2, y = 4, z = 3; int t = -2 * z / 5 <= 6 + !(x * y - z) && y % (2 * z - 3);
Hỏi đáp án của t bằng bao nhiêu?
CorrectIncorrect - Question 8 of 30
8. Question
1 pointsCách nhập số nguyên N (từ bàn phím) nào sau đây là đúng?CorrectIncorrect - Question 9 of 30
9. Question
1 pointsCách viết nào sau đây là đúng với cú pháp khai báo của câu lệnh if?CorrectIncorrect - Question 10 of 30
10. Question
1 pointsCho đoạn code sau:int a = 3, b = 4, x = 0; if (a != 3) x++; x += b; if (b == 4) { x--; x *= a; }
Hỏi kết quả của biến x sau đoạn code trên là bao nhiêu?
CorrectIncorrect - Question 11 of 30
11. Question
1 pointsCho đoạn code sau:
int x = 3; if (x == 1) printf("One"); else if (x == 2) printf("Two"); else if (x == 3) printf("Three"); else printf("Other");
Hỏi kết quả hiển thị ra màn hình console là gì?
CorrectIncorrect - Question 12 of 30
12. Question
1 pointsCho đoạn code sau:
int x = 3; switch(x) { case 1: printf("One"); case 2: printf("Two"); case 3: printf("Three"); default: printf("Other"); }
Hỏi kết quả hiển thị lên màn hình console là gì?
CorrectIncorrect - Question 13 of 30
13. Question
1 pointsCho đoạn code sau:
int i, N = 10; for (i = 0; i < N; i += 2) { printf("%d ", i); }
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 14 of 30
14. Question
1 pointsCho đoạn code sau:
int x = 4; while (x) { printf("%d ", x--); }
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 15 of 30
15. Question
1 pointsCho đoạn code sau:
int x = 0; do { x++; if (x == 1) { printf("One"); continue; } printf("%d", x); if (x == 3) { printf("Three"); break; } }while (x<5);
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 16 of 30
16. Question
1 pointsHãy chọn phương án phù hợp nhất. Ngôn ngữ lập trình là gì?CorrectIncorrect - Question 17 of 30
17. Question
1 pointsPhát biểu nào dưới đây KHÔNG đúng?CorrectIncorrect - Question 18 of 30
18. Question
1 pointsPhát biểu nào sau đây KHÔNG đúng?CorrectIncorrect - Question 19 of 30
19. Question
1 pointsPhát biểu nào dưới đây là SAI khi nói về biên dịch và thông dịch?CorrectIncorrect - Question 20 of 30
20. Question
1 pointsNgôn ngữ lập trình được Dennish đưa ra vào năm nào?CorrectIncorrect - Question 21 of 30
21. Question
1 pointsNgôn ngữ lập trình C được Dennish phát triển dựa trên ngôn ngữ lập trình nào?CorrectIncorrect - Question 22 of 30
22. Question
1 pointsNgôn ngữ lập trình nào dưới đây là ngôn ngữ lập trình có cấu trúc?CorrectIncorrect - Question 23 of 30
23. Question
1 pointsKết quả của chương trình sau là gì?#include void main(){ int a=40, b=4; while(a!=b) if (a>b) a=a-b; else b=b-a; printf(“%d”,a); };
CorrectIncorrect - Question 24 of 30
24. Question
1 pointsTrong các hàm sau, hàm nào là hàm không định dạng để nhập một kí tự từ bàn phím?CorrectIncorrect - Question 25 of 30
25. Question
1 pointsXâu định dạng nào dưới đây dùng để in ra một số nguyên?CorrectIncorrect - Question 26 of 30
26. Question
1 pointsXâu định dạng nào dưới đây dùng để in ra một kí tự?CorrectIncorrect - Question 27 of 30
27. Question
1 pointsKiểu dữ liệu int (kiểu số nguyên) có thể xử lí số nguyên nằm trong khoảng nào?CorrectIncorrect - Question 28 of 30
28. Question
1 pointsKết quả hiển thị ra màn hình của chương trình sau là gì?#include <stdio.h> void main(){ int a,b ; a=100 ; b=56 ; printf(“%d”,(a<b) ? a:b); }
CorrectIncorrect - Question 29 of 30
29. Question
1 pointsTrong các hàm sau, hàm nào là hàm KHÔNG định dạng để in một chuỗi ký tự ra màn hình?CorrectIncorrect - Question 30 of 30
30. Question
1 pointsLệnh nào trong các lệnh sau cho phép chuyển sang vòng lặp tiếp theo mà không cần phải thực hiện phần còn lại của vòng lặp?CorrectIncorrect
Trắc nghiệm Lập trình C Số 2
Quiz-summary
0 of 30 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 30 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score | |
Your score |
Categories
- Not categorized 0%
- Mọi thành công cần phải vượt qua thử thách!
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- Answered
- Review
- Question 1 of 30
1. Question
1 pointsĐâu là ký tự dùng để kết thúc một câu lệnh trong ngôn ngữ lập trình C?CorrectIncorrect - Question 2 of 30
2. Question
1 pointsPhát biểu nào sau đây là đúng?CorrectIncorrect - Question 3 of 30
3. Question
1 pointsCách khai báo biến nào sau đây là đúng?CorrectIncorrect - Question 4 of 30
4. Question
1 pointsĐâu là cách gán giá trị cho biến int x; chính xác?CorrectIncorrect - Question 5 of 30
5. Question
1 pointsCho đoạn code sau:
#include <stdio.h>; int main(){ int x = 2, y = 3, z = -1; int t = 3 * x / y - z * x + y % 5 / 2; return 0; }
Hỏi giá trị của t bằng bao nhiêu?
CorrectIncorrect - Question 6 of 30
6. Question
1 pointsBiết rằng trong ngôn ngữ lập trình C có 3 loại toán tử logic là: AND (&&), OR (||) và NOT (!). Hỏi kết quả của biểu thức10 && (-10) || 0 && !(-1)
là bao nhiêu?CorrectIncorrect - Question 7 of 30
7. Question
1 pointsCho đoạn code sau:int x = 2, y = 4, z = 3; int t = -2 * z / 5 <= 6 + !(x * y - z) && y % (2 * z - 3);
Hỏi đáp án của t bằng bao nhiêu?
CorrectIncorrect - Question 8 of 30
8. Question
1 pointsCách nhập số nguyên N (từ bàn phím) nào sau đây là đúng?CorrectIncorrect - Question 9 of 30
9. Question
1 pointsCách viết nào sau đây là đúng với cú pháp khai báo của câu lệnh if?CorrectIncorrect - Question 10 of 30
10. Question
1 pointsCho đoạn code sau:int a = 3, b = 4, x = 0; if (a != 3) x++; x += b; if (b == 4) { x--; x *= a; }
Hỏi kết quả của biến x sau đoạn code trên là bao nhiêu?
CorrectIncorrect - Question 11 of 30
11. Question
1 pointsCho đoạn code sau:
int x = 3; if (x == 1) printf("One"); else if (x == 2) printf("Two"); else if (x == 3) printf("Three"); else printf("Other");
Hỏi kết quả hiển thị ra màn hình console là gì?
CorrectIncorrect - Question 12 of 30
12. Question
1 pointsCho đoạn code sau:
int x = 3; switch(x) { case 1: printf("One"); case 2: printf("Two"); case 3: printf("Three"); default: printf("Other"); }
Hỏi kết quả hiển thị lên màn hình console là gì?
CorrectIncorrect - Question 13 of 30
13. Question
1 pointsCho đoạn code sau:
int i, N = 10; for (i = 0; i < N; i += 2) { printf("%d ", i); }
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 14 of 30
14. Question
1 pointsCho đoạn code sau:
int x = 4; while (x) { printf("%d ", x--); }
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 15 of 30
15. Question
1 pointsCho đoạn code sau:
int x = 0; do { x++; if (x == 1) { printf("One"); continue; } printf("%d", x); if (x == 3) { printf("Three"); break; } }while (x<5);
Hỏi kết quả hiển thị trên màn hình console là gì?
CorrectIncorrect - Question 16 of 30
16. Question
1 pointsHãy chọn phương án phù hợp nhất. Ngôn ngữ lập trình là gì?CorrectIncorrect - Question 17 of 30
17. Question
1 pointsPhát biểu nào dưới đây KHÔNG đúng?CorrectIncorrect - Question 18 of 30
18. Question
1 pointsPhát biểu nào sau đây KHÔNG đúng?CorrectIncorrect - Question 19 of 30
19. Question
1 pointsPhát biểu nào dưới đây là SAI khi nói về biên dịch và thông dịch?CorrectIncorrect - Question 20 of 30
20. Question
1 pointsNgôn ngữ lập trình được Dennish đưa ra vào năm nào?CorrectIncorrect - Question 21 of 30
21. Question
1 pointsNgôn ngữ lập trình C được Dennish phát triển dựa trên ngôn ngữ lập trình nào?CorrectIncorrect - Question 22 of 30
22. Question
1 pointsNgôn ngữ lập trình nào dưới đây là ngôn ngữ lập trình có cấu trúc?CorrectIncorrect - Question 23 of 30
23. Question
1 pointsKết quả của chương trình sau là gì?#include void main(){ int a=40, b=4; while(a!=b) if (a>b) a=a-b; else b=b-a; printf(“%d”,a); };
CorrectIncorrect - Question 24 of 30
24. Question
1 pointsTrong các hàm sau, hàm nào là hàm không định dạng để nhập một kí tự từ bàn phím?CorrectIncorrect - Question 25 of 30
25. Question
1 pointsXâu định dạng nào dưới đây dùng để in ra một số nguyên?CorrectIncorrect - Question 26 of 30
26. Question
1 pointsXâu định dạng nào dưới đây dùng để in ra một kí tự?CorrectIncorrect - Question 27 of 30
27. Question
1 pointsKiểu dữ liệu int (kiểu số nguyên) có thể xử lí số nguyên nằm trong khoảng nào?CorrectIncorrect - Question 28 of 30
28. Question
1 pointsKết quả hiển thị ra màn hình của chương trình sau là gì?#include <stdio.h> void main(){ int a,b ; a=100 ; b=56 ; printf(“%d”,(a<b) ? a:b); }
CorrectIncorrect - Question 29 of 30
29. Question
1 pointsTrong các hàm sau, hàm nào là hàm KHÔNG định dạng để in một chuỗi ký tự ra màn hình?CorrectIncorrect - Question 30 of 30
30. Question
1 pointsLệnh nào trong các lệnh sau cho phép chuyển sang vòng lặp tiếp theo mà không cần phải thực hiện phần còn lại của vòng lặp?CorrectIncorrect
Chúc các bạn thi tốt!