🎧 New: AI-Generated Podcasts Turn your study notes into engaging audio conversations. Learn more

SSLC Supplementary Examination 2022 Results
34 Questions
0 Views

SSLC Supplementary Examination 2022 Results

Created by
@FancyBambooFlute

Podcast Beta

Play an AI-generated podcast conversation about this lesson

Questions and Answers

What was Mohit Sharma's grade in Mathematics?

C

What was Mohit Sharma's total marks in the SSLC Supplementary Examination 2022?

372

In which subject did Mohit Sharma score the highest marks?

English

What was the grade Mohit Sharma received for Social Science?

<p>B</p> Signup and view all the answers

What was the overall result for Mohit Sharma in the SSLC Supplementary Examination 2022?

<p>Pass</p> Signup and view all the answers

Who has signed the laboratory certificate for completion of the practical COMPUTER SCIENCE course?

<p>Head of the Department</p> Signup and view all the answers

What is the purpose of the laboratory certificate mentioned in the text?

<p>To certify completion of the practical COMPUTER SCIENCE experiments.</p> Signup and view all the answers

What is the full form of P.C.M.C as mentioned in the text?

<p>Physics, Chemistry, Mathematics, and Computer Science</p> Signup and view all the answers

In which college did the practical COMPUTER SCIENCE experiments take place?

<p>Morarji Desai Residential PU Science College, Dudda, Hassan</p> Signup and view all the answers

What is the year mentioned in the text for completion of the course of experiments?

<p>2018-19</p> Signup and view all the answers

Explain the concept of single level inheritance with an example.

<p>Single level inheritance allows a derived class to inherit from only one base class. For example, a class 'B' inheriting from class 'A'.</p> Signup and view all the answers

What are the data members in the derived class that contains marks of two subjects and total marks 20?

<p>The data members are marks of two subjects and total marks 20.</p> Signup and view all the answers

How can you read and display data using pointers to objects in C++?

<p>You can read and display data using pointers to objects by dynamically allocating memory for objects and accessing them using pointers.</p> Signup and view all the answers

Explain the process of pushing items into a stack in C++.

<p>Pushing items into a stack involves adding elements to the top of the stack. It follows the Last In First Out (LIFO) principle.</p> Signup and view all the answers

Describe the process of popping items from a stack in C++.

<p>Popping items from a stack involves removing elements from the top of the stack. It follows the Last In First Out (LIFO) principle.</p> Signup and view all the answers

What is the purpose of Enqueue and Dequeue operations in C++?

<p>Enqueue is used to add an element to the back of a queue, while Dequeue is used to remove an element from the front of a queue.</p> Signup and view all the answers

Write a C++ program to find the frequency presence of an element in an array.

<p>C++ program should iterate through the array and count the occurrences of the specified element.</p> Signup and view all the answers

Explain how to insert an element into an array at a given position using a C++ program.

<p>To insert an element, shift elements to the right from the insertion position, then place the new element at the specified position.</p> Signup and view all the answers

Describe the process of deleting an element from an array at a given position using a C++ program.

<p>Deleting involves shifting elements to the left starting from the deletion position and reducing the array size.</p> Signup and view all the answers

How can a C++ program sort elements of an array in ascending order using insertion sort?

<p>In insertion sort, compare each element with previous elements and place it in the correct position.</p> Signup and view all the answers

Explain the binary search method to search for a given element in an array using a C++ program.

<p>Binary search involves dividing the array in half and comparing the middle element with the target, then narrowing the search to the appropriate subarray.</p> Signup and view all the answers

How can a C++ program calculate the simple interest and display the result using a class with principal, time, and rate data members?

<p>The program should input the values for principal, time, and rate, calculate simple interest, and display the result.</p> Signup and view all the answers

List the SQL command to add records into a table for 10 students with Student ID, Student Name, and marks in 6 subjects.

<p>INSERT INTO table_name (Student ID, Student Name, subject1, subject2, subject3, subject4, subject5, subject6) VALUES (value1, value2, value3, value4, value5, value6, value7, value8, value9, value10)</p> Signup and view all the answers

What SQL command is used to display the description of fields in a table?

<p>DESC table_name</p> Signup and view all the answers

How can you calculate the TOTAL and PERC_MARKS in a table by altering it?

<p>ALTER TABLE table_name ADD TOTAL NUMBER; ALTER TABLE table_name ADD PERC_MARKS NUMBER;</p> Signup and view all the answers

In SQL, how can you determine if a student has passed or failed based on their marks?

<p>IF marks &gt; 35 THEN RESULT = 'PASS' ELSE RESULT = 'FAIL'</p> Signup and view all the answers

List the SQL command to retrieve all the contents of a table.

<p>SELECT * FROM table_name</p> Signup and view all the answers

How can you list the students who have a result of 'PASS' in SQL?

<p>SELECT * FROM table_name WHERE RESULT = 'PASS'</p> Signup and view all the answers

What actions would you take to retrieve the department names where only one employee works?

<p>SELECT department_name FROM employees GROUP BY department_name HAVING COUNT(employee_id) = 1;</p> Signup and view all the answers

How would you increase the salary of all employees in the sales department by 15%?

<p>UPDATE employees SET salary = salary * 1.15 WHERE department = 'Sales';</p> Signup and view all the answers

What SQL statement would you use to add a new column called 'BONUS_NUMBER' to the table EMPLOYEE and compute 5% of the salary to that field?

<p>ALTER TABLE employee ADD COLUMN bonus_number DECIMAL(10, 2); UPDATE employee SET bonus_number = salary * 0.05;</p> Signup and view all the answers

How would you delete all rows for employees in the Apprentice department?

<p>DELETE FROM employees WHERE department = 'Apprentice';</p> Signup and view all the answers

Write a C++ program to find the frequency of presence of an element in an array.

<p>The C++ program should include a class 'Frequency' with member functions to read data, find frequency, and display results.</p> Signup and view all the answers

Create an HTML program with a table and a form.

<p>The HTML program should include both a table and a form for user interaction.</p> Signup and view all the answers

Use Quizgecko on...
Browser
Browser