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
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
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
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
Question paper: Topic 2: Flowchart: Topic 3: Output: Flowchart: Download pdf file
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 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
In this article I will discuss with you the essential html tags and its features. Learn it carefully and you have to practice it. In the final term question paper there are several questions on HTML. First of all you have to know about tags. Tags in html start with <>(angle brackets) and close with … Read more
1. How do we insert a new worksheet in Excel 2016? A. Right-click on a sheet tab and choose the” Insert” option. B.Go to “Home” tab then click the” Insert sheet” C. press the button “Ctrl+N” D.Both A and B are correct. 2. What is the shortcut key for copying cells in Excel 2016? A.CTRL+X … Read more