Assessments for Programming and Artificial Intelligence - Practical - 2026
|
|
Title of test:
![]() Assessments for Programming and Artificial Intelligence - Practical - 2026 Description: General Education (First Secondary Grade) First Semester of the 2025/2026 Academ |



| New Comment |
|---|
NO RECORDS |
|
Select the correct way to write the p tag. <p>Hello</p>. <p>/Hello<p>. </p>Hello<p>. <p>Hello<p>/. Select the appropriate tag to be used to break a line of text. p tag. br tag. h5 tag. b tag. Choose the appropriate tag to create a bulleted list like the following. ・Banana ・Oranges ・Apples. ul tag. p tag. ol tag. br tag. Choose what will be displayed. <ol> <li>Cut ingredients</li> <li>Stir-fry</li> <li>Add seasonings</li> </ol>. Cut ingredients Stir-fry Add seasonings. 1.Cut ingredients 2.Stir-fry 3.Add seasonings. (Cut ingredients) (Stir-fry) (Add seasonings). ・Cut ingredients ・Stir-fry ・Add seasonings. Select a tag to display an image with the image name "image.png". <img><"image.png">. <img="image.png">. <img src="image.png">. <src="image.png">. Choose the correct way to write the "alt attribute" which allows you to add a description to the image. <alt="This is an image.">. <img><"This is an image.">. <img="This is an image.">. <img alt="This is an image.">. Select the correct description for the "color" property. Change the background color. Change the text color. Change the image color. Change the font size. Select the correct description for the "background-color" property. Change the image color. Change the text color. Change the font weight. Change the background color. Select the correct description for the value of the "font-weight" property as "bold.". Text becomes thin. Text color changes to gold. Font size becomes smaller. Text becomes bold. Select the correct value for the "font-size" property. font-size: 10px;. font-size: 10;. font-size: 10g;. font-size: 10size;. Please select what kind of display you would like to use. <ul> <li>strawberry</li> <li>cherry</li> <li>orange</li> </ul>. strawberry cherry orange. (strawberry) (cherry) (orange). 1.strawberry 2.cherry 3.orange. ・strawberry ・cherry ・orange. Select the correct description for the "background-color" property. Change the font color. Change the background color. Change the font weight. Change the image color. Select the correct description for the value of the "font-weight" property as "bold". The font color becomes gold. The font size becomes smaller. The font becomes thin. The font becomes bold. Please select the correct expression for the condition "the variable score equals 50". score == 50. score = 50. score > 50. scor. Please select the correct expression for the condition "A is less than B". A == B. A > B. A < B. A <= B. Please select the program that represents the condition "the variable score is greater than or equal to 50". score >= 50. score > 50. score == 50. score <= 50. Please select the correct operator that represents "multiple conditions are simultaneously satisfied" (AND). ||. &&. |. &. Please select the correct operator that represents "at least one of multiple conditions is satisfied" (OR). |. &&. ||. ||. Please select the output result of the following program: let math = 100; if (math == 100) { let fee = 500; } console.log(fee + " codycoins GET");. "500 codycoins GET" is output. It results in an error. Please select what to write at the beginning of a program that expresses "repeat outputting apple to the console 10 times". for. let. if. num. Please select the correct program to add 1 to variable i. i++. i+1. i+. i++1. Please select the correct program to repeat a specified process 10 times. for { specified process; } ( i < 10; let i = 0; i++; ). for (i < 10; let i = 0; i++; ) { specified process; }. for (let i = 0; i++; i < 10) { specified process; }. for (let i = 0; i < 10; i++) { specified process; }. Select the execution result of the following program from the choices: for (let i = 0; i < 3; i++) { let num = 100; } console.log(num);. 100 is output. It results in an error. Select the execution result of the following program from the choices: for (let i = 0; i < 3; i++) { console.log("A"); if (i == 1) { console.log("B"); } }. AAAA. ABA. ABAA. AABA. Please select the rewritten program for "i = i + 2". i = 2. i+++. i += 2. i =+. Please select the correct program to create a function move without parameters. move() function { Program to Run }. function move() { Program to Run }. function move { Program to Run }. move function { Program to Run }. Select the correct console output when the following program is executed: function calc(num) { let result = num + 5; return result; } console.log(calc(50));. 50. 45. 55. Nothing is output. Select the correct console output when the following program is executed: function calc( number ){ let answer = number * 10; return answer; } console.log( calc(3) );. 0. 3. 30. 10. Select the result of executing the following program from the choices below: function calc(num) { let answer = num * 3; return answer; } console.log(answer);. It results in an error. It doesn't result in an error. Please select the correct operator that represents "multiple conditions are simultaneously satisfied" (AND). |. &&. &. ||. Select the execution result of the following program from the choices: for (let i = 0; i < 3; i++) { let num = 100; } console.log(num);. It results in an error. 100 is output. Select the execution result of the following program from the choices: for (let i = 0; i < 4; i++) { console.log("0"); if (i == 2) { console.log("1"); } }. 00100. 00000. 00001. 00010. Please select the rewritten program for "i = i + 5". i+++. i = 5. i += 5. i =+ 5. Please select the correct program to create a function move without parameters. move function { Program to Run }. function move() { Program to Run }. function move { Program to Run }. move() function { Program to Run }. Please select the execution result of the following program from the choices. let num = 1; for (let i = 0; i < 3; i++) { num = num * 2; } console.log(num);. 8. 4. 16. 2. From the choices, select the most appropriate representation of how the value of variable i changes in the following program. let num = 1; for(let i = 1; i <= 7; i++){ num = num * 2; } console.log(num);. 0→1→2→3→4→5→6→7. 0→1→2→3→4→5→6. 1→2→3→4→5→6→7. 1→2→3→4→5→6. let tempList = [36.2, 36.5, 36.3, 36.8, 36.4]; console.log(tempList[2]);. 36.5. 36.3. 36.3. Please select the output result when the following program is executed: let scoreList = [52, 60, 79, 82, 66, 59, 88]; console.log(scoreList[2]);. 79. scoreList[2]. 82. 60. From the choices, select the most appropriate representation of how the value of variable i changes in the following program. let num = 1; for (let i = 1; i <= 4; i++) { num = num * 2; } console.log(num);. 1→2→3→4. 0→1→2→3. 1→2→3. 0→1→2→3→4. What are for loops used for?. Repeating things. Repeating rings. Rerouting trains. Please select the result of executing the following program. let numList = [8, 6, 11, 10, 9, 7, 12]; console.log(numList[2]);. 6. numList[2]. 11. 10. Please select the result of executing the following program. let numList = [10, 11, 12]; for (let i = 0; i < 3; i++) { console.log(numList[i]); }. 12 11 10. 10 11 12. numList[i]. 10. Please select the result of executing the following program. let numList = [5, 6, 7]; for (let i = 0; i < numList.length; i++) { console.log(numList[i]); }. 5. 7 6 5. 5 6 7. numList[i]. Select the output result from executing the following program: let A = 500; let B = 0; if (A >= 1) { B = B + 100; console.log(B); }. 500. Nothing is output. B. 100. Select the output result from executing the following program: let weather = "sunny"; let group = "B group"; if (weather == "sunny") { if (group == "A group") { console.log("Destination is the park"); } else { console.log("Destination is the amusement park"); } } else { console.log("Destination is the aquarium"); }. Destination is the amusement park. Destination is the aquarium. Nothing is output. Destination is the park. Please select the result of executing the following program. let numList = [5, 6, 7]; for (let i = 0; i < numList.length; i++) { console.log(numList[i]); }. 7 6 5. 5 6 7. 5. numList[i]. |




