Skip to main content

Posts

Showing posts with the label system

Compliance and Regulations for Cybersecurity

  Compliance and Regulations for Cybersecurity Total points  4 1 . Question 1 Which of the bad guys are described as "They are "in" an organization but are human and make mistakes"? 1 / 1  point Inadvertant Actor Outsiders Employees Malicious Insiders Correct Correct, these bad guys typically inadvertently open and email, etc. 2 . Question 2 Which is NOT one of the security controls? 1 / 1  point Technical Operational Testing Physical Correct Correct, this is NOT one of the security controls. 3 . Question 3 What year did the GDPR come into effect? 1 / 1  point 2018 2017 2016 2014 Correct Correct, the GDPR came into effect in May of 2018. 4 . Question 4 Which three (3) of these obligations are part of the 5 key GDPR obligations? Check all that apply 0.5 / 1  point Consent Correct Partially correct, this is one of 3 key GDPR obligations. Rights of EU Data Subject Accountability of Compliance Correct Partially correct, this is one of 3 key GDPR obligations. Security o

EMPLOYEE MANAGEMENT SYSTEM PROJECT CODE

EMPLOYEE MANAGEMENT SYSTEM PROJECT CODE A - Below is the source code of the project. B - Create separate class files for every class. C - Copy the code of one class (ex: login.java) and paste it in Login class file, do it for every class . #stream #blog #knowledge 1 - Create your first class with name 'conn' and paste the code below in it  package Employeee; import java.sql.*; public class conn{        public Connection c;     public Statement s;     public conn(){         try{             Class.forName("com.mysql.jdbc.Driver");             c = DriverManager.getConnection("jdbc:mysql:///project3","root","");             s = c.createStatement();         }catch(Exception e) {             e.printStackTrace();         }     } }   2 - Create second class with name 'Login' and paste the code below in it package Employeee; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.sql.*; cl