wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

CFC IT Challenge

Total questions: 19

Worksheet time: 47mins

Name
Class
Date
1.

Which of the following is true about the responsibilities of a person who works in the Information Stewardship section ?

a)

The person must save documents and other materials containing NPI even when they are no longer necessary to have backup data for the authorized parties

b)

The person must return documents and other materials containing NPI to authorized parties

c)

The person must notify the owner one day after, if that person has suspected or is aware of a breach, alteration, destruction, loss or any other unauthorized use of NPI.

d)

The person should not protect documents and other materials containing NPI while they are in his/her care

2.

Encrypt the following plaintext using Playfair cipher. The keyword is given below:

Plaintext: I love computer forensics club

Keyword: wednesday

(a)  

3.

Encrypt the following plaintext using Playfair cipher. The keyword is given below:

Plaintext: Transforming and Enriching

Keyword: gravity

(a)  

4.

How many steps required in preserving digital evidence ?

a)

6

b)

8

c)

11

d)

14

5.

Which of the following wireless technology is used for exchanging data between a variety of fixed and mobile devices over a very short diameter ?

a)

Mobile technology

b)

Bluetooth technology

c)

Ad hoc computing

d)

None of the above

6.

In frequency modulation, the amplitude of the modulated carrier signal is ______and its frequency is ______ by the modulating message signal

a)

constant, constant

b)

varied, constant

c)

constant, varied

d)

varied, varied

7.

What are the different types of pop up box available in javascript ?

a)

Alert

b)

Confirm

c)

Dialog

d)

Prompt

8.

Which file controls how our frames will appear ?

a)

Master Document

b)

Frameset

c)

Template

d)

Timeline

9.

Which one is Subclass ?

a)

H

b)

z

c)

ZA

d)

B

10.

Which of the following statements is FALSE ?

a)

Unix supports multiple users

b)

Linux is an open source operating system and the source code is shared

c)

Shell takes care of inter process communication

d)

Shell provides the feature of I/O Redirection

11.

Which of the following shows the forensic readiness ?

a)

How prepared a digital forensic investigator is to present their evidence in a court of law

b)

How easy it is for the digital forensic investigator to find evidence which proves that someone is guilty

c)

A machine which has been imaged for the forensic purposes

d)

How prepared an organization is to respond to an incident

12.

What command allows you to look up information on a particular command ?

a)

kb

b)

cve

c)

man

d)

help

13.

What directory contains the system configuration files ?

a)

/boot

b)

/var

c)

/lib

d)

/etc

14.

Single inheritance, Multiple inheritance, and Aggregation comes under_____.

a)

Modularity

b)

Typing

c)

Hierarchy

d)

None of the mention

15.

_______ diagrams are used to illustrate data structures, and the status snapshots instances of the things found in the class diagrams.

a)

Use case

b)

Object

c)

Collaboration

d)

Sequence

16.

What tool below was written for ms-dos and was commonly used for manual digital investigations ?

a)

SMART

b)

Norton DiskEdit

c)

ByteBack

d)

DataLifter

17.

All forensics acquisition tools have a method for verification of the data-copying process that compares the original drive with the image

a)

TRUE

b)

FALSE

18.

Which one of the following acts states that individuals have a right to respect for the privacy of their emails ?

a)

Copyright, Designs and Patents Act

b)

Criminal Justice and Police Act

c)

Humans Right Act

d)

Computer Misuse Act

19.

Converting Fahrenheit into Celsius. Find Error in this code and choose the correct answer (java)


Fahrenheit =98.6;

Celsius;


//Calculation


Celsius = fahrenheit - 33*7/9


//Output


System.out.println(“converted celsius value is “ + “ “ + Fahrenheit);

a)

double Fahrenheit =98.6;

double Celcius;

//Calculation


Celsius = fahrenheit - 32*5/9


//Output


System.out.println(“converted celsius value is “ + “ “ + Celcius);

b)

int Fahrenheit =98.6;

Int Celcius;

//Calculation


Int Celsius = fahrenheit - 33*7/9


//Output


System.out.println(“converted celsius value is “ + “ “ + celc);