a) scheme
b) content
c) http-equiv
d) name
Answer: d
Explanation: The information/value of the content is provided by http-equiv through http header. Some values associated with http-equiv and name attribute are given by the content attribute. A scheme that to be used to interpret the value of the content is specified by the scheme tag. The name attribute specifies the name of input element and thus provides information/value of it.
Related Posts
What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
char *ch;
printf(“enter a value between 1 to 3:”);
scanf(“%s”, ch);
switch (ch)
{
case “1”:
printf(“1”);
break;
case “2”:
printf(“2”);
break;
}
}What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
double ch;
printf(“enter a value between 1 to 2:”);
scanf(“%lf”, &ch);
switch (ch)
{
case 1:
printf(“1”);
break;
case 2:
printf(“2”);
break;
}
}What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
int ch;
printf(“enter a value between 1 to 2:”);
scanf(“%d”, &ch);
switch (ch, ch + 1)
{
case 1:
printf(“1\n”);
break;
case 2:
printf(“2”);
break;
}
}What will be the output of the following C code? (Assuming that we have entered the value 2 in the standard input)
#include < stdio.h >
void main()
{
int ch;
printf(“enter a value between 1 to 2:”);
scanf(“%d”, &ch);
switch (ch)
{
case 1:
printf(“1\n”);
break;
printf(“Hi”);
default:
printf(“2\n”);
}
}What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
int ch;
printf(“enter a value between 1 to 2:”);
scanf(“%d”, &ch);
switch (ch)
{
case 1:
printf(“1\n”);
default:
printf(“2\n”);
}
}What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
char *ch;
printf(“enter a value between 1 to 3:”);
scanf(“%s”, ch);
switch (ch)
{
case “1”:
printf(“1”);
break;
case “2”:
printf(“2”);
break;
}
}What will be the output of the following C code? (Assuming that we have entered the value 1 in the standard input)
#include < stdio.h >
void main()
{
double ch;
printf(“enter a value between 1 to 2:”);
scanf(“%lf”, &ch);
switch (ch)
{
case 1:
printf(“1”);
break;
case 2:
printf(“2”);
break;
}
}
Join The Discussion