The granting of fundamental rights to citizens aims at ensuring ?
View Answer Report Error Discuss
What is an e-mail?
Which sea separates Europe from Africa?
The Mediterranean sea separates Europe from Africa.
Logical puzzle
You have 10 coins….arrange them in 4 straight lines such that each line contains 4 coins.
View answer Workspace Report Error Discuss
RIP- Routing Information Protocol
It is a simple protocol used to exchange information between the routers.
View Answer Workspace Report Error Discuss
Gateway-to-Gateway protocol is a protocol formerly used to exchange routing information between Internet core routers.
It is a protocol formerly used to exchange routing information between Internet core routers.
Triple point of water corresponds to
Rewrite the following set of statements using conditional operators.
int a =1, b ;
if ( a > 10 )
b = 20;
int a = 1, b , dummy;
a > 10 ? b = 20 : dummy =1;
Note that the following would not have worked:
a > 10 ? b = 20 : ;;