HTML True False Questions |True False Questions-HTML
1. The <html> tag tells web browsers the document is an html document. a. True b. False 2. In HTML, tag are defined …
Learn CS with Eliza
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 …
1. Who invented Java Programming? a. Guido van Rossum b. James Gosling c. Dennis Ritchie d. Bjarne Stroustrup 2. Java …
1. What is the full form of SQL? a. Structured Query List b. Structured Query Language c. Sample Query Language …
1. SQL stands for Standard Query Language. a. True b. False 2. Semicolon at the end of each SQL statement …
1. James Gosling is father of Java. a. True b. False 2. Java programming language was invented by Dennis Ritchie. …
1. Who is the father of C language? a. Steve Jobs b. James Gosling c. Dennis Ritche d. Rasmus Lerdorf …
1. C is case sensitive. a. True b. False C is a case-sensitive programming language. This means that uppercase and …
Introduction: C is a general purpose, procedural, structured programming language developed at Bell Laboratories of USA in the year 1972. …
1. Write a program to print Hello, world! print(“Hello, world!”) OR x=”Hello, World!” print(x) Output: Hello, world! 2. Write a …