Sunday class 6(solution)

Sunday muckets solved

                                                          Group A: Multiple Choice Questions (10 × 1 = 10) Group B: True or False (5 × 1 = 5) 1. Write true or false: 5×1=5 i)High-level languages require no translators to convert code into machine language. ii)An interpreter converts the entire high-level program into machine code at once. iii)Supercomputers are the most powerful … Read more

Internet Services MCQ

Internet Services

1.What does the term “Internet” stand for?a) International Networkb) Internal Networkc) Interactive Networkd) Intelligent Network 2.The Internet is a network of:a) Billions of isolated computersb) A single supercomputerc) Millions of interconnected computersd) Local devices without global connectivity 3.Which of the following is NOT required to connect to the internet?a) Modemb) Telephone linec) Printerd) Internet Service … Read more

 Solution Of Saturday Mock test 

                                             1. 2. CLS INPUT s$ s$ = s$ + ” “ t$ = “” x$ = “” FOR i = 1 TO LEN(s$)        c$ = MID$(s$, i, 1)        IF c$ <> ” ” THEN                  t$ = t$ + c$                  x$ = c$ + x$        ELSE                  IF t$ = … Read more

Assignment Of Output Finding

output finding

1)Find the output: CLS X = 5 I = 1 WHILE I <= 10           IF I MOD 3 = 0 THEN                     Y = X ^ 2 * I           ELSE                     Z = X MOD 3 * 2           END IF           I = I + 1 WEND PRINT Y PRINT Z END 2)Convert the following code into a … Read more