An example for an empty tag in HTML is :
A<html>
B<img>
C<body>
D<b>
A<html>
B<img>
C<body>
D<b>
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}