Quiz Space

Modern Application Development I · Quiz 2 · 23 Nov 2025 · September 2025 term

Question 12: Consider the URL:\ https://example.com:8080/index.html?u…

Question 12

+3 marksOne or more correct options

Consider the URL:
**https://example.com:8080/index.html?user=admin\#section2**\ Which of the following is/are True?

Select all that apply.

  1. A

    https is the protocol.

  2. B

    8080 is the default port of HTTPS.

  3. C

    index.html is the html file which got rendered.

  4. D

    user=admin is part of the query string.

  5. E

    #section2 is sent to the server as part of the request.

Show answer

Correct answers

  • A

    https is the protocol.

  • C

    index.html is the html file which got rendered.

  • D

    user=admin is part of the query string.

Question 12 of 16 in the IIT Madras BS Modern Application Development I (MAD 1) Quiz 2 paper sat on 23 Nov 2025, in the September 2025 term (IIT M DIPLOMA AN EXAM QDD2 23 Nov 2025 NEW). It carries 3 marks.

More questions from this paper

  1. Q1A client sends a signal to a satellite 36,000 km above Earth. Speed of electromagnetic waves in vacuum = 3 × 10⁸ m/s. C…
  2. Q2Consider the following flask app. What will be the output if you visit 127.0.0.1:5000/hello ?
  3. Q3Consider the following flask app. If a POST request is sent to 127.0.0.1:5000/data/5, what will be the output on the br…
  4. Q4Consider the following flask app. What will be the output on the browser, if you visit 127.0.0.1:5000/post/23?
  5. Q5Consider the following code:\ app.py You are running a Flask web application locally using the command: python app.py. …
  6. Q6Match the Flask-RESTful components with their correct description/role:
  7. Q7What happens if you don’t return a proper dictionary/JSON in Flask-Restful API methods?
  8. Q8Consider the following table. Which of the following matches is correct?
  9. Q9Consider the following Flask SQLalchemy code. What is true about the credits column?
  10. Q10Consider the following Flask code: File name: app.py If the app is running on <u>http://127.0.0.1:5000</u> and the calc…
  11. Q11Consider the following Flask code: File name: main.py Choose the different ways of executing “main.py” and rendering re…
  12. Q13Match the JavaScript event binding method with its correct description:
  13. Q14Consider the following JavaScript output methods. Which of these statements is/are true?
  14. Q15You are building a Flask-RESTful API with the following code: Which of the following statements is/are true?(Select all…
  15. Q16Consider the following table students: Which of the following SQL queries will return the names of students who are 20 …