Share/Like This Page

Sites for Teachers

Continuing Education Programming Questions

Create printable tests and worksheets from Continuing Education Programming questions. Select questions to add to a test using the checkbox above each question. Remember to click the add selected questions to a test button before moving to another page.

Show Programming questions in All Grades.
1 2 3 4 5 next page
Continuing Education :: HTML by yasserhy
Which of these tags are all <table> tags?
  1. <table><tr><tt>
  2. <table><tr><td>
  3. <table><head><tfoot>
  4. <thead><body><tr>
Continuing Education :: JavaScript by yasserhy
How do you write a conditional statement for executing some code if "i" is NOT equal to 5?
  1. if i <>5
  2. if (i != 5)
  3. if (i <> 5)
  4. if =! 5 then
Continuing Education :: JavaScript by yasserhy
What is the correct JavaScript syntax to insert a comment that has more than one line?
  1. <!--This comment has more than one line-->
  2. //This comment has more than one line//
  3. /*This comment has more than one line*/
Continuing Education :: JavaScript by yasserhy
How do you write a conditional statement for executing some code if "i" is equal to 5?
  1. if i==5 then
  2. if i=5
  3. if i=5 then
  4. if (i==5)
Continuing Education :: HTML by yasserhy
Choose the correct HTML tag to make a text italic:
  1. <i>
  2. <italic>
Continuing Education :: JavaScript by yasserhy
How does a "for" loop start?
  1. for i = 1 to 5
  2. for (i <= 5; i++)
  3. for (i = 0; i <= 5; i++)
  4. for (i = 0; i <= 5)
Continuing Education :: JavaScript by yasserhy
How does a "while" loop start?
  1. while i=1 to 10
  2. while (i<=10;i++)
  3. while (i<=10)
Continuing Education :: JavaScript by yasserhy
What is the correct JavaScript syntax to write "Hello World"?
  1. response.write("Hello World")
  2. document.write("Hello World")
  3. "Hello World"
  4. $("Hello World")
Continuing Education :: CSS by yasserhy
If your styles work on Firefox but not on IE, what should you check?
  1. !DOCTYPE Definition
  2. CSS Standard Type Definition
Continuing Education :: CSS by yasserhy
Which CSS property controls the text size?
  1. font-style
  2. font-size
  3. text-size
  4. text-style
Continuing Education :: HTML by yasserhy
Which is the correct section in an HTML page to place META tags at?
  1. <!doctype>
  2. <title>
  3. <head>
  4. <body>
Continuing Education :: CSS by yasserhy
How do set the minimum height to 100px for a structural element?
  1. height: 100px min;
  2. min-height: 100px;
Continuing Education :: JavaScript by yasserhy
How do you write "Hello World" in an alert box?
  1. alertBox("Hello World")
  2. msgBox("Hello World")
  3. alertBox="Hello World"
  4. alert("Hello World")
Continuing Education :: CSS by yasserhy
How do you change the text color of an element?
  1. text-color:
  2. fgcolor
  3. text-color=
  4. color:
Continuing Education :: HTML by yasserhy
Which of these attributes does NOT belong to the img tag?
  1. src
  2. href
  3. alt
  4. id
Continuing Education :: JavaScript by yasserhy
Where is the correct place to insert a JavaScript?
  1. The <head> section
  2. The <body> section
  3. Both the <head> section and the <body> section are correct
Continuing Education :: CSS by yasserhy
With table borders, what is the property used to control the appearance if two borders come across each other?
  1. table-border-across
  2. border-collapse
  3. table-collapse
  4. border-across
Continuing Education :: CSS by yasserhy
How do you add a background color for all <h1> elements?
  1. h1 {background-color:#FFFFFF}
  2. all.h1 {background-color:#FFFFFF}
  3. h1.all {background-color:#FFFFFF}
Continuing Education :: HTML by yasserhy
In a FORM tag, which attribute would you use to specify the page that is going to handle your submitted data?
  1. <form method="mypage.aspx">
  2. <form onsubmit="mypage.aspx">
  3. <form action="mypage.aspx">
Continuing Education :: HTML by yasserhy
How can you open a link in a new browser window?
  1. <a href="url" target="new">
  2. <a href="url" new>
  3. <a href="url" target="_blank">
1 2 3 4 5 next page