0% found this document useful (0 votes)
27 views

12th computer repeated questions

The document lists important questions for the Public Exam in 2025, categorized by the frequency of repetition for two, three, and five mark questions. It includes topics such as subroutines, algorithms, normalization, and various programming concepts in Python and SQL. Additionally, it provides references for further study and additional questions available on a specified website.

Uploaded by

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

12th computer repeated questions

The document lists important questions for the Public Exam in 2025, categorized by the frequency of repetition for two, three, and five mark questions. It includes topics such as subroutines, algorithms, normalization, and various programming concepts in Python and SQL. Additionally, it provides references for further study and additional questions available on a specified website.

Uploaded by

jebaroshan552
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Public Exam Important Questions 2025

MOST REPEATED TWO MARKS


Smart Learn Tuition
1. What is a subroutine? (6 times)
2. What is an algorithm? (5 times)
3. What is normalization? (5 times)
4. What is an abstract data type? (5 times)

REFER CH NUMBER FROM WEBSITE : WWW.PADIDAA.COM


5. What is a literal? Explain the types of literals. (4 times)
6. Write short notes on Tokens. (4 times)
7. Differentiate Unique and Primary Key constraint. (4 times)
8. How will you create a constructor in Python? (4 times)
9. What is Mapping? (4 times)
10. What do you mean by Namespaces? (3 times)
11. What is Data Visualization? (3 times)
12. Write a query that selects all students whose age is less than 18 in orderwise. (3 times)
13. Differentiate interface and implementation. (3 times)
14. Which method is used to connect a database? Give an example. (3 times)
15. What is data consistency? (3 times)
16. What are the main advantages of functions? (3 times)
17. Differentiate constructors and selectors. (3 times)
18. Write the syntax of the if...else statement. (3 times)
19. Mention the two ways to read a CSV file using Python. (3 times)
20. What is slicing? (2 times)
21. What is an anonymous function? (2 times)
22. What is the use of the next() function? (2 times)
23. Differentiate compiler and interpreter. (2 times)
24. Write a note on range() in a loop. (2 times)
25. Define local scope. (2 times)
26. Write short notes on CSV files. (2 times)
27. Write SQL TCL Commands. (2 times)
28. Differentiate between del command and remove() function in List. (2 times)
29. What is the use of the cd command? Give an example. (2 times)
30. What will be the value of x in the following Python code? (2 times)
31. Explain the difference between table constraints and column constraints. (2 times)
32. List the types of visualizations in Matplotlib. (2 times)
33. Write the different types of functions. (2 times)
34. What is a CSV file? (2 times)
35. Define Global scope. (2 times)
36. Differentiate between sort method and sorted method. (2 times)
37. What is the theoretical difference between Scripting language and other programming languages? (2 times)
38. List the characteristics of an algorithm. (2 times)
39. Write the inference you get from X := (78). (2 times)
40. List out the types of Python functions. (2 times)
41. Write the syntax of creating a Tuple with n number of elements. (2 times)
42. Write a function syntax for adding elements to a list. (2 times)
43. What are the different modes that can be used to test a Python program? (2 times)
44. Explain the uses of data visualization. (2 times)

FOLLOW US ON ONLY ONE MARKS


Public Exam Important Questions 2025
ADDITIONAL TWO MARKS - NOT REPEATED
1. Differentiate Constructors and Selectors.
2. Define Pseudocode.
3. What is the purpose of a Destructor?
Smart Learn Tuition
4. Differentiate between SQL and MySQL.
5. Write the expansion of (i) SWIG (ii) MinGW.
6. Write the syntax of nested if..elif..else statement.
7. List out the set operations supported by Python along with its operators.
8. How will you delete a string in Python?
9. What is the difference between Hierarchical and Network data models?
10. What method is used in SQL to fetch all records from a table in a database?
11. What is the use of replace() in Python? Write the general format of replace().
12. Write the syntax of the "for" loop in Python.
13. List some examples of RDBMS.
14. What is the use of modules?
15. Write a short note on keywords.
16. What is the use of the 'cd' command? Give an example.
17. What is the output of the following program?
for i in range(2,10,2):
print(i, end=" ")
else:
print("\nEnd of the loop")
18. Write a Python code to get the following output.
mathematica
CopyEdit
Enter the Number 1: 34
Enter the Number 2: 56
The Sum = 90
19. Write the phases of performance evaluation of an algorithm.
20. Write the difference between table constraints and column constraints.
21. Given list1 = [10,12,14,18,20], write the Python code to insert the value 16 between 14 and 18.
22. Write the syntax of the if..else statement.
23. Write the output of the following Python code:
python
CopyEdit
i=0
if (i < 0):
i=i+1
x = True if i < 0 else False
print(x)
24. Write a program to illustrate the use of a for loop to print single-digit even numbers.
25. What is the use of the next() function?
26. What is the theoretical difference between a Scripting language and other programming languages?
27. How can you create a CSV file that contains double quotes with data?
28. What is the use of Data Visualization?
29. What is the general format of a Destructor in Python?
30. Write a program that accepts a string from the user and displays the same after removing vowels from it.

