Computer Science
(i) Expand the following terms: POP3, URL
(ii) Give one difference between XML and HTML.
Computer Networks
3 Likes
Answer
(i) POP3 – Post Office Protocol 3
URL – Uniform Resource Locator
(ii) One difference between XML and HTML:
HTML( Hyper text mark Up language) | XML (Extensible Markup Language) |
---|---|
It is a static web development language – only focuses on how data looks. It is used for only displaying data, cannot transport data. | It is a dynamic web development language – as it is used for transporting and storing data. |
Answered By
3 Likes
Related Questions
Assertion(A): List is an immutable data type.
Reasoning(R): When an attempt is made to update the value of an immutable variable, the old variable is destroyed and a new variable is created by the same name in memory.
- Both A and R are true, and R is the correct explanation of A.
- Both A and R are true, and R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
Assertion(A): Python Standard Library consists of various modules.
Reasoning(R): A function in a module is used to simplify the code and avoids repetition.
- Both A and R are true, and R is the correct explanation of A.
- Both A and R are true, and R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
(i) Define the term bandwidth with respect to networks.
(ii) How is http different from https ?
The code given below accepts a number as an argument and returns the reverse number. Observe the following code carefully and rewrite it after removing all syntax and logical errors. Underline all the corrections made.
define revNumber(num): rev = 0 rem = 0 While num > 0: rem == num % 10 rev = rev * 10 + rem num = num//10 return rev print(revNumber(1234))