Class 9 Cyber Olympiad - Sample question paper 07

Posted by Olympiad Tester on


Q) ______ is a cybercrime that takes the help of the internet according to cyber authorities and personnel in order to sell their illegal substance through encrypted e-mail and other Internet Technology.

A. Message spam

B. Drug trafficking

C. Illegal spam

D. Warefare

Answer: B. Drug trafficking

Explanation: Drug trafficking is a cybercrime that leverages the internet to sell illegal substances through encrypted e-mail and other internet technologies.

Q) When you insert a table in MS-PowerPoint 2010, Table Tools gets activated. In which of the following groups of Table Tools Layout tab, can you split the selected cells into multiple new cells in the same table?

A. Split

B. Merge

C. Cell Size

D. Arrange

Answer: B. Merge

Q) What would be the output of the given HTML code?

        
<html>
<body>
<ol>
<li> Sequence </li>
<li type = "i"> Selection </li>
<li> Decision </li>
</ol>
</body>
</html>
        
    

A. I. Sequence ii. Selection iii. Decision

B. 1. Sequence ii. Selection iii. Decision

C. 1. Sequence ii. Selection 3. Decision

D. 1. Sequence i. Selection ii. Decision

Answer: C. 1. Sequence ii. Selection 3. Decision

Q) Analyze the given HTML code:

        
<html>
<body>
<ul>
<li> Apple </li>
<li> Banana </li>
<li> Orange </li>
</ul>
</body>
</html>
        
    

What will be the output of the above HTML code?

A. 1. Apple 2. Banana 3. Orange

B. a. Apple b. Banana c. Orange

C. Apple Banana Orange

D. 1. Apple 1. Banana 1. Orange

Answer: A. 1. Apple 2. Banana 3. Orange

Q) Examine the following CSS code:

        
#content {
    font-size: 16px;
    color: #333333;
    margin: 20px;
}
        
    

What styling is applied to the element with the ID "content"?

A. Font size 16px, black text color, 20px margin

B. Font size 20px, gray text color, 16px margin

C. Font size 14px, dark gray text color, 20px margin

D. Font size 16px, dark gray text color, 20px padding

Answer: A. Font size 16px, black text color, 20px margin

Q) Consider the following JavaScript code:

        
function greet(name) {
    return "Hello, " + name + "!";
}

var message = greet("Alice");
console.log(message);
        
    

What will be logged to the console when this code is executed?

A. Hello, World!

B. Hello, Alice!

C. Hello, Bob!

D. Undefined

Answer: B. Hello, Alice!

Q) Which of the following is a messaging spam that targets users of Instant Messaging systems?

A. IMSP

B. SPOM

C. SIM

D. SPIM

Answer: D. SPIM

Explanation: SPIM refers to messaging spam that specifically targets users of Instant Messaging systems.

Q) Which of the following codes will add two numbers and display the sum in TextBox1 in Visual Basic?

A.

        
Private Sub Command1_Click()
    Dim Num1, Num2, Result As Int
    Num 1 = 5;
    Num 2 = 8;
    Result = Num1 + Num2;
    Text1.Val = Result;
End Sub
        
    

B.

        
Private Sub Command1_Click()
    Dim Num1, Num2, Result As Integer
    Num1 = 5
    Num2 = 8
    Result = Num1 + Num2
    Text1.Text = Result
End Sub
        
    

C.

        
Private Sub Command1_Click()
    Dim Num1, Num2, Result as Integer
    Result = Num1 + Num2
    Text1.Val = Result
End Sub
        
    

D.

        
Private Sub Command1_Click()
    Dim Num1, Num2, Result As Int
    Num1 = 5;
    Num2 = 8;
    Result = Num1 + Num2;
    Val (Text1.Text) = Result
End Sub
        
    

Answer: B.

Explanation: Option B contains the correct code to add two numbers (5 and 8) and display the result in TextBox1 in Visual Basic. It uses the correct syntax for assigning the result to the TextBox's Text property.

