Unit 3
Unit 3
Web technology-ii
Introduction to Internet Technology
javascript
Copy code
if (5 > 3) {
console.log("True");
} else {
console.log("False");
}
a) True
b) False
c) Error
d) Undefined
23. Which PHP function is used to fetch data from a database table?
a) fetch_data()
b) mysqli_fetch_assoc()
c) get_data()
d) retrieve_data()
24. What is the correct SQL statement to create a table named "Users"?
a) CREATE Users;
b) CREATE TABLE Users;
c) MAKE TABLE Users;
d) INSERT TABLE Users;