September 26, 2023ISRO CS 2014Question 1 Consider a 33 MHz CPU based system. What is the number of wait states required if it is interfaced with a 60 ns memory? […]
September 29, 2023Programming-for-Output-ProblemsQuestion 6 Consider the following C program: #include <stdio.h> int main () { int arr [] = {1,2,3,4,5,6,7,8,9,0,1,2,5}, *ip = arr+4; printf ("%d\n", ip[1]); return 0; […]
September 30, 2023ProgrammingQuestion 1 Consider the following C program: #include <stdio.h> int counter = 0; int calc (int a, int b) { int c; counter++; if (b==3) return […]
September 30, 2023Programming-for-Output-ProblemsQuestion 27 If n has 3, then the statement a[++n]=n++; A assigns 3 to a[5] B assigns 4 to a[5] C assigns 4 to a[4] D […]