Gujarat Board conducted the Class 12 Computer Studies Board Exam 2026 on March 14, 2026. Class 12 Computer Studies Question Paper with Solution PDF is available here for download.

The Gujarat Board Class 12 Computer Studies paper covered key topics from programming concepts, database management, web technologies, and computer applications. Students should focus on understanding programming logic, practicing database queries, and learning basic web development concepts.

Gujarat Board Class 12 2026 Computer Studies Question Paper with Solution PDF

Gujarat Board Class 12 Computer Studies Question Paper 2026 Download PDF Check Solution
Gujarat Board Class 12 2026 Computer Studies Question Paper with Solution PDF

Question 1:

Which of the following attribute of form is used to specify where to send the form data when the form is submitted?

  • (A) method
  • (B) action
  • (C) submit
  • (D) input
Correct Answer: (B) action
View Solution

Step 1: Understand form attributes in HTML.


HTML forms use different attributes to control how form data is processed and submitted. These attributes define how and where the form information is sent after the user submits it.


Step 2: Explain the action attribute.


The \texttt{action attribute specifies the destination URL where the form data will be sent after submission.

Example:

\[ \texttt{} \]

In this example, the form data will be sent to the file \texttt{submit.php for processing.


Step 3: Analyze the other options.


method: This attribute specifies how the data will be sent (GET or POST), but not where it will be sent.


submit: This is not a form attribute; it is related to the submit button.


input: This is a form element used to accept user input, not an attribute of the form tag.


Step 4: Conclusion.


Therefore the attribute used to specify the destination where form data is sent is the \texttt{action attribute.
Quick Tip: Remember: \texttt{action} defines where the form data goes, while \texttt{method} defines how the data is sent (GET or POST).


Question 2:

Which of the following method sends the data as a block through the HTTP transaction?

  • (A) GET
  • (B) SET
  • (C) PUT
  • (D) POST
Correct Answer: (D) POST
View Solution

Step 1: Understand HTTP request methods.


When data is sent from a client (browser) to a server through a web form, HTTP request methods are used.
The most commonly used methods are GET and POST.


Step 2: Explain the GET method.


The GET method sends data through the URL as query parameters.
This means the data becomes visible in the address bar of the browser.
Because of this limitation, GET is not suitable for sending large or sensitive data.


Step 3: Explain the POST method.


The POST method sends data inside the body of the HTTP request instead of the URL.
In this case, the data is transmitted as a block during the HTTP transaction.
This method is preferred when sending large amounts of data or sensitive information.


Step 4: Conclusion.


Since the question asks which method sends data as a block through the HTTP transaction, the correct answer is the POST method.
Quick Tip: Use GET when retrieving small amounts of data and POST when sending larger or sensitive data through forms.


Question 3:

Which of the following element allows multi-line text input in HTML?

  • (A) Textarea
  • (B) Input
  • (C) Select and Option
  • (D) Form
Correct Answer: (A) Textarea
View Solution

Step 1: Understand HTML input elements.


HTML provides different elements to collect user input in web forms.
Each element serves a specific purpose depending on the type of input required.


Step 2: Explain the textarea element.


The \texttt{} \]

This element creates a multi-line text input area on a web page.


Step 3: Analyze other options.


Input: The \texttt{ element generally accepts single-line input.


Select and Option: These elements are used to create dropdown lists.


Form: The \texttt{ element acts as a container for form elements but does not accept text input itself.


Step 4: Conclusion.


Therefore the HTML element that allows multi-line text input is the \texttt{textarea element.
Quick Tip: Use the \texttt{

Class 12 Computer Master Strategy | GSEB Board Exam 2026