a) <datalist>
b) <keygen>
c) <output>
d) <password>
Answer: d
Explanation: <datalist>, <keygen> and <output> are HTML5 added form element. Element <password> is not a HTML5 added form element. Password is an attribute used in input type in HTML.
Related Posts
What will be the output of the following C code?
#include < stdio.h >
int main()
{
void foo();
void f()
{
foo();
}
f();
}
void foo()
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
int main()
{
void foo(), f();
f();
}
void foo()
{
printf(“2 “);
}
void f()
{
printf(“1 “);
foo();
}What will be the output of the following C code?
#include < stdio.h >
int main()
{
void foo();
printf(“1 “);
foo();
}
void foo()
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0, k;
label: printf(“%d”, i);
if (i == 0)
goto label;
}What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0, k;
if (i == 0)
goto label;
for (k = 0;k < 3; k++)
{
printf(“hi\n”);
label: k = printf(“%03d”, i);
}
}What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0;
if (i == 0)
{
goto label;
}
label: printf(“Hello”);
}What will be the output of the following C code?
#include < stdio.h >
int main()
{
int i = 0, j = 0;
l1: while (i < 2)
{
i++;
while (j < 3)
{
printf(“loop\n”);
goto l1;
}
}
}
Join The Discussion