Mark

Mark

ITN 206 – Mod 1,2

1.Which statement is NOT true regarding a critical asset in the enterprise environment?A) It can be easily replaced 2.Which state legislation requires companies to report security breaches within 48 hours?A) Database Security Breach Notification Act 3.When evaluating risk response techniques,…

Networking chapter 4 quiz

1. 100 means 100 Mbps. The Base means baseband, which refers to baseband technology—a signaling method for communication on the network. A. What does the Base mean in 100BaseTX? 2. A MAC, or hardware, address is a 48-bit (6-byte) address…

Network Vulnerabilities Part 1

1.What can be deployed to intercept and log network traffic passing through the network?A) protocol analyzers 2.What attack involves impersonating another device?A) Spoofing 3.Packet sniffing can be helpful in detecting rogues.A) True 4.Which of the following is NOT a means…

Networking Quiz

1. How is the decimal value 10 represented in binary? A. 1010 2. How many bits is a MAC address? A. A MAC, or hardware, address is a 48‐bit (6‐byte) address written in hexadecimal format 3. How many devices in…

Computer Network 04 quiz

1. How is the decimal number 10 represented in hexadecimal? A. A 2. How is the decimal value 10 represented in binary? A. 1010 3. How many bits are present in a MAC address? A. 48 4. How many devices…

INF503 WEEK 5 LAB’S

LAB 1 1) 2) 3) 4) 5) 6)  LAB-2 1)  2)  3) 4) 5) LAB-3 1)CREATE INDEX upper_ix ON EMPLOYEE_REC (UPPER(Lname)); 2)SELECT Fname, LnameFROM EMPLOYEE_RECWHERE UPPER(Lname)= “SMITH”; Other Links: Statistics Quiz Networking Quiz See other websites for quiz: Check on…

INF503 Week-6 LABS

LAB-1 1. 2SELECT COUNT(DISTINCT Dnumber)FROM EMPLOYEE_REC E, EMPLOYEE_DEPARTMENT DWHERE D.Dnumber = E.Dno and E.Salary > 40000; 3SELECT COUNT(*)FROM EMPLOYEE_RECWHERE EMPLOYEE_REC.Dno NOT IN (SELECT EMPLOYEE_DEPARTMENT.DnumberFROM EMPLOYEE_DEPARTMENTWHERE Zipcode =30332); 4SELECT City FROM EMP_CUSTOMERSINTERSECTSELECT City FROM EMP_SUPPLIERSORDER BY City; LAB-2 1 2 LAB-3…

LESSON 7 AND 8 LABS

Lesson – 7 Labs 1. interface Shape{     public void draw(); } class Circle implements Shape{     public void draw(){         System.out.println(“Drawing a circle”);     } } class Square implements Shape{     public void draw(){         System.out.println(“Drawing a square”);     } } public class Demo{     public static…

IS5103 WEEK 4 QUIZ

1. What is the result of the following code? 1. interface Climb { 2. boolean isTooHigh(int height, int limit); 3. } 4. 5. public class Climber { 6. public static void main(String[] args) { 7. check((h, m) -> h.append(m).isEmpty(), 5); 8. } 9. private static void check(Climb climb, int…