Answer:
Option (B) i.e., Certificate authority is the correct option to the following question.
Explanation:
The following option is correct because it an organization or company who validating the identification of that object that exists and it also verifies the information of the third party.
Option A is incorrect because it is the tool or software that protects the system from the outsiders or the malware.
Option b is incorrect because Online certificate is issued for any software or application or the certification in the field of study.
Answer:
function myFunction() {
myNumber = Math.floor(Math.random() * 100) + 1 ;
var values = ["Number is even", "Number is odd"] ;
var stringNum = " ";
if (myNumber % 2 === 0){
stringNum += values[0];
} else {
stringNum += values[1];
document.getElementById("demo").innerHTML = stringNum;
}
Explanation:
The javascript source code is used by the browser to make the web application interactive, making a clickable event for the button to generate an H1 header for the web page.
The myFunction is assigned to an onclick event of a html button tag to display if a random number between 1 and 100 is even or odd.
Answer:
D. It makes it less likely that an error will be introduced into the code.
Explanation:
Answer:
constant or constant expression
register name
variable name (memory)
Explanation:
Literally, operand means data which an operation can be performed on. The operation could be an arithmetic or logical operation.
From the list of options, several operations can be performed on:
- constants e.g.

- registers and
- variables e.g. (a + b)
<em>However, no operation can be performed on keywords and/or reserved words.</em>