Answer:
I'm guessing D? i hope its right
No one could possibly know, unfortunately.
Answer:
The code will display the following on the screen:-
2
0
2
Explanation:
The output is like this because x{2} assigns the value 2 to the integer x.First the value of x is printed on the screen that is 2 and that newline is used to go to the next line.After that function is called doSomething with x passed as the argument. doSomething function assigns the value zero to the variable passed and prints it on the screen.So the next line is 0.Since x is passed by value so no changes will appear in the original argument.Hence the last line printed is 2.
Answer:
XML (Extensible Markup Language):
Explanation:
XML (Xtensible Markup Language):
It is a markup language that is used for creating web-pages, it defines a set of rules that makes it readable both to humans and machine.
XML was primarily designed to be a software and hardware independent tool and it's focus was on data. XML provides a framework for defining markup languages.
XML, HTML and XHTML are all related to each other because they are all markup languages and can be used to build websites.
Basically,
-HTML is primarily for web-pages.
-XML is primarily for data.
-XHTML is a standard based on HTML that follows the strict rules of XML.