Kattis Problem: Batter Up

Problem Link https://open.kattis.com/problems/batterup Sample Solution import java.util.Scanner; class BatterUp{ public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); float sum = 0, avg=0; int[]…

Kattis Problem: Faktor

Problem Link: https://open.kattis.com/problems/faktor Sample Solution import java.util.Scanner; public class Faktor { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(), i = sc.nextInt(); int…

Types of Social Engineering

Two common categories of social engineering: Human-Based: The face-to-face interaction between the attacker and the victim achieves it. An example of such type is calling the help desk of a…