WWW is used to browse for view the webpage basically content is normally displayed as HTML pages.
In any browser's webpage irrespective of language been used output content display as HTML pages only.
<u>Explanation:</u>
- In other methods is used XML format where it is opened and closed tag for every word editing XML file is very useful.
- XML tools are ready is available where end-user can edit or create by for example notepad++ extra
- It is a language designed to store the data in a specific format and easily process and used by a coding language or web pages.
Answer:
a = float(input("Enter Side A: "))
b = float(input("Enter Side B: "))
c = float(input("Enter Side C: "))
d = float(input("Enter Side D: "))
e = float(input("Enter Side E: "))
area1 = 1.0* a * b
area2 = (a - c) * (d - e -b)
area3 = 0.5 * (a - c) * e
print ("Room Area: " + str(area1 + area2 + area3))
Explanation:
happy to help ^3^
Answer:
C. how and where the data are physically arranged and stored.
Explanation:
The physical view as the name implies describes how and where the data are physically arranged in the database. This deals with the physical arrangement of data in the database. This user usually view the database in a logical way. e.g table. The physical arrangement is usually used by database specialists. There can be multiple logical view of a database but just a single view of the physical view.
Answer:
href="samples.html " alt="My Work Samples"
Explanation:
actually its just need ( href="sample.html" ) to make hyperlink syntax ,while ( alt="My Work Samples" ) for alt attribute it ill make specifies an alternate text , if something cannot be displayed.
I'm gonna help you out here by writing the jist of the loop that youll need because you may have to write this in c or java or python so all you need to do is create an array thats the same size as the array you want to duplicate and a for loop
int main ( ) {
int i,b [5],a [5] ={1,2,3,5,7};
for(i=0;i <5;i++)
{
b [i]=a [i];
}
return 0;
} //hope this helps :)