Kerala Plus Two 2025 Computer Science (SY-630) Model Question Paper with solutions PDFs are now available for download. The Kerala Plus Two Physics Model Examination 2025 was conducted by the Directorate of Higher Secondary Education (DHSE), Kerala, to help students prepare for the final board exams. The paper is designed as per the latest syllabus and exam pattern prescribed for the academic year 2025–26.

Kerala Plus Two 2025 Computer Science (SY-630) Model Question Paper with solutions

Kerala Plus Two 2025 Computer Science (SY-630) Model Question Paper download iconDownload Check Solutions
Kerala Plus Two 2025 Computer Science (SY-630) Model Question Paper with solutions


Question 1:

Inserting a new element into a Stack data structure is called _______ operation.

Correct Answer:
View Solution




Step 1: Understanding Stack Operations.

In the context of stack data structures, a stack is a collection that follows the Last In, First Out (LIFO) principle. This means the last element inserted into the stack will be the first one to be removed. A stack supports two primary operations: Push and Pop.


Step 2: The Push Operation.

The operation of inserting a new element into the stack is known as the Push operation. When you push an element onto the stack, it is placed at the top of the stack, which is where it will remain until it is removed by the pop operation. This operation involves two main steps:
1. The element is added to the stack.
2. The top pointer of the stack is updated to reflect the new element's position.


Step 3: Example.

For example, if the stack is initially empty and the elements \{1, 2, 3\ are pushed onto the stack in that order, the stack will look like this: \[ Stack: [3, 2, 1] \]
After pushing the element 4, the stack will look like: \[ Stack: [4, 3, 2, 1] \]
The element 4 is now at the top of the stack.


Step 4: Conclusion.

Thus, the operation of inserting a new element into a stack is called the Push operation. It is fundamental in stack-based operations, especially in algorithms like Depth First Search (DFS).



Final Answer:
The operation is called the Push operation. Quick Tip: In stack operations, "Push" refers to adding an element, while "Pop" refers to removing an element. These operations are used to manage data in a LIFO order.


Question 2:

Name the tag which has the attribute ‘Noresize’.

Correct Answer:
View Solution




Step 1: Understanding the
\end{verbatim

In this example, the text area will not be resizable by the user, and the user will be able to input up to 50 characters in each row and 4 rows of text.


Step 4: Conclusion.

Thus, the tag that uses the \texttt{noresize attribute is the \texttt{