a) IANA
b) W3C
c) WIPO
d) EPO
Answer: b
Explanation: In december 1999, the favicon was standardized by W3C i.e World Wide Web Consortium. IANA is Internet Assigned Numbers Authority. WIPO stands for World Intellectual Property Organization and EPO for European Patent Office.
Related Posts
Comment on the output of the following C code.
#include <stdio.h>
int main()
{
int i, n, a = 4;
scanf(“%d”, &n);
for (i = 0; i < n; i++)
a = a * 2;
}What will be the output of the following C code?
#include <stdio.h>
int main()
{
int a = 2;
if (a >> 1)
printf(“%d\n”, a);
}What will be the output of the following C code?
#include <stdio.h>
int main()
{
if (7 & 8)
printf(“Honesty”);
if ((~7 & 0x000f) == 8)
printf(“is the best policy\n”);
}What will be the output of the following C code?
#include <stdio.h>
int main()
{
unsigned int a = 10;
a = ~a;
printf(“%d\n”, a);
}What will be the output of the following C code?
#include <stdio.h>
int main()
{
int c = 2 ^ 3;
printf(“%d\n”, c);
}What will be the output of the following C code?
#include <stdio.h>
void main()
{
int a = -5;
int k = (a++, ++a);
printf(“%d\n”, k);
}What will be the output of the following C code?
#include <stdio.h>
void main()
{
int a = 5, b = -7, c = 0, d;
d = ++a && ++b || ++c;
printf(“\n%d%d%d%d”, a, b, c, d);
}
Join The Discussion