阿摩線上測驗
登入
首頁
>
教師檢定(教檢)◆教育理念與實務(舊名:教育原理與制度)(幼兒園、特殊教育、國民小學、中等學校)
>
110年 - 110-3 國立臺灣體育運動大學師資培育中心返校座談模擬考:教學原理與制度#99390
> 試題詳解
40. 教育部為了對文化不利兒童中、低成就者之照顧,實施「攜手計畫—課後扶助」,試問我國自民國103年實施十二年國民基本教育後,該計畫併入下列何者?
(A)樂學計畫
(B)補救教學計畫
(C)火炬計畫
(D)教育優先區計畫
答案:
登入後查看
統計:
A(25), B(1008), C(73), D(264), E(0) #2722951
詳解 (共 1 筆)
君玲(111新北上岸)
B1 · 2021/06/19
#4815967
(A)樂學計畫 -國中生就近或免試升學高...
(共 144 字,隱藏中)
前往觀看
5
0
相關試題
51. Given: Which statement is true about the classes and interfaces? (A) Compilation will succeed for all classes and interfaces. (B) Compilation of class C will fail because of an error in line 2. (C) Compilation of class C will fail because of an error in line 6. (D) Compilation of class AImpl will fail because of an error in line 2.
#2722952
54. Given: 1. package test; 2. 3. class Target{ 4. public String name = "hello"; 5. } What can directly access and change the value of the variable name? (A) any class (B) only the Target class (C) any class in the test package (D) any class that extends Target
#2722953
55. Given: 11. abstract class Vehicle{public int speed(){return 0;}} 12. class Car extends Vehicle{public int speed(){return 60;}} 13. class RaceCar extends Car{public int speed(){return 150;}} ... 21. RaceCar racer = new RaceCar(); 22. Car car = new RaceCar(); 23. Vehicle vehicle = new RaceCar(); 24. System.out.println(racer.speed() + ", " + car.speed() 25. + ", " + vehicle.speed()); What is the result? (A) 0, 0, 0 (B) 150, 60, 0 (C) Compilation fails. (D) 150, 150, 150 (E) An exception is thrown at runtime.
#2722954
56. Given: 5. class Building{} 6. public class Barn extends Building{ 7. public static void main(String[] args){ 8. Building build1 = new Building(); 9. Barn barn1 = new Barn(); 10. Barn barn2 = (Barn)build1; 11. Object obj1 = (Object)build1; 12. String str1 = (String)build1; 13. Building build2 = (Building)barn1; 14. } 15. } Which is true? (A) if line 10 is removed, the compilation succeeds. (B) if line 11 is removed, the compilation succeeds. (C) if line 12 is removed, the compilation succeeds. (D) if line 13 is removed, the compilation succeeds. (E) More than one line must be removed for compilation to succeed.
#2722955
57. Given: 21. class Money{ 22. private String country = "Canada"; 23. public String getC(){return country;} 24. } 25. class Yen extends Money{ 26. public String getC(){return super.country;} 27. } 28. public class Euro extends Money{ 29. public String getC(){return super.getC();} 30. public static void main(String[] args){ 31. System.out.print(new Yen().getC() + " " + new Euro().getC()); 32. } 33. } What is the result? (A) Canada (B) null Canada (C) Canada null (D) Canada Canada (E) Compilation fails due to an error on line 26.
#2722956
58. Given: 10. interface Foo{} 11. class Alpha implements Foo{} 12. class Beta extends Alpha{} 13. class Delta extends Beta{ 14. public static void main(String[] args){ 15. Beta x = new Beta(); 16. //insert code here 17. } 18. } Which code, inserted at line 16, will cause a java.lang.ClassCastException? (A) Alpha a = x; (B) Foo f = (Delta)x; (C) Foo f = (Alpha)x; (D) Beta b = (Beta)(Alpha)x;
#2722957
59. Given the following directory structure: (A) If the compile is successful, Utils.class is added to the source directory. (B) The compiler returns an invalid flag error. (C) If the compile is successful, Utils.class is added to the classes directory. (D) If the compile is successful, Utils.class is added to the bigProject directory.
#2722958
複選題60. Given: 1. package com.company.application; 2. 3. public class MainClass{ 4. public static void main(String[] args){} 5. } And MainClass exists in the /apps/com/company/application directory. Assume the CLASSPATH environment variable is set to "." (current directory). Which two java commands entered at the command line will run MainClass? (Choose two.) (A) java MainClass if run from the /apps directory (B) java com.company.application.MainClass if run from the /apps directory (C) java -classpath /apps com.company.application.MainClass if run from any directory (D) java-classpath . MainClass if run from the /apps/com/company/application directory (E) java -classpath /apps/com/company/application:. MainClass if run from the /apps directory
#2722959
61. Given two files, GrizzlyBear.java and Salmon.java: 1. package animals.mammals; 2. 3. public class GrizzlyBear extends Bear{ 4. void hunt() { 5. Salmon s = findSalmon(); 6. s.consume(); 7. } 8. } 1. package animals.fish; 2. 3. public class Salmon extends Fish { 4. public void consume() { /* do stuff */ } 5. } If both classes are in the correct directories for their packages, and the Mammal class correctly defines the findSalmon() method, which change allows this code to compile? (A) add import animals. mammals.*; at line 2 in Salmon.java (B) add import animals.fish.*; at line 2 in GrizzlyBearjava (C) add import animals.fish.Salmon.*; at line 2 in GrizzlyBear.java (D) add import animals. mammals.GrizzlyBear*; at line 2 in Salmon.java
#2722960
62. Given: 31. class Foo{ 32. public int a = 3; 33. public void addFive(){ a += 5; System.out.print("f "); } 34. } 35. class Bar extends Foo{ 36. public int a = 8; 37. public void addFive(){this.a += 5; System.out.print("b ");} 38. }Invoked with: Foo f = new Bar(); f.addFive(); System.out.println(f. a); What is the result? (A) b 3 (B) b 8 (C) b 13 (D) f 3 (E) f 8
#2722961
相關試卷
111年 - 111高級中等以下學校及幼兒園教師資格考試_國民小學、中等學校︰教育理念與實務(重複)#109208
2022 年 · #109208
111年 - 111 高級中等以下學校及幼兒園教師資格考試_中等學校、國民小學:教育理念與實務#108205
2022 年 · #108205
110年 - 110-5 國立臺灣體育運動大學師資培育中心實習返校座談模擬考:教學原理與制度#99708
2021 年 · #99708
110年 - 110-3 國立臺灣體育運動大學師資培育中心實習返校座談教師資格檢定模擬考試卷:中等學校課程與教學#99393
2021 年 · #99393
110年 - 110-3 國立臺灣體育運動大學師資培育中心返校座談模擬考:教學原理與制度#99390
2021 年 · #99390
110年 - 110-2國立臺灣體育運動大學師資培育中心實習返校座談教師資格檢定模擬考:教育原理與制度#99275
2021 年 · #99275
110年 - 110 國立屏東大學各師資類科教育學程甄選試題:幼兒教育時事與議題#99206
2021 年 · #99206
110年 - 110-1國立臺灣體育運動大學師資培育中心返校座談模擬考試:中等學校課程與教學#99178
2021 年 · #99178
110年 - 110-1 國立臺灣體育運動大學師資培育中心返校座談模擬考:教育原理與制度#99177
2021 年 · #99177
110年 - 東華大學110年_109學年度第二次教育實習知能檢定考試_教育理念與實務#97293
2021 年 · #97293