March 2, 2024

APPSC-2012-DL-CS

Question 5 What is the output of the following Pascal program segment? {c: array [1..10] of integer; m, n, temp : integer; procedure r (k, j […]
March 4, 2024

APPSC-2012-DL-CS

Question 11 The consistency model supported in IVT (Integrated shared virtual memory at yale) is A Sequential Consistency B General Consistency C Strict Consistency D Weak […]
March 6, 2024

Question 4074 – UGC NET CS 2005 Dec-Paper-2

What is the output of the following C-program main() { printf(”%d%d%d”, sizeof(3.14f), sizeof(3.14), sizeof(3.141)); } Correct Answer: E Question 11 Explanation:  The sizeof operator will print […]
March 16, 2024

JAVA

Question 26 ​What is the output of the following JAVA program? public class Good{ Private int m; Public Good(int m){this.m=m;} public Boolean equals(Good n){return n.m=m;} public […]