MCQOPTIONS
Saved Bookmarks
This section includes 6 Mcqs, each offering curated multiple-choice questions to sharpen your Nokia knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Identify the data structure which allows deletions at both ends of the list but insertion at only one end. |
| A. | Input restricted dequeue |
| B. | Output restricted dequeue |
| C. | Priority queues |
| D. | Stack |
| Answer» B. Output restricted dequeue | |
| 2. |
Which of the following data structure can't store the non-homogeneous data elements? |
| A. | Arrays |
| B. | Records |
| C. | Pointers |
| D. | Stacks |
| Answer» B. Records | |
| 3. |
If a host on a network has the address 172.16.45.14/30, what is the subnetwork this host belongs to? |
| A. | 172.16.45.0 |
| B. | 172.16.45.4 |
| C. | 172.16.45.8 |
| D. | 172.16.45.12 |
| Answer» E. | |
| 4. |
Which of the following is true when describing a multicast address? |
| A. | Packets addressed to a unicast address are delivered to a single interface. |
| B. | Packets are delivered to all interfaces identified by the address. This is also called a one- to-many address. |
| C. | Identifies multiple interfaces and is only delivered to one address. This address can also be called one-to-one-of-many. |
| D. | These addresses are meant for non routing purposes, but they are almost globally unique so it is unlikely they will have an address overlap |
| Answer» C. Identifies multiple interfaces and is only delivered to one address. This address can also be called one-to-one-of-many. | |
| 5. |
What will be output of following program #include<stdio.h> #include<string.h> int main(){ int a = 5,b = 10,c; int *p = &a,*q = &b; c = p - q; printf("%d" , c); return 0; } |
| A. | 1 |
| B. | 5 |
| C. | -5 |
| D. | Compilation error |
| Answer» B. 5 | |
| 6. |
What is split horizon? |
| A. | Information about a route should not be sent back in the direction from which the original update came. |
| B. | It splits the traffic when you have a large bus (horizon) physical network. |
| C. | It holds the regular updates from broadcasting to a downed link. |
| D. | It prevents regular update messages from reinstating a route that has gone down. |
| Answer» B. It splits the traffic when you have a large bus (horizon) physical network. | |