Questions Uploads

SSL connection,

Explain why an active attacker can break an SSL connection, but not an IPsec connection? 

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

world of cybersecurity

Recall all the different topics you have learned over the past eight weeks and reflect on the ever-changing world of cybersecurity. Predict two trends that will impact the future of cybersecurity. In your main post, describe the reason for each of your predictions and explain the reasons you feel each trend is likely to occur. You may also want to include whether your prediction will impact businesses and government, individuals (users), or both. 

this is just a discussion post so doesn’t need to be long but needs to be detailed.

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

program

A program may execute the same computations repeatedly.

The program below repeatedly asks the user to enter an annual salary, stopping when the user enters 0 or less. For each annual salary, the program determines the tax rate and computes the tax to pay.

  1. Run the program below with annual salaries of 40000, 90000, and then 0.
  2. Modify the program to use a while loop inside the given while loop. The new inner loop should repeatedly ask the user to enter a salary deduction, stopping when the user enters a 0 or less. The deductions are summed and then subtracted from the annual income, giving an adjusted gross income. The tax rate is then calculated from the adjusted gross income.
  3. Run the program with the following input: 40000, 7000, 2000, 0, and 0. Note that the 7000 and 2000 are deductions

import java.util.Scanner;

public class IncomeTax {

  public static void main (String [] args) {

     Scanner scnr = new Scanner(System.in);

     final String SALARY_PROMPT = “nEnter annual salary (0 to exit): “;

     int   annualSalary   = 0;

     int   deduction      = 0;

     int   totalDeductions = 0;

     double taxRate        = 0.0;

     int   taxToPay       = 0;

     System.out.println(SALARY_PROMPT);

     annualSalary = scnr.nextInt();

     while (annualSalary > 0) {

        // FIXME: Add a while loop to gather deductions. Use the variables

        // deduction and totalDeduction for deduction handling.

        // End the inner while loop when a deduction <= 0 is entered.

        // Determine the tax rate from the annual salary

        if (annualSalary <= 20000) {

           taxRate = 0.10;       // 0.10 is 10% written as a decimal

        }

        else if (annualSalary <= 50000) {

           taxRate = 0.20;

        }

        else if (annualSalary <= 100000) {

           taxRate = 0.30;

        }

        else {

           taxRate = 0.40;

        }

        taxToPay = (int)(annualSalary * taxRate);  // Truncate tax to an integer amount

        System.out.println(“Annual salary: ” + annualSalary);

        System.out.println(“Tax rate: ” + taxRate);

        System.out.println(“Tax to pay: ” + taxToPay);

        // Get the next annual salary

        System.out.println(SALARY_PROMPT);

        annualSalary = scnr.nextInt();

     }

     return;

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

System.out.println

Today I am working on Basic while loop for my App Development (Java) class, with user input and I have no idea who to write the code string they need

Here is the code

import java.util.Scanner;

public class NonNegativeLooper {

  public static void main (String [] args) {

   Scanner scnr = new Scanner(System.in);

   int userNum = 0;

   while (/* Your solution goes here */) { // here is where my code goes

     System.out.println(“Body”);

     userNum = scnr.nextInt();

   }

   System.out.println(“Done.”);

   return;

  }

}

please help

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"