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

Computer Network Transmission Mode

Network

1.What is a network? What do you mean by node? What is a communication channel? Ans.? A network is a system of interconnected computers or devices that form a connection for exchanging information or actions. The computers and other devices or machines connected to a network are called nodes. The means of establishing a connection … Read more

Essential Array Manipulation Programs in C: Removing Duplicates, Rotating, and More

Atanu sir

In this lecture, I have explained more 10 programming on arrays in C programming. In your previous class, you learned about the basic features of the array with some basic programming. In this article, I am going to explain more complex array programs. 1. Program to Remove Duplicates from an Array #include <stdio.h> int main() … Read more

What Are Python Tuples? Functions, Operations, and Examples for Beginners

Atanu sir

What is a tuple? A tuple in Python is used to store heterogeneous data types and is enclosed by parenthesis (). The structure is almost similar to a list but the list is mutable, on the other hand, the tuple is immutable. Mutable  -we can change the elements in a data series. Example of modifying … Read more