Answer:
Relative
Explanation:
Web development is a process of designing and building a web page or website. HTML, CSS and JavaScript are the basic tools used in building a website.
Cascading style sheet or CSS is a web development tool used to style the content of a HTML file. Css has pointers used to represent HTML elements for styling. A HTML element can be fixed, absolute or relative.
When a CSS file sets an element relative to it container or other element, the element can be moved to the right, left, top or bottom position relative to the four corners of the parent element.
Answer:
Attend traings
Explanation:
Because if you do you can learn diffent waay to do it and choose your way that you like.
ANd do not obseve poeple who has it easy
//=indicating you to do the programming part on your own relating to the description provided against. This done because different programming languages require different coding for that.
n=integer value
n1=dummy storage for n
r=variable used to do the function
{
int n,r,n1,rev=0;
//do the coding here for storing the integer in the variable n
n1=n;
while(n>0){
r=n%10;
rev=(rev*10)+r;
n=n/10;
}
//now add a command for displaying the value of rev
}
this is just a logic i used for java
done.
Answer:
The program is as follows:
<em>5 INPUT A,B</em>
<em>6 PROD = A * B</em>
<em>7 PRINT PROD</em>
<em>8 TOTAL = A + B</em>
<em>9 PRINT TOTAL</em>
<em>10 DIFF = A - B</em>
<em>11 PRINT DIFF</em>
<em>12 END</em>
Explanation:
This gets input for the two numbers
<em>5 INPUT A,B</em>
This calculates the product
<em>6 PROD = A * B</em>
This prints the calculated product
<em>7 PRINT PROD</em>
This calculates the sum
<em>8 TOTAL = A + B</em>
This prints the calculated sum
<em>9 PRINT TOTAL</em>
This calculates the difference
<em>10 DIFF = A - B</em>
This prints the calculated difference
<em>11 PRINT DIFF</em>
This ends the program
<em>12 END</em>
The answer to this question is a protocol.