Question 1 Give short answers to the following questions: (i) Convert the following Pascal statement to a single assignment statement: if x > 5 they y:=true […]
Question 183 In Java, the Dynamic Array are known as : A Vectors B Cycle C Remote D Kubernotos ProgrammingArraysNIC-NIELIT STA 2020Video-Explanation Question 183 Explanation: In […]
Question 1 We use malloc and calloc for A Dynamic memory allocation B Static memory allocation C Both dynamic and static memory allocation D None of […]
Question 70 What does the following java function perform ? (Assume int occupies four bytes of storage) Public static int f(int a) { //Pre-conditions : a>0 […]
Question 17 The time complexity of the following C function is (assume n>0) int recursive (int n) { if (n==1) return(1); else return(recursive (n-1) + recursive(n-1)); […]
Question 19 Consider the following C program: Assume that the input to the program from the command line is 1234 followed by a newline character. Which […]