阿摩線上測驗
登入
首頁
>
教師檢定(教檢)◆國民小學◆課程教學與評量(舊名:國民小學課程與教學)
>
110年 - 110 屏東科技大學師資培育中心_教育大會考線上考試試題110.06.11#99409
> 試題詳解
14. 有關考題類型的敘述,下列何者正確?
(A)是非題比選擇題更能降低猜測的干擾
(B)申論題比選擇題內容取樣更具代表性
(C)選擇題相對於申論題,較不易評量高層次的能力
(D)簡答題比選擇題更能激發學生評估方案的能力
答案:
登入後查看
統計:
A(68), B(206), C(1766), D(270), E(0) #2723487
詳解 (共 1 筆)
蝦皮:警察法規白話解題
B1 · 2021/06/21
#4821465
X(A)是非題比選擇題更能降低猜測的干擾...
(共 588 字,隱藏中)
前往觀看
12
0
相關試題
15. 下列哪一個敘述違反選擇題的命題原則? (A)選項個數最好維持四個的長度 (B)正確選項個數要約略相等 (C)答案要做有規則的排列 (D)錯誤的選項要有似真性
#2723488
16. 請問下列的教學目標:「學生能把一段中文翻譯成英文」,符合 Bloom 的哪一個認知層次? (A)知識 (B)理解 (C)應用 (D)分析
#2723489
17.陳老師想要了解她編的測驗是否具有良好的信度,他可以採用下列何者 方法? (A)KR20 (B)因素分析 (C)雙向細目表 (D)分析聚斂相關
#2723490
18. 下列哪一種測量方式有最高的評分者信度? (A)選擇題 (B)論文式題目 (C)簡答題 (D)評定分數法
#2723491
19. 進行試題分析時,選取高分組或低分組的人數比例,下列何者較為合 適? (A)最高分與最低分各選取 5% (B)最高分與最低分各選取 12% (C)最高分與最低分各選取 27% (D)最高分與最低分各選取 49%
#2723492
20. 王老師自編一份 50 題的測驗,以評量學生的學習成就。經過試題分析 後,下列哪一項做法最可能提高此測驗的信度? (A)刪除難度值為 0 的題目 (B)刪除難度值為 1 的題目 (C)刪除與總分負相關的全部題目 (D)刪除與總 分正相關較低的題目
#2723493
203. Given: 5. import java.util.*; 6. public class SortOf{ 7. public static void main(String[] args){ 8. ArrayList<Integer> a = new ArrayList<Integer>(); 9. a.add(1); a.add(5); a.add(3); 10. Collections.sort(a); 11. a.add(2); 12. Collections.reverse(a); 13. System.out.println(a); 14. } 15. } What is the result? (A) [1, 2, 3, 5] (B) [2, 1, 3, 5] (C) [2, 5, 3, 1] (D) [5, 3, 2, 1] (E) [1, 3, 5, 2]
#2723494
204. Given: 11. public class Person{ 12. private name; 13. public Person(String name){ 14. this.name = name; 15. } 16. public int hashCode(){ 17. return 420; 18. } 19. } Which statement is true? (A) The time to find the value from HashMap with a Person key depends on the size of the map. (B) Deleting a Person key from a HashMap will delete all map entries for all keys of type Person. (C) Inserting a second Person object into a HashSet will cause the first Person object to be removed as a duplicate. (D) The time to determine whether a Person object is contained in a HashSet is constant and does NOT depend on the size of the map.
#2723495
205. Given: 12. import java.util.*; 13. public class Explorer2{ 14. public static void main(String[] args){ 15. TreeSet<Integer> s = new TreeSet<Integer>(); 16. TreeSet<Integer> subs = new TreeSet<Integer>(); 17. for(int i=606; i<613; i++) 18. if(i%2 == 0) s.add(i); 19. subs = (TreeSet)s.subSet(608, true, 611, true); 20. s.add(629); 21. System.out.println(s + " " + subs); 22. } 23. } What is the result? (A) Compilation fails. (B) An exception is thrown at runtime. (C) [608, 610, 612, 629] [608, 610] (D) [608, 610, 612, 629] [608, 610, 629] (E) [606, 608, 610, 612, 629] [608, 610]
#2723496
206. Given: 1. public class Drink implements Comparable{2. public String name; 3. public int compareTo(Object o){ 4. return 0; 5. } 6. } and: 20. Drink one = new Drink(); 21. Drink two = new Drink(); 22. one.name = "Coffee"; 23. two.name = "Tea"; 24. TreeSet set = new TreeSet(); 25. set.add(one); 26. set.add(two); A programmer iterates over the TreeSet and prints the name of each Drink object. What is the result? (A) Tea (B) Coffee (C) Coffee Tea (D) Compilation fails. (E) The code runs with no output.
#2723497
相關試卷
114年 - 114 高級中等以下學校及幼兒園教師資格考試_國民小學:課程教學與評量#127833
2025 年 · #127833
113年 - 113 高級中等以下學校及幼兒園教師資格考試_國民小學:課程教學與評量#120533
2024 年 · #120533
113年 - 113 國立屏東大學_高級中等以下學校及幼兒園教師資格考試模擬測驗_國民小學:課程教學與評量#119657
2024 年 · #119657
112年 - 112 國立臺北教育大學模擬教師資格考試_國民小學:課程教學與評量#119682
2023 年 · #119682
112年 - 112 高級中等以下學校及幼兒園教師資格考試_國民小學:課程教學與評量#115013
2023 年 · #115013
111年 - 111 國立臺北教育大學_模擬教師資格考試_國民小學:課程教學與評量#114101
2022 年 · #114101
111年 - 111 高級中等以下學校及幼兒園教師資格考試_國民小學:課程教學與評量#108204
2022 年 · #108204
110年 - 110 國立臺北教育大學模擬教師資格考試_國民小學:課程教學與評量#120880
2021 年 · #120880
110年 - 110 高級中等以下學校及幼兒園教師資格考試_國民小學:課程教學與評量#99818
2021 年 · #99818
110年 - 110 國立臺南大學_教育學系(碩士班)招生考試:課程與教學 #99453
2021 年 · #99453