Q) Which of the following statements is incorrect about Disk Cleanup utility of Windows 7?

A. You can access Disk Cleanup utility by typing 'disk cleanup' in the search box and then pressing enter key.

B. It reduces the number of unnecessary files on your hard disk.

C. It removes temporary internet files, downloaded program files and empties the recycle bin.

D. It cannot remove system files.

Answer: D. It cannot remove system files.

Explanation: Disk Cleanup utility in Windows 7 can remove unnecessary files but cannot remove system files. It primarily targets files that are safe to delete and do not impact the system's functionality.

Q) In Windows 8.1, the camera app integrates _____ for creating panoramic view.

A. Synic

B. Photosynth

C. Mynic

D. Mokoic

Answer: B. Photosynth

Explanation: In Windows 8.1, the camera app integrates Photosynth for creating panoramic views. Photosynth is a technology for creating or viewing 3D panoramas of a location.

Q) Which of the following is the name of the Android-based smartphones by iBall launched as the safety smartphone for females in India with GPS tracking in March 2014?

A. Women safety uddaan

B. Andi Uddaan

C. Women Andi Uddaan

D. Andi Women Safety Uddaan

Answer: B. Andi Uddaan

Explanation: The correct name of the Android-based smartphones by iBall launched as safety smartphones for females in India with GPS tracking is "Andi Uddaan."

Q) A _________ is a malware program that restricts or denies you access to your computer system until you pay a sum of money.

A. Spyware

B. Ransomware

C. Restrictware

D. Moneyware

Answer: B. Ransomware

Explanation: Ransomware is a type of malware that restricts or denies access to a computer system until a sum of money is paid.

Q) _______ is a collection of wires that enables data transmission from one computer to another or between the components inside the computer. ______ connects the PC to main memory on the motherboard.

A. Bus, System Bus

B. Port, System Port

C. BIOS, System BIOS

D. Processor, System Processor

Answer: A. Bus, System Bus

Explanation: A bus is a collection of wires that enables data transmission, and the System Bus connects the PC to the main memory on the motherboard.

Q) Stop motion is an animation technique in which physically manipulated real-world objects appear to move on their own, creating the illusion of movement when the series of frames is played in a continuous sequence manner. Which of the following is NOT a type of Stop Motion animation?

A. Puppet Animation

B. CutOut Animation

C. Color Animation

D. Clay Animation

Answer: C. Color Animation

Explanation: Color Animation is not a type of Stop Motion animation; the other options are recognized techniques in stop motion.

Q) Which of the following statements best describes tweening?

A. The process of creating films by screen capturing.

B. The process of generating intermediate frames between two images to give the appearance that the first image evolves smoothly into the second image.

C. The process of removing jagged lines from images.

D. A process of compressing a video online.

Answer: B. The process of generating intermediate frames between two images to give the appearance that the first image evolves smoothly into the second image.

Explanation: Tweening involves creating intermediate frames between two images to achieve smooth transitions.

Q) _______ are still photographs in which a minor and repeated movement occurs, giving the viewer an illusion that he is watching a video.

A. Cinemagraphs

B. Occlographs

C. Pictographs

D. Pucel graph

Answer: A. Cinemagraphs

Explanation: Cinemagraphs are still photographs with minor and repeated movements, creating the illusion of watching a video.

Q) Which governing body of the internet develops and promotes internet standards, cooperating closely with the W3C and ISO/IEC standards bodies and deals in particular with standards of the internet protocol suite (TCP/IP)?

A. IETF

B. IAB

C. Internet Society

D. ICANN

Answer: A. IETF

Explanation: The Internet Engineering Task Force (IETF) develops and promotes internet standards, cooperating with other standards bodies.


← Older Post Newer Post →

POST YOUR COMMENT

    1 out of ...
    Sale

    Unavailable

    Sold Out