FOLLOW US ON”ONLY ONE MARKS”


YOUTUBE
Public Exam Important Questions 2025
31.What will be the output of the given Python program?

python
Smart Learn Tuition
CopyEdit
import math
x = 26.7
y = -26.7
print(math.floor(x))
print(math.floor(y))

REPEATED THREE MARK QUESTIONS

1. Repeated 6 Times
a. Differentiate Pure and Impure functions.
2. Repeated 5 Times
a. Write a note on Asymptotic Notation.
b. Differentiate ceil() and floor() functions.
3. Repeated 4 Times
a. Why is access control required?
b. List the characteristics of an algorithm.
c. Write short notes on Arithmetic operators with examples.
d. Explain Ternary operator with examples.
e. Write a Python program to display a given pattern.
4. Repeated 3 Times
a. What are the different ways to access the elements of a list? Give examples.
b. Write the syntax of a while loop.
c. Write a note on different types of DBMS users.
d. What is the difference between write mode and append mode?
e. Write a short note about sort().
f. Mention the difference between fetchone() and fetchmany().
g. Write any three uses of data visualization.
5. Repeated 2 Time
a. Explain the characteristics of an algorithm.
b. List the differences between break and continue statements.
c. Write the rules of local variables.
d. What is MinGW? What is its use?
e. Write an SQL statement using the DISTINCT keyword.
f. Write a Python program to read a CSV file with the default delimiter comma (,).
g. Differentiate concrete data type and abstract data type.
h. What is the role of DBA?
i. Using if...else...elif statement, write a suitable program to display the largest of three numbers.
j. Identify which of the following are List, Tuple, and Class?
k. Write a Python program to display a pattern (different patterns were mentioned).
l. Write any three DDL commands.
m. Explain Variable-Length Arguments in Python.
n. Explain any three string functions with examples.
o. Write a short note on DELETE, TRUNCATE, and DROP statements in SQL.

FOLLOW US ON”ONLY ONE MARKS”


YOUTUBE
Public Exam Important Questions 2025

IMPORTANT Three Marks


Smart Learn Tuition

Write a program to display: Write a program to display:

A COMPUTER
AB COMPUTE
COMPUT
ABC
COMPU
ABCD
COMP
ABCDE
COM
CO
C
Write a program to display:
Write a program to display:
*
** *****
*** ****
**** ***
***** **
*

REFER ADDITIONAL THREE MARKS FROM


WEBSITE WWW.PADIDAA.COM

FOLLOW US ON”ONLY ONE MARKS”


YOUTUBE
Public Exam Important Questions 2025

REPEATED FIVE MARKS


Smart Learn Tuition

1. What are called Parameters? Write a note on:


(i) Parameter without Type
(ii) Parameter with Type
2. How will you facilitate data abstraction? Explain with a suitable example.
3. Explain the Bubble Sort Algorithm with an example.
4. Explain the types of scopes for variables or the LEGB rule with an example.
5. Discuss in detail about Tokens in Python.
6. Explain the different types of functions in Python with an example.
7. Write a detailed note on if...elif...else statement with a suitable example.
8. Explain input() and print() functions with examples.
9. Explain the different set operations supported by Python with a suitable example.
10. What is Binary Search? Discuss with an example.
11. Explain the different types of relationship mapping.
12. Write the different types of constraints and their functions.
13. Explain the various buttons in a Matplotlib window.
14. Write the different methods to read a file in Python.
15. Write a detailed note on the for loop.
16. Explain the following built-in functions with suitable examples:
(i) id()
(ii) chr()
(iii) round()
(iv) type()
(v) pow()
17. What are the different ways to insert an element in a list? Explain with a suitable example.
18. Explain Pure and Impure functions with an example.
19. Write any five benefits of using Modular Programming.
20. Explain the scope of variables with an example.
21. Explain about string operators in Python with a suitable example.
22. Write a SQL statement to create a table for employees having any five fields and create a table constraint for
the employee table.
23. What is the output of the following Python program? (Given various Python code snippets for analysis.)
24. Explain the characteristics of an algorithm.
25. What is the purpose of range()? Explain with an example.
26. Explain the purpose of following functions?Ln16
a) plt. xlabel () b) plt.ylabel() c) plt. tittle () d) plt. legend () e) plt. show ()

REFER UNREPEATED QUESTIONS ALSO FROM THE WEBSITE WWW.PADIDAA.COM

You might also like