
Set A: Written Exam
Quiz by Clarens Rey
Customize this quiz to suit your class
Instantly translate to 100+ languages
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
What is the common color for the USB 3.0 connector for the standard A receptacles and plugs?
Black
Blue
Red
White
What type of memory used in the Solid State Drive (SSD) as a storage?
Dynamic Random Access Memory (DRAM)
Flash memory
Read only Memory(RAM)
Static Random Access Memory (SRAM)
What is the common color for the USB 3.0 connector for the standard A receptacles and plugs?
What type of memory used in the Solid State Drive (SSD) as a storage?
It is originally, where the BIOS stored in a standard PC
__________ is complete copy of everything stored on a physical optical disc
What is the minimum requirement for hard disk drive capacity in Windows 10?
Where do Windows device drivers store?
What is the volt rating of the RED wire in a power supply?
Is a network cable where one end is T568-A while the other is T568-B configuration.
In Windows 7, when LAM+N connection has a cross and red Indicator signifies that there is .
Which of the following hardware components can connect over a computer network?
It is the networking device that forwards data packets between computer networks.
Wi-Fi is a trademark phrase, which means .
is a collection of devices connected together in one physical location.
A type of network that interconnects multiple local area network.
A computer program used to prevent, detect, and remove possible threats to the system.
Is a two or more PCs are connected and share resources without going through a separate server computer.
What IP address used by the virtual machine to communicate over the physical network?
What type of version that protects unauthorized network access by utilizing a set-up password?
Consists of the user matrices, and capability tables that govern the rights and privileges of users.
It occurs when an attacker or trusted insider steals data from a computer system and demands compensation for its return.
It monitors the initial security accreditation of an information system for tracking of changes.
What services in Windows Server that enables administrators to migrate data to a low-cost and tape media on file servers?
What application group that contains a Client Access Point and with at least one application specific resource?
A utility tool test whether a particular host is reachable across an IP network.
Which of the following keys is not appropriate to enter BIOS setup?
Allows a computer to boot up without unnecessary drivers, which makes it easier to run diagnostics and uninstall unwanted apps.
What Starts up recovery options in a computer that essentially boot into the RECOVERY partition of the main hard drive?
A single physical hard drive can divide into multiple_____ hard drives.
What are the two types of interface used to communicate between the hard drive and the computer motherboard?
What is the spider-like Interconnection in millions of pieces of information located on computers around the cyber space?
In this video we take a look at the 0:02 fetch to code 0:03 execute cycle including its effect on 0:06 the various registers we've previously 0:12 [Music] 0:14 discussed a computer is defined Definition 0:17 as an electronic device that takes an 0:20 input 0:22 processes data 0:25 and delivers output 0:29 in this simple example you can see we're 0:31 taking the input 5 0:35 we're multiplying it by 2 that's our 0:37 process 0:39 and we're outputting 10. 0:44 but this could be way more complex for 0:46 example of a game console 0:48 the input could be the buttons you press 0:50 on a controller 0:53 the processes would then be carried out 0:55 by the console itself 0:59 and the output would be some form of 1:01 update to a monitor 1:02 and sound out for a speaker possibly 1:04 vibration feedback through the 1:06 controller 1:10 to process data a computer follows a set 1:13 of instructions 1:14 known as a computer program 1:18 if we take the lid off a typical desktop 1:20 computer we can identify 1:22 two critical components the memory 1:26 that stores the program and the central 1:29 processing unit or processor 1:31 which is under this large fan and 1:33 carries out the instructions 1:37 a computer carries out its function by 1:40 fetching 1:41 instructions decoding them and then 1:43 executing them 1:44 in a continuous repetitive cycle 1:46 billions of times a second 1:48 let's look at each of these stages in a 1:50 little more detail Fetch 1:53 so let's start with the fetch stage the 1:55 very first thing that happens 1:57 is the program counter is checked as it 2:00 holds the address 2:01 of the next instruction to be executed 2:07 the address stored is then copied into 2:09 the memory address register 2:14 the address is then sent along the 2:16 address bus to main memory 2:18 where it waits to receive a signal from 2:21 the control 2:22 bus so it knows what to do 2:27 as we want to read the data that's 2:29 stored in memory address 2:30 0 0 0 0 the control unit sends 2:34 a read signal along the control bus to 2:36 main memory 2:41 now main memory knows the data needs to 2:44 be read 2:45 the content stored in memory address 000 2:49 can be sent along the data bus to the 2:51 memory data register 2:56 now as we're currently in the process of 2:58 fetching an instruction 3:00 the data received by the memory data 3:03 register gets copied 3:04 into the current instruction register 3:11 the instruction effectively has now been 3:14 fetched from memory 3:16 just before we proceed to the decode 3:18 phase we now 3:19 increment the program counter so that 3:22 the address it contains 3:24 points to the address of the next 3:26 instruction which will need to be 3:30 executed 3:32 the instruction now being held in the 3:33 current instruction register 3:35 is ready to be decoded 3:39 now as we mentioned in the previous 3:41 video the instruction is made up of two 3:43 parts 3:44 we have the op code that's what it is we 3:47 need to do 3:50 and we have the operand what are we 3:53 going to do it to 3:55 now the operand could contain the actual 3:57 data 3:58 or indeed it could contain an address of 4:01 where the data is to be found 4:06 by decoding this instruction we can see 4:08 the operation we need 4:10 is a load operation so we need to load 4:14 the contents of memory location0101 4:18 into the cpus accumulator 4:25 in the exam a simple model will be used 4:27 to describe the 4:29 structure of any given instruction 4:32 you're not going to be expected to 4:34 define how an opcode is made up 4:36 but simply to interpret opcodes in the 4:39 given context of an exam 4:40 question in the example here 4:44 you can see there's a total of 16 4:46 different opcodes available 4:48 and this is because we're using four 4:50 bits for our representation 4:56 so now we've fetched the instruction and 4:59 we've decoded it so we know what we need 5:00 to do 5:01 we're finally ready to execute it 5:05 so we now send address 0101 5:08 to the memory dress register 5:13 now we're in the memory address register 5:15 we can finally send the address 5:18 down the address bus to main memory 5:24 this time we want to read the data 5:26 that's stored in memory 5:28 and so the control unit again sends a 5:30 read signal along the control bus 5:36 so main memories now receive an address 5:38 and a read signal 5:40 so the content stored at memory location 5:43 0101 5:44 can now be sent along the data bus back 5:46 to the cpu 5:47 and into the memory data register 5:54 finally the contents of the memory data 5:56 register are copied to the accumulator 5:59 and this is one of a number of general 6:00 purpose registers found in the cpu 6:04 this first instruction is now complete Branching 6:11 so what does this program actually do 6:14 you should be able to work it through 6:16 carefully and figure it out 6:19 we're now pointing instructions zero 6:21 zero zero one in the program counter 6:23 and we're ready to fetch the second 6:25 instruction 6:27 at the end of this video we're gonna 6:29 provide you with the answer 6:34 so let's talk a second about programs 6:37 that branch 6:40 on the left here we have a very simple 6:42 piece of pseudo code 6:44 line zero says first execute this line 6:46 of code 6:47 line 1 now execute this line and then 6:50 line 2 says 6:52 if the age is greater than 18 then 6:56 we're going to execute lines 3 and 4 6:58 otherwise 6:59 we're going to execute lines six and 7:02 seven 7:03 so this program doesn't necessarily 7:05 follow strictly in sequence from line 7:07 zero through to seven there's a chance 7:10 here the program may branch and jump 7:14 around 7:16 so we're going to pretend that this 7:17 program has been loaded into memory 7:20 each line of code on the left here has 7:23 ended up 7:24 as a location in memory now this is not 7:27 strictly how this would happen in this 7:28 one-to-one way 7:29 but for the purpose of example it's 7:31 absolutely fine 7:35 so the program counter starts by 7:37 pointing to memory address zero 7:39 and we fetch the first instruction 7:41 decode it and execute it 7:44 it then updates and tells us the next 7:47 instruction 7:48 is zero zero zero one because remember 7:50 the program counter is being incremented 7:52 so we fetch it decode it and we execute 7:55 line one of our program 7:59 we then fetch line two which in binary 8:01 is one 8:02 zero 8:06 now at this point depending on what 8:10 happens during the execution 8:11 of line two the program may be required 8:15 to fetch line three from memory or 8:18 line five from memory 8:25 so let's look at how this actually works 8:27 because we've said the program counter 8:28 simply gets incremented 8:31 well in the current instruction register 8:33 we have an instruction with the op code 8:36 0 1 1 0. 8:41 now when we look this up in the decode 8:43 unit we discover that this 8:45 code means branch always 8:51 this replaces the value held in the 8:54 program counter 8:56 with the contents of the operand that's 8:58 the second part of the instruction 9:01 from the current instruction register so 9:03 this case 9:04 one zero zero one 9:09 now when the next fetch cycle begins the 9:12 program counter is obviously checked 9:14 and as its contents have been previously 9:16 updated to a new memory location 9:19 and not simply incremented the program 9:22 effectively is able to jump 9:24 around memory 9:28 so having watched this video you should 9:30 be able to answer the following key 9:32 question 9:33 how does a cpu work 9:39 okay so let's um answer the question we 9:41 posed 9:42 earlier what did that program actually 9:48 do 9:50 so this is the first fetch to code 9:53 execute cycle 9:55 and this is the one that we ran through 9:57 in detail earlier 9:58 it effectively loaded the contents of 10:01 the memory 10:02 stored at location location0101 10:05 into the accumulator in other words 10:08 the dna number 3 is moved 10:11 from memory into the cpu 10:18 we then proceed onto the second fetch 10:20 decode execute cycle 10:23 now this one adds the contents of memory 10:27 located at 0 1 1 0 10:30 to the current contents of the 10:32 accumulator 10:34 so in other words the dna number one 10:38 because that's what's stored at address 10:40 zero one one zero 10:43 is added to the number three that was in 10:45 the accumulator 10:46 the results are stored back over the 10:48 accumulator 10:49 so effectively we've done three plus one 10:53 equals four 10:58 the third fetch to code execute cycle 11:00 stores the contents which are in the 11:02 accumulator 11:03 into memory location zero one one one 11:07 and that's because the op code the first 11:09 part of this current instruction 11:10 zero zero one one is the command to 11:13 store when we look it up in the decoder 11:15 unit 11:16 so in other words the result of the 11:17 previous calculation three plus one 11:19 equals four 11:20 is now written back into main memory 11:28 the fourth fetch decode execute cycle 11:30 outputs the contents of the accumulator 11:33 remember they were copied into main 11:34 memory but they're still held in the 11:35 accumulator 11:37 so in this simple abstraction the number 11:40 four is now 11:41 output to the user so they can see the 11:43 result of the calculation 11:49 the fifth and final fetch code execute 11:51 cycle 11:52 brings a halt to the current program 11:58 so this very simple program which has 12:01 five 12:02 fetch decode execute cycles has 12:04 performed the calculation 12:06 three plus one is then stored the result 12:09 in main memory 12:10 and displayed the result four to the 12:12 user 12:13 and in a high-level language this may 12:15 look something very similar to the 12:17 following two lines of code 12:20 sum variable equals num1 plus num2 12:24 print sum to the user 12:27 so you can start to get an appreciation 12:29 here of how the high level code you 12:32 write actually ends up being fetched 12:34 decoded 12:35 and executed inside a processor 12:38 of course your processor is doing 12:40 billions and billions of these 12:42 operations a second 12:43 which when you think about it is really 12:45 very impressive 12:52 [Music] 13:03 you. make 10 questions for a standerd of a level
A piece that’s sung as opposed to played. Answer: Cantata A hymn tune of the Lutheran church. Answer: Chorale A part for keyboard (harpsichord or organ) and cello or bass. The keyboard player reads the cello line and provides an accompaniment based on the figured Bass. Answer: Basso continuo The numbers written under the cello part indicating chords and their positions to the keyboard player. Answer: Figured Bass A piece for choir. Answer: Chorus A style of singing that is more related in pitch and rhythm to speech than song. In the 18th Century it was used extensively in Opera as “Dialogue” between Characters. Answer: Recitative (Dry) Accompanied only by continuo. Answer: Recitativo secco More expressive and accompanied by the orchestra. Answer: Recitativo stromentato Contrapuntal device whereby a motif or phrase is presented successively by different voices. Answer: Imitation To turn a motif or phrase “up-side down”. Answer: Inversion A song for 1 or more voices, popular in Opera and Cantata as a contrast with Recitative. Answer: Aria A type of piece that was written as a set of variations on an Ostinato. Answer: Chaconne A musical idea repeating many times. Answer: Ostinato A sustained or repeated note over which the harmonies change. Answer: Pedal Point Point of rest. Answer: Cadence Change of key. Answer: Modulation Where the composer gives prominence or illustrates words in musical terms. Answer: Word Painting A motif that has more than 1 note per syllable is said to be melismatic. Often used as word painting. Answer: Melisma Where 1 note per syllable is used. Answer: Syllabic A polyphonic composition in which a part is imitated by 1 or more parts so that successive statements of the melody overlap. Answer: Canon Any rhythmically independent movement between parts. Answer: Polyphony A combination of 2 or more independent melodies. Answer: Counterpoint A structure consisting of 3 sections-ABA. Answer: Ternary Form Back to the beginning as in the Da Capo Aria. Answer: Da Capo (D.C.) Back to the sign. Answer: Dal Segno (D.S.) A motif which is repeated at a different pitch in the same part. Answer: Sequence
Can you make a multiple choice of test questions regarding this information given which is Curriculum from Different Points of View There are many definitions of curriculum. Because of this, the concept of curriculum is sometimes characterized as fragmentary, elusive and confusing. However, the numerous definitions indicate dynamism that connotes diverse interpretations of what curriculum is all about. The definitions are influenced by models of thought, pedagogies, political as well as cultural experiences. Let us study some of these definitions. 1. Traditional Points of View of Curriculum In early years of the 20th century, the traditional concepts held of the “curriculum is that it is a body of subjects or subject matter prepaid by the teachers for the student’s to learn”. It was synonymous to the “course of study” and “syllabus” Robert M. Hutchins views curriculum as “permanent studies” where the rules of grammar, reading, rhetoric and logic and mathematics for basic education are emphasized. Basic education should emphasize the 3 Rs and college education should be grounded on liberal education. On the other, Arthur Bestor as an essentialist, believes that the mission of the school should be intellectual training, hence curriculum should focus on the fundamental intellectual disciplines of grammar, literature and writing. It should also include mathematics, science, history and foreign language. The definition leads us to the view of Joseph Schwab that discipline is the sole source of curriculum. Thus in our education system, curriculum is divided into chunks of knowledge we call subject areas in basic education such as English, Mathematics, Science, Social Studies and others. In college, discipline may include humanities, sciences, language and many more. To Phoenix, curriculum should consist entirely of knowledge which comes from various disciplines. Academic discipline became the view of what curriculum is after the cold war and the race to space. Joseph Schwab, a leading curriculum theorist coined the term discipline as a ruling doctrine for curriculum development. Curriculum should consist only of knowledge which comes from disciplines which is the sole source. Thus curriculum can be viewed as a field of study. It is made up of its foundations (philosophical, historical, psychological and social foundations); domains of knowledge as well as its research theories and principles. Curriculum is taken as scholarly and theoretical. It is concerned with broad historical, philosophical and social issues and academics. Most of the traditional ideas view curriculum as written documents or a plan of action in accomplishing goals. 2. Progressive Points of View of Curriculum On the other hand, to a progressivist, a listing of school subjects, syllabi, course of study, and a list of courses or specific discipline do not make a curriculum. These can only be called curriculum if the written materials are actualized by the learner. Broadly speaking, curriculum is defined as the total learning experiences of the individual. This definition is anchored on John Dewey’s definition of experience and education. He believed that reflective thinking is a means that unifies curricular elements. Thought is not derived from action but tested by application. Caswell and Campbell viewed curriculum as “all experiences children have under the guidance of teachers”. This definition is shared by Smith, Stanley and Shores when they defined “curriculum as a sequence of potential experiences set up in the schools for the purpose of disciplining children and youth in group ways of thinking and acting”. Marsh and Willis on the other hand view curriculum as all the “experiences in the classroom which are planned and enacted by the teacher, and also learned by the students”. Points of View on Curriculum Development From the various definitions and concepts presented, it is clear that curriculum is a dynamic process. Development connotes changes which are systematic. A change for the better means any alteration, modification or improvement of existing condition. To produce positive changes, development should be purposeful, planned and progressive. This is how curriculum evolves. Let us look at the two models of curriculum development and concepts of Ralph Tyler and Hilda Taba. Ralph Tyler Model: Four Basic Principles. This is also popularly known as Tyler’s Rationale. He posited four fundamental questions or principles in examining any curriculum in schools. These four fundamental principles are as follows: 1. What educational purposes should the school seek to attain? 2. What educational experiences can be provided that are likely to attain these purposes? 3. How can these educational experiences be effectively organized? 4. How can we determine whether these purposes are being attained or not? In summary, Tyler’s Model show that in curriculum development, the following considerations should be made: (1) Purpose of the school, (2) Educational experiences related to the purposes, (3) Organization of the experiences, and (4) Evaluation of the experiences. On the other hand, Hilda Taba improved on Tyler’s Rationale by making a linear model. She believed that teachers who teach or implement the curriculum should participate in developing it. Her advocacy was commonly called the grassroots approach. She presented seven major steps to her model where teachers could have a major input. These steps are as follows: 1. Diagnosis of learner’s needs and expectations of the larger society. 2. Formulation of learning objectives. 3. Selection of learning content. 4. Organization of learning content. 5. Selection of learning experiences. 6. Organization of learning activities. 7. Determination of what to evaluate and the means of doing it. Thus as you look into curriculum models, the three interacting processes in curriculum development are planning, implementing and evaluating. Types of Curriculum Operating in Schools From the various concepts given, Allan Glatthorn(2000) describes seven types of curriculum operating in the schools. These are (1) Recommended curriculum- proposed by scholars and professional organizations. (2) Written Curriculum- appears in school, district, division or country documents. (3) Taught Curriculum- what teacher’s implement or deliver in the classrooms and schools. (4) Supported Curriculum- resources-textbooks, computers, audio- visual materials which support and help in the implementation of the curriculum. (5) Assessed Curriculum- that which is tested and evaluated. (6) Learned Curriculum- which the students actually learn and what is measured and (7) Hidden Curriculum- the unintended curriculum. 1. Recommended Curriculum- Most of the school curricula are recommended. The curriculum may come from a national agency like the Department of Education, Commission on Higher Education (CHED), Department of Science and Technology (DOST) or any professional organization who has stake in education. For example the Philippine Association for Teacher Education (PAFTE) or the Biology Teacher Association (BIOTA) may recommend a curriculum to be implemented in the elementary or secondary education. 2. Written Curriculum- This includes documents, course of study or syllabi handed down to the schools, districts, division, departments or colleges for implementation. Most of the written curricula are made by curriculum experts with participation of teachers. These were pilot-tested or tried out in sample schools or population. Example of this is the Basic Education Curriculum (BEC). Another example is the written lesson plan of each classroom teacher made up of objectives and planned activities of the teacher. 3. Taught Curriculum- The different planned activities which are put into action in the classroom compose the taught curriculum. These are varied activities that are implemented in order to arrive at the objectives or purposes of the written curriculum. These are used by the learners with the guidance of teachers. Taught curriculum varies according to the learning styles of students and the teaching styles of teachers. 4. Supported Curriculum- In order to have a successful teaching, other than the teacher, there must be materials which should support or help in the implementation of a written curriculum. These refer to the support curriculum that includes material resources such as textbooks, computers, audio-visual materials, laboratory equipment, playgrounds, zoos and other facilities. Support curriculum should enable each learner to achieve real and lifelong learning. 5. Assessed Curriculum- This refers to a tested or evaluated curriculum. At the duration and end of the teaching episodes, series of evaluations are being done by the teachers to determine the extent of teaching or to tell if the students are progressing. This refers to the assessed curriculum. Assessment tools like pencil-and-paper tests, authentic instruments like portfolio are being utilized. 6. Learned Curriculum- This refers the learning outcomes achieved by the students. Learning outcomes are indicated by the results of the tests and changes in behavior which can either be cognitive, affective or psychomotor. 7. Hidden Curriculum- This is the unintended curriculum which is not deliberately planned but may modify behavior or influenced learning outcomes. There are lots of hidden curricula that transpire in the schools. Peer influence, school environment, physical condition, teacher-learner interaction, mood of the teachers and many other factors made up the hidden curriculum.
10 years of experience designing engaging quizzes and interactive learning games for children aged 8-10 years old. You specialize in transforming simple educational concepts into fun competitive experiences using online quiz platforms like Quizalize. Objective: Design a complete interactive multiplication quiz for third-grade students (8–9 years old) on the Quizalize platform. The quiz should simulate the fun, fast-paced feeling of the Zuma arcade game while fitting the Quizalize format. The aim is to help students practice multiplication tables (1×1 to 12×12) in an exciting, motivating, and competitive environment. Instructions: Structure: Design at least 40 multiplication questions. Questions should appear in increasing difficulty: start from easy (e.g., 2×3, 4×2) and move to harder problems (e.g., 11×12, 9×8). Timing: Set a short time limit for each question (e.g., 10 seconds) to simulate the fast reaction needed in Zuma. Encourage fast thinking and rapid response under time pressure. Answer Choices: Use multiple-choice answers. Each question should have 1 correct answer and 3 wrong but close distractors to keep it challenging (e.g., for 7×6: options 42, 43, 36, 48). Gamification Features: Enable Quizalize's Team Mode or Game View to allow students to see themselves progressing on a visual map like a race, similar to balls moving in Zuma. Set points bonuses for speed and accuracy. Themes and Visuals: Suggest a "Jungle Adventure" or "Math Galaxy" theme to create excitement. Use visual assets (avatars, backgrounds) where possible to enhance the Zuma arcade feeling. Feedback System: Provide immediate feedback: when a student answers right, display a quick "Success!" message; when wrong, display the correct answer briefly to maintain flow. Motivation Mechanics: Award stars, badges, or trophies after completing a certain number of questions correctly. Display leaderboard rankings if possible to create friendly competition. Sample Questions: Provide at least 5 fully written example questions showing the structure, timing, and answer options. Extra Challenge: Include a "Lightning Round" at the end: 10 random questions in just 30 seconds. Important: Keep language child-friendly and motivational. Make sure no question looks too similar to the others to avoid boredom. Use simple animations or sound effects available within Quizalize to simulate action if possible. Take a deep breath and work on this problem step-by-step.
Count a set of objects and match the spoken number to the written numeral and number name
What is a rubric? A tool comprising a set of criteria (with possible levels of performance quality on the criteria) developed to assess learners’ work, from written to oral to visual. It is used tomeasureperformance,suchastheprocess of doing something (e.g.,playing a musical instrument, making a speech) or products of the learners’ work (e.g., concept map, laboratory report, bookshelf) (Brookhart, 2013). BENEFITS OF USING RUBRICS Support authentic assessment Reflects how well learners are able to apply knowledge inthe real-world context. Communicate expectations Gives learners an idea of what is expected of them. It is especially useful when the rubrics are communicated to the learners before they are assessed. Improve performance Explicit criteria and performance level descriptions allow learners to understand the desired performance. Learners are able to assess themselves by referring to the specific criteria and performance-level descriptions. Provide informative feedback Instructors are able to provide constructive feedback to learners on their weaknesses and strengths. Promote thinking andlearning 4 Provide informative feedback Instructors are able to provide constructive feedback to learners on their weaknesses and strengths. Learners are able to review and revise their work,thus reflecting on their learning experiences. Ensure fairness Learner performance assessed fairly given its objectivity. It helps avoid disputes between learners and instructors about the scores/grades achieved. TYPES OF RUBRIC ANALYTIC It consists of individual criterion with corresponding descriptor of performance. HOLISTIC It consists of performance descriptors that are placed together to refeclet to overalll performance. ANATOMY OF ANANALYTIC RUBRIC Rating scales with corresponding scores or weights The row represents the criteria for the desired performance, while the column represents the evaluation score. Under the rating scale (corresponding weights orscorescanbeassigned),theperformance descriptors are explicitly stated ANATOMYOF AHOLISTICRUBRIC Descriptions: It comprises the rating scale (corresponding weights or scores can be assigned) in the row while the combined desired performance descriptors are placed in the column. Description of the task The purpose of the assignment is to assess learner’s cognitive and analytic skills in applying knowledge gained and constructed throughout the course Diffusion of Innovation,bywatching the Surrogates movieand writing ananalytical review of the movie in the context of innovation diffusion.Iwant to provide learners with informative feedback on their cognitive and analytic skills such as the following: applying the concepts of innovation diffusion,making judgmentson the scenes related to innovation diffusion identified from the movie,selecting and critiquing theories of innovation diffusion and making connections between the theories,aswell asarguingand proposing necessary solutions to the problemss hown in the movie. ESTABLISHING ALTERNATIVEASSESSMENTINHIGHEREDUCATION VALIDITYAND RELIABILITYOF RUBRICS. Validity Measuring what is supossedto be measured. Reability Yielding consists results. Instruments that are used in the alternative assessment must be aligned to the learning outcomes and measure well what it intends to measure (valid) and produce consistent scores (reliable). The valid instrument will manifest the true ability (latent trait) of learners and permit appropriate inferences to be made about a specific group of people for specific purposes. TYPES OF VALIDITY FACE VALIDITY Simple form of validity thatapplies a superficial and subjective assessment whether the instrument measures what it is supposed to measure. CONTENT VALIDITY Refers to the extent to which the items on a measure assess the same content or how wellthe content material was sampled inthe measure. CONSTRUCT VALIDITY Refers to the extent to which the test may be said to measure a theoretical construct or trait. CONCURRENT VALIDITY Refers to the extent to which scores onanewmeasure are related to scores from a criterion measure administered at the same time. PREDICTIVE VALIDITY Refers to the uses of the scores from the new measure to predict performance on a criterion measure administered ata later time. STEPS TO CONSIDER WHEN ESTABLISHING CONTENT VALIDITY Calculate the level of expert agreeement for the content validity, get expert to verfy. Interview the expert ,make meta contentdata análisis from literatura. STEPS TO CONSIDER WHEN ESTABLISHING CONSTRUCCT VALIDITY Administer the instrument for alll learners, revise any item necccesay, run an apropriates statistical analiysis, administerthe instrument to learners as a pilot test . CONSTRUCTMAP Morepreciseconceptthan construct. Ranges from one extreme to another(fromhightolow,small tolarge,positivetonegative,or strongtoweak). Identifiesthepositionofthe respondentsinthisrange. Representativenessofsampling (questions and ability of respondents). EXAMPLEO FACONSTRUCTMAP:AFFECTIVE LEVELOF AFFECTIVE VARIABLES EXAMPLESOFITEMSIN MEASURINGTEAM WORKING SKILLS 5. Characterisation Learnersvolunteerstodothe groupworks. 4. Organisation Learners are willing to help others,althoughitisnottheir scopeoftask. 3. Valuing Learners respect other team members’opinionwhendoing thediscussion. 2. Responding Learnergivescooperationwhen neededingroupworks. 1. Receiving Learneracceptsthediversityof races and nationalities among groupmembers. EXAMPLEOFACONSTRUCTMAP:PSYCHOMOTOR LEVELOF PSYCHOMOTOR VARIABLES EXAMPLESOFITEMSIN MEASURING DIGITAL SKILLS 7.Origination Learnerscanmodifytheirowndevicesto performbetter. 6.Adaptation Learnerscansolveandtroubleshootthe problemwhileusingthecomputer. 5.ComplexOvertResponse Learnerscanusethecomputercompetently. 4.Mechanism Learners can use the computer independently,butstillmakeminorerrors. 3.GuidedResponses Learnerscanusethecomputer,butstill needguidance. 2.Set Learnersarereadytousethecomputer. 1.Perception Learnerscanobservehowtousecomputer. EXAMPLEOFACONSTRUCTMAP:COGNITIVE LEVELOF COGNITIV E VARIABLES EXAMPLESOFITEMS IN MEASURING THINKINGSKILLS 6. Creating Learners are able to suggest anewmodelorframeworkof learningdigitalcommunity. 5. Evaluating Learners are able to judge the impactofthescenariotowards educationperspective. 4. Analysing Learnerscandifferentiate the factsusingafew theories. 3. Applying Learnerscansolveproblems usingthefactsgiven. 2. Understanding Learnersareabletoexplainthe factsusingtheirownwords. 1. Remembering Learnersonlymemorisethe. Direction of Increasing “X” Learners Learners with high “X” Learners with mid range “X” Learners with low “X” Responses to Item Item response indicate highest level of X Item response indicate higher level of X Item response indicate lower level of X The construct map shows the lower ability students are in line with the lower level of items. This shows that when educators plan to develop an instrument, it Item response indicate lowest level of X Direction of Decreasing “X” is crucial to create an item difficulty thatrepresents learners’ ability. Learners’ ability Learners who engage in level characterisation Learners who engage in level organisation Learners who engage in level valuing Learners who engage in level responding Learners who engage in level receiving Direction of Decreasing“X” MEASURINGCONSTRUCTVALIDITY Unlike content validity, this construct validity can be analysed using statistical analysis. Use Exploratory FactorAnalysis [EFA], Confirmatory FactorAnalysis [CFA] or Unidimensionality to confirm all items are measuring the right construct and the raw variance explained for the latent variables is sufficient. Gap initem map also can show accuracy in construct validity. RELIABILITY The degree to which test scores are consistent over repeated administrations of the same/ equivalent test and therefore considered dependable and repeatable for an individual learner.A test thatproduces highly consistent and stable results (i.e. relative free from random error) is said to be highly reliable. TYPESOFRELIABILITY Test-retest demonstrates the stability of a measure over time 01 Internal consistency most of the items within a rating scale of a concept show consistency of scoring. Inter-rater the extent to which two or more independent raters are consistent in observing, recording and scoring data (should be 70% or higher agreement) 04 Intra-rater relies on one rater to rate an object or event twice (70% or higher of agreement) FACTORSAFFECTING VALIDITYANDHOWTO INCREASEVALIDITY? FACTORS AFFECTING VALIDITY HOWTO INCREASE VALIDITY? 1. Inaccuracy of items in measuringtheoutcomes 1. Vetting session to get reviewsfromtheexpert. 2. Pooritemsdevelopment 2. Followtheformatandtips indevelopinggooditems. 3. Unclearinstructions 3. Do pilot testing to measuretheusabilityof thetest. 4. Interveningevents 4. Controltheinternalthreats validityfactors. 5. Itemsdifficultyisnot suitableforthelearners 5. Create a construct map toensurethereisanitem thatrepresentslearners ability. FACTORS AFFECTING RELIABILIT Y HOWTOINCREASERELIABILITY? 1. TestLength 1. Thetestlengthshouldbeappropriate withtestdifficulty. 2. Test retest interval 2. Suggesteddurationisbetween3 weeksto2months. 3. Variability of scores 3. Doconstructmaptoensuretheitems aresuitablewithlearners’ability. 4. Guessing 4. Penalisetheguessinganswers.You alsocandetecteitherthelearnersare guessing or not using the statistical analysis named guessing analysis andpersonfitanalysis. 5. Inconsistency score from different raters 5. Appointtheratertomarkcertain questionsforalllearners(Thisalways happen when you have more than onesectionandhavemorethanone lecturer). CONCLUSION Coming back to the issue of validity and reliability in assessment, there is a need for educators to put an effort to ensurethattheitemsintheformofquestionsorinstructions arenotonlyclearbutalsoabletomeasurewhatitisintended tomeasurebasedontherelatedlearningoutcomes. Establishingvalidityandreliabilityofinstrumentscan provide educators with some indications of the quality of the measuring tools being used. Valid and reliable instruments enabletheeducatorstocontinuouslyusethemeasuringtools withoutreservation. Reliablenot valid Precisenot Accurate Reliableand valid Preciseand Accurate NotReliable butvalid NotPrecisebut Accurate NotReliable butNotvalid NotPrecisebut NotAccurate 94
We found you were making a quiz on the subject of "What is a rubric? A tool comprising a set of criteria (with possible levels of performance quality on the criteria) developed to assess learners’ work, from written to oral to visual. It is used tomeasureperformance,suchastheprocess of doing something (e.g.,playing a musical instrument, making a speech) or products of the learners’ work (e.g., concept map, laboratory report, bookshelf) (Brookhart, 2013). BENEFITS OF USING RUBRICS Support authentic assessment Reflects how well learners are able to apply knowledge inthe real-world context. Communicate expectations Gives learners an idea of what is expected of them. It is especially useful when the rubrics are communicated to the learners before they are assessed. Improve performance Explicit criteria and performance level descriptions allow learners to understand the desired performance. Learners are able to assess themselves by referring to the specific criteria and performance-level descriptions. Provide informative feedback Instructors are able to provide constructive feedback to learners on their weaknesses and strengths. Promote thinking andlearning 4 Provide informative feedback Instructors are able to provide constructive feedback to learners on their weaknesses and strengths. Learners are able to review and revise their work,thus reflecting on their learning experiences. Ensure fairness Learner performance assessed fairly given its objectivity. It helps avoid disputes between learners and instructors about the scores/grades achieved. TYPES OF RUBRIC ANALYTIC It consists of individual criterion with corresponding descriptor of performance. HOLISTIC It consists of performance descriptors that are placed together to refeclet to overalll performance. ANATOMY OF ANANALYTIC RUBRIC Rating scales with corresponding scores or weights The row represents the criteria for the desired performance, while the column represents the evaluation score. Under the rating scale (corresponding weights orscorescanbeassigned),theperformance descriptors are explicitly stated ANATOMYOF AHOLISTICRUBRIC Descriptions: It comprises the rating scale (corresponding weights or scores can be assigned) in the row while the combined desired performance descriptors are placed in the column. Description of the task The purpose of the assignment is to assess learner’s cognitive and analytic skills in applying knowledge gained and constructed throughout the course Diffusion of Innovation,bywatching the Surrogates movieand writing ananalytical review of the movie in the context of innovation diffusion.Iwant to provide learners with informative feedback on their cognitive and analytic skills such as the following: applying the concepts of innovation diffusion,making judgmentson the scenes related to innovation diffusion identified from the movie,selecting and critiquing theories of innovation diffusion and making connections between the theories,aswell asarguingand proposing necessary solutions to the problemss hown in the movie. ESTABLISHING ALTERNATIVEASSESSMENTINHIGHEREDUCATION VALIDITYAND RELIABILITYOF RUBRICS. Validity Measuring what is supossedto be measured. Reability Yielding consists results. Instruments that are used in the alternative assessment must be aligned to the learning outcomes and measure well what it intends to measure (valid) and produce consistent scores (reliable). The valid instrument will manifest the true ability (latent trait) of learners and permit appropriate inferences to be made about a specific group of people for specific purposes. TYPES OF VALIDITY FACE VALIDITY Simple form of validity thatapplies a superficial and subjective assessment whether the instrument measures what it is supposed to measure. CONTENT VALIDITY Refers to the extent to which the items on a measure assess the same content or how wellthe content material was sampled inthe measure. CONSTRUCT VALIDITY Refers to the extent to which the test may be said to measure a theoretical construct or trait. CONCURRENT VALIDITY Refers to the extent to which scores onanewmeasure are related to scores from a criterion measure administered at the same time. PREDICTIVE VALIDITY Refers to the uses of the scores from the new measure to predict performance on a criterion measure administered ata later time. STEPS TO CONSIDER WHEN ESTABLISHING CONTENT VALIDITY Calculate the level of expert agreeement for the content validity, get expert to verfy. Interview the expert ,make meta contentdata análisis from literatura. STEPS TO CONSIDER WHEN ESTABLISHING CONSTRUCCT VALIDITY Administer the instrument for alll learners, revise any item necccesay, run an apropriates statistical analiysis, administerthe instrument to learners as a pilot test . CONSTRUCTMAP Morepreciseconceptthan construct. Ranges from one extreme to another(fromhightolow,small tolarge,positivetonegative,or strongtoweak). Identifiesthepositionofthe respondentsinthisrange. Representativenessofsampling (questions and ability of respondents). EXAMPLEO FACONSTRUCTMAP:AFFECTIVE LEVELOF AFFECTIVE VARIABLES EXAMPLESOFITEMSIN MEASURINGTEAM WORKING SKILLS 5. Characterisation Learnersvolunteerstodothe groupworks. 4. Organisation Learners are willing to help others,althoughitisnottheir scopeoftask. 3. Valuing Learners respect other team members’opinionwhendoing thediscussion. 2. Responding Learnergivescooperationwhen neededingroupworks. 1. Receiving Learneracceptsthediversityof races and nationalities among groupmembers. EXAMPLEOFACONSTRUCTMAP:PSYCHOMOTOR LEVELOF PSYCHOMOTOR VARIABLES EXAMPLESOFITEMSIN MEASURING DIGITAL SKILLS 7.Origination Learnerscanmodifytheirowndevicesto performbetter. 6.Adaptation Learnerscansolveandtroubleshootthe problemwhileusingthecomputer. 5.ComplexOvertResponse Learnerscanusethecomputercompetently. 4.Mechanism Learners can use the computer independently,butstillmakeminorerrors. 3.GuidedResponses Learnerscanusethecomputer,butstill needguidance. 2.Set Learnersarereadytousethecomputer. 1.Perception Learnerscanobservehowtousecomputer. EXAMPLEOFACONSTRUCTMAP:COGNITIVE LEVELOF COGNITIV E VARIABLES EXAMPLESOFITEMS IN MEASURING THINKINGSKILLS 6. Creating Learners are able to suggest anewmodelorframeworkof learningdigitalcommunity. 5. Evaluating Learners are able to judge the impactofthescenariotowards educationperspective. 4. Analysing Learnerscandifferentiate the factsusingafew theories. 3. Applying Learnerscansolveproblems usingthefactsgiven. 2. Understanding Learnersareabletoexplainthe factsusingtheirownwords. 1. Remembering Learnersonlymemorisethe. Direction of Increasing “X” Learners Learners with high “X” Learners with mid range “X” Learners with low “X” Responses to Item Item response indicate highest level of X Item response indicate higher level of X Item response indicate lower level of X The construct map shows the lower ability students are in line with the lower level of items. This shows that when educators plan to develop an instrument, it Item response indicate lowest level of X Direction of Decreasing “X” is crucial to create an item difficulty thatrepresents learners’ ability. Learners’ ability Learners who engage in level characterisation Learners who engage in level organisation Learners who engage in level valuing Learners who engage in level responding Learners who engage in level receiving Direction of Decreasing“X” MEASURINGCONSTRUCTVALIDITY Unlike content validity, this construct validity can be analysed using statistical analysis. Use Exploratory FactorAnalysis [EFA], Confirmatory FactorAnalysis [CFA] or Unidimensionality to confirm all items are measuring the right construct and the raw variance explained for the latent variables is sufficient. Gap initem map also can show accuracy in construct validity. RELIABILITY The degree to which test scores are consistent over repeated administrations of the same/ equivalent test and therefore considered dependable and repeatable for an individual learner.A test thatproduces highly consistent and stable results (i.e. relative free from random error) is said to be highly reliable. TYPESOFRELIABILITY Test-retest demonstrates the stability of a measure over time 01 Internal consistency most of the items within a rating scale of a concept show consistency of scoring. Inter-rater the extent to which two or more independent raters are consistent in observing, recording and scoring data (should be 70% or higher agreement) 04 Intra-rater relies on one rater to rate an object or event twice (70% or higher of agreement) FACTORSAFFECTING VALIDITYANDHOWTO INCREASEVALIDITY? FACTORS AFFECTING VALIDITY HOWTO INCREASE VALIDITY? 1. Inaccuracy of items in measuringtheoutcomes 1. Vetting session to get reviewsfromtheexpert. 2. Pooritemsdevelopment 2. Followtheformatandtips indevelopinggooditems. 3. Unclearinstructions 3. Do pilot testing to measuretheusabilityof thetest. 4. Interveningevents 4. Controltheinternalthreats validityfactors. 5. Itemsdifficultyisnot suitableforthelearners 5. Create a construct map toensurethereisanitem thatrepresentslearners ability. FACTORS AFFECTING RELIABILIT Y HOWTOINCREASERELIABILITY? 1. TestLength 1. Thetestlengthshouldbeappropriate withtestdifficulty. 2. Test retest interval 2. Suggesteddurationisbetween3 weeksto2months. 3. Variability of scores 3. Doconstructmaptoensuretheitems aresuitablewithlearners’ability. 4. Guessing 4. Penalisetheguessinganswers.You alsocandetecteitherthelearnersare guessing or not using the statistical analysis named guessing analysis andpersonfitanalysis. 5. Inconsistency score from different raters 5. Appointtheratertomarkcertain questionsforalllearners(Thisalways happen when you have more than onesectionandhavemorethanone lecturer). CONCLUSION Coming back to the issue of validity and reliability in assessment, there is a need for educators to put an effort to ensurethattheitemsintheformofquestionsorinstructions arenotonlyclearbutalsoabletomeasurewhatitisintended tomeasurebasedontherelatedlearningoutcomes. Establishingvalidityandreliabilityofinstrumentscan provide educators with some indications of the quality of the measuring tools being used. Valid and reliable instruments enabletheeducatorstocontinuouslyusethemeasuringtools withoutreservation. Reliablenot valid Precisenot Accurate Reliableand valid Preciseand Accurate NotReliable butvalid NotPrecisebut Accurate NotReliable butNotvalid NotPrecisebut NotAccurate 94 ". Would you like to continue making it or start afresh?
A technical definition states or describes exactly the nature, scope, or meaning of something. Guidelines for Writing Technical Definitions 1. Be accurate. Use precise terms. Examples: Weak definition: Data is an information in digital form that can be transmitted or processed. Accurate and precise definition: Data are the quantities, characters, or symbols on which operations are performed by a computer, being stored and transmitted in the form of electrical signals and recorded on magnetic, optical, or mechanical recording media. 2. Be objective. Use facts, not opinions. Examples: Opinionated definition: A questionnaire is not valid and reliable for the study. Factual definition: A questionnaire is a set of printed or written questions with a choice of answers, devised for the purposes of a survey or statistical study. Clock or Time Heart or Love Bird or Freedom 11 3. Grade your language. Match it to the knowledge level of your readers. Examples: Complex and complicated definition: Research is a systematic investigation into and study of materials and sources in order to establish facts and reach new conclusions. Simple and clear definition: Research is collecting of information about a particular subject