0% found this document useful (0 votes)
10 views4 pages

10th Computer Science Guess Paper 2025

The document is a guess paper for 10th Computer Science for the year 2026, containing important short and long questions from various chapters. It covers topics such as data types, operators, control statements, arrays, and functions in C programming. The questions are designed to help students prepare for their exams by focusing on key concepts and common programming errors.

Uploaded by

sirbabarali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views4 pages

10th Computer Science Guess Paper 2025

The document is a guess paper for 10th Computer Science for the year 2026, containing important short and long questions from various chapters. It covers topics such as data types, operators, control statements, arrays, and functions in C programming. The questions are designed to help students prepare for their exams by focusing on key concepts and common programming errors.

Uploaded by

sirbabarali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

KNOWLEDGE ZONE ACADEMY

Nisar colony street #15 Faisalabad


Cell# 03006605394
10th Computer Science Guess Paper 2026

Most Important Short Questions (Chapter # 1)


3 Define a variable.
4 Define character constant.
5 What is meant by data type?
6 Why do we need a programming environment?
7 Write down any four keywords.
9 Why do we use comments in programming?
10 Define escape sequence.
11 Define char data type.
12 What is difference between Char and Int?
13 Write down the rules for naming variables.
14 Write any two Reserve Words in C-Language.
15 What are header files?
16 What is meant by IDE?
17 What is variable declaration?
18 Define getch() function.
19 Define text editor.
20 Define Header Section.
21 What is the use of compiler?
22 What is meant by body of main() function?
23 What is meant by variable initialization?
25 How a header file is included in a program?
26 Define key words.
27 Define integer.
28 What is the difference between variables and constants?
29 How can we declare an array of type int?
30 Differentiate between Variable and Constant.
Most Important Short Questions (Chapter # 2)
2 Which operators are used for arithmetic operation?
4 What is meant by operator precedence?
6 Write truth table for OR operator.
8 Define binary operator.
9 What is the difference between == operator and = operator?
10 Define arithmetic operators.
11 Trace the error of the following code:
printf (I live in Lahore)
13 Identify errors in the following code: Print (Pakistan');
14 What is the difference between unary operator and binary operator?
15 What will be the output of the following code:
int a = 7 b = 10 int a=3^ * 5 / (2 - 3) + 7% * 2 ; printf("%d", a);
16 Solve the given Expression: 7+3^ * (12 + 4)
17 Find the result of the following expression: 3 - 3 + 9% 2/(3-2)
18 Write down the output of the following code:
int a=3^ * 5 / (2 + 3) + 7% * 2 printf("%d", a);
19 Differentiate between unary operator and binary operator.
20 Trace the error of the following statement:
#include Stdio.h
21 Why we use Assignment operator in C-Language?
22 What is format specifier?
23 What is NOT Operator? Draw its Truth Table.
24 Why logical operators are used in C-language?
25 Draw a Truth Table of AND Operator.
26 What is the purpose of a modulus operator? Give an example.
29 Describe the reason behind compiler error in a C-language program.
32 Write the output of given code: print f("Hello\n World");
33 What is syntax error?
34 What is the use of format specifier in C-Language?
37 What is the purpose of escape sequence?
38 What is the purpose of "\n"?
39 Can a program with syntax errors be compiled?
40 Write the output of following code: printf("1\n 2 \n 3");
41 Define a binary operator with an example.
42 Write names of operators used in C-language.
43 Identify errors in the following code:
if (a < b & & bc); Suma+b+c; else multiply=a*b*c;
44 Define short circuiting.
45 Solve the following expression: 25%34*4
46 Solve the given Expression: 4+7*(10-5)
Most Important Short Questions (Chapter # 3)
1 Write syntax of if-else statement.
2 Why do we need conditional statements?
18 Define syntax.
19 Identify errors in the following code: int m = 40; if (m > 33); printf("PASS");
20 Write two types of control statement.
21 What is the use of nested selection structure?
22 What is nested selection structure?
23 Write down the structure of "if else" statement.
24 Define control statement.
25 Draw flow chart for if-else statement.
26 Write down the structure of if-Statement in a C-program.
27 Is it necessary to have else with an if statement? If yes, explain why.
28 Write two types of control statements.
29 What are selection statements?
30 What is conditional logic?
31 What is nested if statement?
32 Draw a flow chart of if statement in C-language.
33 Define Switch case Structure.
34 Why do we use conditional statements?
35 Define Conditional logic.
36 Why do we need selection statements?
37 What is a condition?
38 Identify errors in the following code:
if (age > 60);
printf("Senior Citizen");
39 Name different control statements used in C-Language.
40 How statements are executed in sequential control?
41 Identify errors in the following code.
42 Define compound statement.
Most Important Short Questions (Chapter # 4)
1 Trace an error of the following code:
Void main()
{
int array[5 }
2 What will be the output of the following?
3 Indicate errors in following code:
int max(int a; int b) { }
if (a > b); return a; return b;
4 How is an array element accessed?
5 What is meant by array declaration?
7 What is meant by loop structure?
8 What is the output of the following code?
9 int aa(int x) { int p = x / 10; for (int i = 0; i < 3; i++) return p; }
10 What is the output of the following code? int main() { printf("Pakistan\n"); printf("We
get %d", aa(20)); }
11 Define data structure.
12 Is loop a data structure? Explain.
15 Write down the name of parts of the for loop syntax.
16 Declare an array of type float that can store 5 values.
17 Define nested loop.
18 What is meant by loop structure?
19 What is meant by syntax?
20 What is meant by array initialization?
21 Write down the names of types of loops.
22 Write syntax to declare any array.
24 How does one declare an array in C-language?
28 Write the advantage of initializing an array at the time of declaration.
29 What is a counter variable?
30 Declare an array of float type to store 10 students' marks.
31 Write down the steps of a for loop.
32 What is meant by an array index?
33 What is a common mistake in a compound statement?
34 Define Index.
35 What is meant by array size?
36 How is an array declared in C language?
37 Declare an array that can store any 10 values.
38 Define Loop.
39 Write down the general syntax of array initialization.
40 Write the flowchart of FOR loop.
41 Define an array.
[Link] Most Important Short Questions (Chapter # 5)

2 Define Arguments.
4 Write down a function signature if a function takes an integer as input and returns its square.
5 Define printf() function.
6 Can a function have multiple return statements?
7 Write the names of two functions for input in C language.
8 What is meant by function signature?
10 What is meant by calling a function?
11 What is the data type of parameters?
12 What is meant by a problem-solving approach?
13 Describe the advantages of using functions.
14 Why do we call a function?
15 What is meant by arguments in a function?
21 How many values can a function return
26 What is meant by function arguments?
27 Write the general structure of a function signature.
29 What is meant by the reusability of a function?
30 What is a user-defined function?
31 How does a function improve the readability of a program?
32 Write name of types of functions.
34 What are built in functions?
Most Important Long Questions (Chapter # 1)
1 What is meant by data types of variables? Describe different data types of variables.
2 Explain the data type in C language.
3 Why do we use comments in programming? Also, define its types.
4 What is an escape character? Describe an escape sequence used for a new line with an example.
5 What are constants? Describe types of constants.
6 What is an Integrated Development Environment (IDE)? Write the IDEs for C language.
7 What do you know about variable initialization? Also, explain comments.
8 Explain int and float data types in C language.
9 What is meant by comments in a C program? Describe the purposes and types of comments.

Most Important Long Questions (Chapter # 2)


1 What is an operator? Explain the Unary and Binary operator with an example.
2 What are logical operators? Discuss types of logical operators.
3 What are logical operators? Explain their types.
4 What is meant by variable data types? Explain three data types of C language.
5 Define operator. Explain different types of logical operators.
6 What are operators? Explain assignment operators and arithmetic operators.
7 What is the difference between <, >, =, == operators?
8 Describe Arithmetic operators and Relational operators.
9 Write a program that displays the values from 10 to 1 on the computer screen.
10 Define operator. Explain different types of relational operators.
Most Important long Questions unit #4
Programs
Write a program that five times displays the numbers from 1 to 10.
Write a program that displays the prime numbers ranging from 2 to 100.
Write a program in C language that print even number from 2 to 20 using FOR loop.
Write a program Using FOR loop to print word ‘’ PUNJAN ‘’ 10 TIMES.
Write a program using for loop to print odd numbers from 1 to 19.
Write a program in C language to print HELLO WORD 10 TIMES using For loop.
Write a program in c language that display the table of a number input by user.

You might also like