Answer:
Zero day
Explanation:
Zero day attack is the term used to describe the threat of an unknown security vulnerability in a computer software or application for which either the patch has not been released or the application developers were unaware of or did not have sufficient time to address.
Since the vulnerability is not known in advance, the exploits often occur without the knowledge of the users. A zero day flaw is considered as an important component when designing an application to be efficient and secure.
Answer:
JPanel PayrollPanel=new JPanel();
JButton saveButton=new JButton("Save");
A full code snippet and screen shot is provided in the explanation section
Explanation:
import java.awt.*;
import javax.swing.*;
public class TestClass {
TestClass() {
JFrame f= new JFrame("Payroll Panel");
JPanel payrollPanel=new JPanel();
payrollPanel.setBounds(10,20,200,200);
payrollPanel.setBackground(Color.gray);
JButton saveButton=new JButton("Save");
saveButton.setBounds(50,100,80,30);
saveButton.setBackground(Color.yellow);
payrollPanel.add(saveButton);
f.add(payrollPanel);
f.setSize(400,400);
f.setLayout(null);
f.setVisible(true);
}
public static void main(String args[]) {
new TestClass();
}
}
Answer:
that is about you you put what are the good and the bads of nechnoilogy