October 6, 2023

Programming-for-Output-Problems

Question 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; […]
October 6, 2023

Compiler-Design

Question 1 Consider the following grammar. S → aSB|d B → b The number of reduction steps taken by a bottom-up parser while accepting the string […]
October 6, 2023

Digital-Logic-Design

Question 3 Using a 4-bit 2’s complement arithmetic, which of the following additions will result in an overflow? 1. 1100 +1100 2. 0011 +0111 3. 1111 +0111 A […]
error: Alert: Content selection is disabled!!