Back to the 2023 paper
Similar questions
Signal Conditioning and Data Acquisition SystemExplain the architecture of a microcontroller with neat block diagram. Describe the basics of assembly language and C-language programming used for microcontrollers.20257mOperating SystemWrite short notes on: Process Control Block20227mArtificial intelligenceConsider the knowledge-base (KB) for the Blocks World problem from the previous question. Draw the complete AND-OR proof tree showing all the answers to the query ∃w above(w, B).20197mOperating SystemWrite short notes on: Process Control Block (PCB)20237m
PreviousConsider the following grammar: E \rightarrow E+T/T T \rightarrow T*F/F F \rightarrow (E)/id Construct Predictive Parsing Table of the above grammar.NextConsider the following code: (i) i = 12 (ii) j = 1 (iii) t1 = 10 * i (iv) t2 = t1 + j (v) t3 = 8 * t2 (vi) t4 = t3 - 88 (vii) a [ t4 ] = 0.0 (viii) j = j + 1 (ix) if j <= 10 goto (iii) (x) i = i + 1 (xi) if i <= 10 goto (ii) (xii) i = 1 (xiii) t5 = i - 1 (xiv) t6 = 88 * t5 (xv) a [ t6 ] = 1.0 (xvi) i = i + 1 (xvii) if i <= 10 goto (xiii) find out the basic block and draw the flow graph for the above code.