Computer Science and Engineering

Answer all questions carefully. After submission, you will see a detailed result and answer review.

Question 1
Which CSS value is used to add padding inside the content box and outside the border of an element?
Question 2
What is the result of the following code?
var num = 10;
num = "Hello";
console.log(typeof num);
                                
Question 3
Which of the following is not a relational database but an objective database?
Question 4
The ______ is the one in which the primary key of one relation is used as a normal attribute in another relation.
Question 5
When a key is pressed, which property is utilised to indicate the type of key?
Question 6
What feature of a DBMS ensures that multiple users can access and modify the database concurrently without conflicts?
Question 7
What are Midjourney, DALL-E, and Stable Diffusion, and which industries are their early adopters?
Question 8
Which HTML element is utilised for the inclusion of images?
Question 9
What is the result of the following JavaScript code?

<p id="demo"></p>
<script>
function myFunction() 
{
   var num = 3+2;
   var n = num.valueOf()
   document.getElementById("demo").innerHTML = n;
}
</script>
Question 10
Which of the following sorting algorithms is stable?