Posts

Sequential Programs

  Sequential Programs 1.       WAP to display sum of two integer numbers. x = 2 y = 3 result = x+ y print("The sum is:",result)   Output: The sum is: 5   WAP to display sum of two integer numbers given by the user. 1.1 x = int(input("Enter the first number:")) y = int(input("Enter the second number:")) result = x+ y print("The sum is:",result) Output: Enter the first number:2 Enter the second number:3 The sum is: 5  1.2 x = int(input("Enter the first number:")) y = int(input("Enter the second number:")) result = x+ y print(f"The sum of {x} and {y} is: {result}")   Output: Enter the first number:2 Enter the second number:3 The sum of 2 and 3 is: 5 1.3   x = float(input("Enter first number:")) y = float(input("Enter second number: ")) sum = x + y print("The sum of {0} and {1} is {2}".format(x, y, sum))   Output: Enter ...

Computer

Grid for SEE class 10 Computer Science  Chapter Very Short Questions( (1 marks each) Short Questions( (2 marks each) Long Questions(4 marks each) Total Computer Fundamentals 6X1=6 (2 QnA, 2TT, 2FF) 5X2=10 (5 QnA) 1X4=4 (Number System) 20 Marks DBMS 2X1=2 (2 QnA) 4X2=8 (4 QnA) - 10 Marks QBASIC 1X1=1 (1 QnA) 3X2=6 (Output, Debug, QnA) 2X4=8 (Sub, Function, File Handling) 15 Marks C- programming 1X1=1 (1 QnA) - 1X4=4   5 Marks Total 10 questions 12 questions 4 questions 50 marks