Home Page
(current)
Lessons
Articles
Online Programs
Online Programs
->
Programming
->
Programming
Freemarker Template Quiz
10 Questions
15 Questions
20 Questions
30 Questions
Question 1 (1 Points)
ในการประมวลผล template หากเกิดข้อผิดพลาด `TemplateException` มันหมายความว่าอะไร?
(1)
ไม่พบ template
(2)
การเชื่อมต่อฐานข้อมูลล้มเหลว
(3)
มีปัญหาเกี่ยวกับการแปลงข้อมูล
(4)
ผิดพลาดที่เกี่ยวกับ template ระหว่างการประมวลผล
Question 2 (1 Points)
อะไรที่ถูกพิจารณาว่าเป็น template engine สำหรับ Java platform?
(1)
Handlebars
(2)
EJS
(3)
Pug
(4)
Freemarker
Question 3 (1 Points)
ถ้าต้องการวนซ้ำข้อมูลใน List ควรใช้ directive ใด?
(1)
<#list>
(2)
<#loop>
(3)
<#foreach>
(4)
<#iterate>
Question 4 (1 Points)
หากต้องการทำ loop ใน Freemarker ควรใช้ directive ใด?
(1)
<#foreach>
(2)
<#iterate>
(3)
<#loop>
(4)
<#list>
Question 5 (1 Points)
วิธีไหนที่ถูกต้องสำหรับการเข้าถึง value ของ key `name` ใน map `user`?
(1)
user.name
(2)
user{name}
(3)
user[name]
(4)
user-name
Question 6 (1 Points)
แท็กไหนที่ใช้สำหรับการรวม templates อื่นเข้ามาใน template หลัก?**
(1)
<#insert>
(2)
<#include>
(3)
<#combine>
(4)
<#merge>
Question 7 (1 Points)
ใน Freemarker, การอ้างถึงตัวแปรใช้เครื่องหมายใด?
(1)
{}
(2)
[]
(3)
()
(4)
${}
Question 8 (1 Points)
เครื่องหมาย `!` ใน `${variable!}` มีวัตถุประสงค์เพื่ออะไร?
(1)
กำหนดค่า default ถ้าตัวแปรไม่มีค่า
(2)
แสดงค่าของตัวแปรเสมอ ไม่ว่าจะมีหรือไม่มี
(3)
แสดง error ถ้าตัวแปรไม่มีค่า
(4)
สร้าง loop
Question 9 (1 Points)
เมื่อต้องการใช้ template ซ้อนกัน (nested templates) คำสั่งใดที่ใช้?
(1)
<#include>
(2)
<#insert>
(3)
<#embed>
(4)
<#nest>
Question 10 (1 Points)
การแสดงตัวแปรทำได้โดยใช้...
(1)
`${variable}`
(2)
`{{variable}}`
(3)
`<#variable>`
(4)
`$(variable)`
You got
/ 10
Viewers : 8,212
Other Programs
Freemarker Template Quiz
Lessons
Articles
Online Programs