Ms B & our class
dangerous programs and websites
Computer Science Basics
Cyber Security
common errors
100

What animal escaped that belonged to her neighbor and the cops were called for? 

Cow (actually MANY cows)

100

This type of virus is named after the historical fake horse used by the Greeks to enter Troy. 

trojan


100

This base uses 1’s and 0’s.


What is Binary?

100

the fraudulent practice of sending emails or other messages purporting to be from reputable companies in order to induce individuals to reveal personal information, such as passwords and credit card numbers. 

Phishing

100

What causes the NullPointerException error?

  1. Missing a semicolon

  2. Going out of bounds in a array

  3. Trying to process an empty String[] 

  4. Dividing by 0


3 - trying to process an empty String[]

200

What high school did Ms.B’s father go to? 

Edgewood 

200

Red Star OS is a publicly downloadable operating system created by this modern day dictatorship in Asia. 

North Korea


200

This search method starts by looking in the middle of the list.


What is Binary Search?


200

What does PIN stand for 

Personal Identification Number


200

Q: How do you fix this error?

Public class mystery{

    public static void main(String[ ] args){

        int x = 13;

        int y = 0;

        System.out.println(x / y);

    }

]

Exception in thread “main” java.lang.ArtithmeticException/


change the value of y to not be 0


300

What concert did Ms.B take her Daughter to? 

Harry Styles 

300

Before 2006, misspelling “google” as this form of headwear in the url would lead you to a website that installed dangerous malware on your computer.


goggle

300

This tells a computer what to do


What is Program/Software?

300

software that is specifically designed to disrupt, damage, or gain unauthorized access to a computer system. 

Malware


300

What caused this error?

Public class mystery{

    Public static void main(String[ ] args){

        int arr[ ] = new int[20];

        arr[21] = 2;

    }

}

Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException


arr[21] is out of the bounds of the array

400

Which actor from the movie War Games was the voice of Simba in the 1991 Lion King? 

Matthew Broderick

400

This program is the most dangerous computer virus in history by monetary damage, causing over $38 billion dollars in damages in 2004. 

mydoom

400

This method allows you to get something


What is an accessor method?


400

Encrypting data using two keys when one is public and one is private 

Public key encryption


400

Q: What is causing a Syntax error?

class myserty{

    public static void main(String args[])

    {

        int var1 = 15;  int var2 = 5;  int var3 = 2;

        String s1 = “The person who wrote this question is amazing”;

        int ans1 = var1 / var2;

        int ans2 = var1 / var3;

       System.out.println(var1 + var2 + var3 +” is equal to: “ + ans1)

 

          }

}


no semicolon at the end of the println statement

500

What was the name of the speaker that came from Epic?

Mike Epley

500

This harmful program pretended to be a virtual assistant in the form of a talking purple gorilla in the corner of your screen, giving you advice about random topics to hide its true harmful nature.

bonzi buddy

500

01001000 01100101 01101100 01101100 01101111 is what as a word


    A: What is Hello is Binary?

500

A system where there is more than one security measure in place to gain access to something

Multi Factor Authentication

500

This code should compile but is not. What is the error?

class mystery{

    public static void main(String args[])

    {

         System.out.println("Multiplication Table of 7");

        int a = 7; int ans = 0;

        int i;

        for (i = 1, i <= 10; i++) {

            ans = a * i;

            System.out.println(ans + "\n");

        }

    }

}

comma instead of semicolon in for loop