

InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your ISRO knowledge and support exam preparation. Choose a topic below to get started.
1. |
If the page size in a 32-bit machine is 4K bytes then the size of page table is(A) 1 M bytes(B) 2 M bytes(C) 4 M bytes(D) 4 K bytes |
Answer» None | |
2. |
What is the meaning of RD’signal in Intel 8151 A?(A) Read (when it is low)(B) Read (when it is high)(C) Write (when it is low)(D) Read and Write (when it is high) |
Answer» | |
3. |
A system is having 8 M bytes of video memory for bit-mapped graphics with 64-bit colour. What is the maximum resolution it can support?(A) 800 x 600(B) 1024 x 768(C) 1280 x 1024(D) 1920 x 1440 |
Answer» | |
4. |
Which of the following statements about peephole optimization is False?(A) It is applied to a small part of the code(B) It can be used to optimize intermediate code(C) To get the best out of this, it has to be applied repeatedly(D) It can be applied to the portion of the code that is not contiguous |
Answer» | |
5. |
In Java, after executing the following code what are the values of x, y and z?int x,y=10; z=12;x=y++ + z++;(A) x=22, y=10, z=12(B) x=24, y=10, z=12(C) x=24, y=11, z=13(D) x=22, y=11, z=13 |
Answer» None | |
6. |
The broadcast address for IP network 172.16.0.0 with subnet mask 255.255.0.0 is(A) 172.16.0.255(B) 172.16.255.255(C) 255.255.255.255(D) 172.255.255.255 |
Answer» | |
7. |
How many edges are there in a forest with v vertices and k components?(A) (v + 1) − k(B) (v + 1)/2 − k(C) v − k(D) v + k |
Answer» | |
8. |
An example of poly-alphabetic substitution is(A) P-box(B) S-box(C) Caesar cipher(D) Vigenere cipher |
Answer» | |
9. |
A context model of a software system can be shown by drawing a(A) LEVEL-0 DFD(B) LEVEL-1 DFD(C) LEVEL-2 DFD(D) LEVEL-3 DFD |
Answer» | |
10. |
Which RAID level gives block level striping with double distributed parity?(A) RAID 10(B) RAID 2(C) RAID 6(D) RAID 5 |
Answer» | |
11. |
What is the output of the following C code?#include int main(){int index;for(index=1; index<=5; index++){printf("%d", index);if (index==3)continue;}}(A) 1245(B) 12345(C) 12245(D) 12354 |
Answer» | |
12. |
Consider the following pseudocode:x:=1;i:=1;while (x ≤ 500)beginx:=2x ;i:=i+1;endWhat is the value of i at the end of the pseudocode?(A) 4(B) 5(C) 6(D) 7 |
Answer» None | |