Answer:
H1 tag and LI tag
hopefully it will help you
........on the same side of the double bond........
Explanation:
A. Pseudocode to determine the area of a triangle given value the base b andthe height h:-
START
INPUT b
INPUT h
COMPUTE Area = 0.5*b*h
DISPLAY Area
STOP
B. Pseudocode to compute the simple interest earned in 1 year given the starting account balance B and annual interest rate I :-
START
INPUT B
INPUT I
COMPUTE Interest = (B*I*1)/100
DISPLAY Interest
STOP
C. Pseudocode to determine the flying time between two cities given the mileage M between them and average speed of the airplane :-
START
INPUT M
INPUT S
COMPUTE Time = M/S
DISPLAY Time
STOP
Consider that there are many different components of one file such as a song rather than a word document of typed words. Research the components of why this song takes up space on a computer.
<u>When a programmer declare single dimension or double dimensions array they use box bracket with index number to access the cell number.</u>
int a[10]; = where a is variable name declared with data type as integer and which hold 10 values.
Each is access with cell number or index number surrounded by box brackets
Example a [4] where “a” is variable number and “4” is index number or cell number. By refer “4” user is access the 4 cell data
Maximum “a” single dimension store total of 10 number where cell number or index number starts from 0 to 9.