Question 12 What is the following program segment doing? main() { int d=1; do { printf(“%d”\n”,d++); }while(d<=9); } A Adding 9 integers B Adding integers from […]
Question 13 What is the output of the following program ? #include int main() { if(printf (“ABC”)) printf (“True”) ; else printf(“False”); return 0; } A […]
Question 3 A common property of logic programming languages and functional languages is: A both are procedural languages B both are based on λ-calculus C both […]