MCQ PHP | PHP MCQ
1. What is PHP? a. PHP is an open-source programming language b. PHP is used to develop dynamic and interactive …
Learn CS with Eliza
1. What is PHP? a. PHP is an open-source programming language b. PHP is used to develop dynamic and interactive …
1. What is C++? Answer: C++ is an object-oriented programming language created by Bjarne Stroustrup. It was released in 1985. C++ …
1. Â Write a C++ program to implement queue using array. Â #include<iostream> using namespace std; int queue[5], n=5, front=-1, rear=-1; …
1. What does HTML stand for? Answer:Â HTML stands for HyperText Markup Language. 2. What is HTML? Answer: HTML stands for …
1. Create a webpage in html which has college name as heading and add relevant text regarding it. <HTML> <HEAD> …
SQLite is a Database Management System used to store and manage data in a structured format. The lite in SQLite …
1. What is HTML? a. HTML describes the structure of a webpage b. HTML is the standard markup language mainly …
1. HTML files are saved by default with the extension_________. Ans: .html or .htm 2. We enclose HTML tags within …
1. The <html> tag tells web browsers the document is an html document. a. True b. False 2. In HTML, tag are defined …
1. Write a PHP program to print Hello World. <?php echo “Hello World”; ?> Output: 2. Write a PHP program …