what significance do the osi, tcp/ip, and sans 20 controls play in network protection?

Answers

Answer 1

The OSI model and TCP/IP protocol provide a framework for secure data transmission in computer networks, while the SANS 20 Controls provide best practices for securing networks against various threats and vulnerabilities. Together, they establish a comprehensive security framework for protecting against cyber attacks.

Explanation:

The OSI (Open Systems Interconnection) model and TCP/IP (Transmission Control Protocol/Internet Protocol) are both widely used communication protocols in computer networks. They provide a set of rules and procedures for transmitting data between devices on a network.

In terms of network protection, the OSI model and TCP/IP protocol help to ensure that data is transmitted securely and efficiently between devices. They establish a framework for data encryption and authentication, which helps to prevent unauthorized access and data breaches.

In addition, the SANS (SysAdmin, Audit, Network, and Security) 20 Controls provide a set of best practices for securing and protecting computer networks. These controls cover a range of areas including access control, vulnerability management, and incident response.

By implementing the SANS 20 Controls alongside the OSI model and TCP/IP protocol, network administrators can establish a comprehensive security framework that helps to protect against a wide range of threats and vulnerabilities. This can include everything from malware and phishing attacks to insider threats and data breaches.

Know more about the OSI (Open Systems Interconnection) model click here:

https://brainly.com/question/11037861

#SPJ11


Related Questions

how are constants and variables different from each other

Answers

Answer:

variables are letters/shapes that are next to a number and constants are numbers without a variable

Arrange the code so that the numbers are swapped.

Arrange the code so that the numbers are swapped.

Answers

Rand.int(your_num , your_num

Hot Dog Cookout Calculator Assume hot dogs come in packages of 10, and hot dog buns come in packages of 8. Write a program that calculates the number of packages of hot dogs and the number of packages of hot dog buns needed for a cookout, with the minimum amount of leftovers. The program should ask the user for the number of people attending the cookout and the number of hot dogs each person will be given. The program should display the following details: 1. The minimum number of packages of hot dogs required 216.2. The minimum number of packages of hot dog buns required.3. The number of hot dogs that will be left over.4. The number of hot dog buns that will be left over.

Answers

Answer:

Following are the code to this question:

person= int(input("Input the value who attend the cookout: "))#defining a variable person for input value

Given_hotdog = int(input("Input the value of hotdog, that each person will take: "))#defining a variable Given_hotdog for input value

hotdogs = person* Given_hotdog #calculating the total value of hotdogs

# calculating the numbers of the package, that holds require hotdog and buns

package_hotdog=int(hotdogs/10)+1# calculating hotdog packages

bun_package=int(hotdogs/8)+1# calculating buns package

left_hotdogs= package_hotdog*10 -hotdogs# calculating left hotdogs

left_buns=bun_package*8-hotdogs# calculating left buns

print("Total Hotdogs",hotdogs)#print total hotdogs value

print("The Minimum number of packages require for hotdogs: ", package_hotdog)#print require hotdogs value

print("The Minimum number of packages require for buns: ", bun_package)#print require buns value

print("Number of left hotdogs: ", left_hotdogs)#print left hotdogs value

print("Number of left buns: ", left_buns)#print left buns value

Output:

please find the attached file.

Explanation:

In the above-given code, the "person and Given_hotdog" variable is declared, which is used to take input from the user end and in the "hotdogs" variable we calculate its total value.

In the next step, "package_hotdog and bun_package" is declared, which uses the "hotdogs" variable to calculate its value.  At the last step, the "left_hotdogs and left_buns" variable is declared, which uses the above variable for calculating the value and use the print method to print its value.
Hot Dog Cookout Calculator Assume hot dogs come in packages of 10, and hot dog buns come in packages

What are the basic functions of an operating system? List any four of them.​

Answers

Answer:

Following are some of important functions of an operating System.

Memory Management.

Processor Management.

Device Management.

File Management.

Security.

Control over system performance.

Job accounting.

Error detecting aids.

Explanation:

PLS MAKE ME AS BRAINLIST

Find a finite inseparable extension that is not a simple extension.

Answers

The field extension K = F(x), where F is a field of characteristic 2 and x satisfies the equation x^2 + x + 1 = 0, serves as an example of a finite inseparable extension that is not a simple extension.

A finite inseparable extension refers to an extension field where every element is inseparable over the base field. On the other hand, a simple extension is an extension field generated by a single element. To find a finite inseparable extension that is not a simple extension, we can consider a specific example.

Let's work with the base field F of characteristic 2 (where 2 does not have an inverse) and construct the field extension K = F(x), where x satisfies the equation x^2 + x + 1 = 0. This is a quadratic polynomial without any roots in F since the characteristic of F is 2. Therefore, K is a degree 2 extension over F.

To show that K is inseparable, we can examine the minimal polynomial of x over F, which is x^2 + x + 1. Taking the derivative of this polynomial with respect to x, we get 1. Since the derivative is non-zero, it implies that K is inseparable over F.

Now, let's demonstrate that K is not a simple extension. Suppose K is generated by a single element, say y. Then every element in K can be expressed as a polynomial in y with coefficients in F. However, we know that K contains elements such as x that are not expressible as polynomials in y. Therefore, K cannot be a simple extension.

In conclusion, the field extension K = F(x), where F is a field of characteristic 2 and x satisfies the equation x^2 + x + 1 = 0, serves as an example of a finite inseparable extension that is not a simple extension.

Learn more about field extension here

https://brainly.com/question/31228479

#SPJ11

What is humanity’s greatest invention?

Answers

Answer:

Technically the human

Explanation:

Women are a big portion of humanity and without them there wouldn't be Albert Einstein or anyone....

Cereal bananas I love bananas my fav lol

Hardware- The ______________ equipment that makes up the computer.

Answers

Answer:

It's like the stuff you can touch, the software is the stuff that runs in your computer

Explanation:

Hardware has those usb ports or whatever too (i think lol) good luck

in java, it is possible to write a method that will return: group of answer choices a whole number a monetary value a string of characters a reference to an object

Answers

Yes, in Java it is possible to write a method that can return various types of data including a group of answer choices, a whole number, a monetary value, a string of characters, and a reference to an object.

To do this, you would need to specify the return type of the method in the method signature using the appropriate data type such as int for whole numbers, double for monetary values, String for strings of characters, and the name of the object class for a reference to an object. For example, a method that returns a string of characters could be written like this:
public String get answer() {
  // code to retrieve and return a string of characters
  return "Hello World!";
}
Similarly, a method that returns a whole number could be written like this:

public int get number() {
  // code to retrieve and return a whole number
  return 42;
}
And a method that returns a reference to an object could be written like this:
public MyClass getObject() {
  // code to create and return an instance of MyClass
  return new MyClass();
}
By using the appropriate return type, you can write methods that can return a variety of different types of data in Java.

Learn more about String here:

https://brainly.com/question/14528583

#SPJ11

What is the role of MIB when implementing SNMP?

Answers

Management Information Base (MIB): It is a collection of data objects that are organized hierarchically and defined by SNMP. It is a virtual information store that allows information about networked devices to be retrieved. The information collected by SNMP is stored in the MIB.

SNMP requires the MIB to function. The data collected by SNMP is used to update the MIB, and the MIB is used to present data to the SNMP. In this way, the MIB serves as the SNMP's primary source of information.

Learn more about SNMP at:

https://brainly.com/question/32385622

#SPJ11

Question 1 To select a specific texture to use, you need to use which of the following OpenGL commands? Select one. glActiveTexture glGetTexture glEnableVertexAttribArray glVertexAttribPointer

Answers

The correct OpenGL command to select a specific texture to use is "glActiveTexture". "glActiveTexture" is an OpenGL function that activates a texture unit for subsequent texture operations.

Texture units are used to store and manipulate textures in OpenGL. By calling "glActiveTexture" with a specific texture unit as an argument, you can specify which texture unit you want to work with.

Once a texture unit is activated, you can then bind a specific texture to that unit using the "glBindTexture" command. This allows you to associate a texture object with the active texture unit.

The ability to activate different texture units and bind different textures to them is particularly useful when working with multiple textures in a single rendering pass. It allows you to apply different textures to different parts of your scene or use different textures for different rendering techniques.

In summary, to select a specific texture to use in OpenGL, you would use the "glActiveTexture" command to activate a texture unit and then use the "glBindTexture" command to bind the desired texture to that unit.

Learn more about OpenGL here:

https://brainly.com/question/30629974

#SPJ11

I need help asap
Classify the examples as per their planning phase.

I need help asap Classify the examples as per their planning phase.
I need help asap Classify the examples as per their planning phase.

Answers

Answer: the Answer is c

Explanation: the

Note that the classifications for each example according to their planning phase.

What is the explanation for the above response?

1) Wireframe - This example belongs to the early planning phase. Wireframes are skeletal outlines or blueprints that represent the basic structure and layout of a website or application. They serve as a guide for developers to create the final product.

2) Page description diagram - This example also belongs to the early planning phase. A page description diagram (PDD) is a visual representation of the content and layout of a website or application. It shows how the pages will be structured and what content will be included on each page.

3) Browsing functionality - This example belongs to the mid-phase of planning. Browsing functionality refers to the features and capabilities of a website or application that enable users to navigate and browse through content. This includes search bars, filters, sorting options, and other tools that make it easier for users to find what they are looking for.

4) Design elements - This example belongs to the late planning phase. Design elements include the visual components of a website or application, such as color schemes, typography, icons, and images. They are typically created after the wireframes and PDDs have been developed and serve to enhance the user experience and make the product visually appealing.

Learn more about planning phase. at:

https://brainly.com/question/30579252

#SPJ1

Full Question:

Although part of your question is missing, you might be referring to this full question:

Classify the examples as per their planning phase.

wireframe

page description diagram

browsing functionality

design elements

What was the contribution of John von Neuman in the development of computer?

Answers

Answer:

Explanation: As director of the Electronic Computer Project at Princeton's Institute for Advanced Study (1945-1955), he developed MANIAC (mathematical analyzer, numerical integrator, and computer), which was at the time the fastest computer he was also one of the conceptual inventors of the stored-program digital computer.

John von Neumann's significant contribution to computer development was his invention of the von Neumann architecture, enabling programmable computers.

John von Neumann, the virtuoso polymath hailing from Hungary, emerged as a brilliant luminary who graced the 20th century with his unparalleled contributions to mathematics, physics, and computer science.

Proficient in quantum mechanics, game theory, and nuclear physics, he navigated an intellectual universe as vast as the cosmos itself. Yet, it was the von Neumann architecture, the monument of his ingenuity, that etched his name indelibly in the history of computing.

Like a maestro conducting an orchestra of ideas, von Neumann orchestrated a symphony of innovation, transforming the world with his multifaceted genius and forever inspiring the pursuit of knowledge.

Learn more about John von Neuman here:

https://brainly.com/question/21842436

#SPJ7

100 points to whoever can figure out what video vanoss road in a military truck in gta5 with his friends and wildcat jumps out of it

100 points to whoever can figure out what video vanoss road in a military truck in gta5 with his friends

Answers

The first ever vedios he did

A logical function is a function that works with values that are either ____.A. right or wrongB. absolute or relativeC. positive or negativeD. true or false

Answers

The correct option is option D, which is A logical function is a function that works with values that are either True or false.

Logical functions are strategies for determining whether a situation is true or false depending on the data and arguments provided. It also aids us in calculating the findings and selecting any of the supplied data. These functions are used to calculate the outcome and assist in selecting any of the given data. The contents of the cell are examined using the relevant logical condition based on the requirement.

In spreadsheets, logical functions are used to determine whether a situation is true or false. You can then choose one of two options based on the results of that test. These choices can be used to display information, perform various calculations, or run additional tests.

Learn more about Logical functions here.

https://brainly.com/question/6878002

#SPJ4

a hyper-v has replica copy that can automatically starts up if the virtual machine is out. this is called .

Answers

The feature being described is called "Automatic VM Recovery" in Hyper-V.

Automatic VM Recovery is a feature in Hyper-V that enables a replica virtual machine to automatically start up in the event that the primary virtual machine is unavailable. This feature can help minimize downtime and reduce the need for manual intervention in the event of a failure. When enabled, the replica virtual machine is continuously monitored, and if the primary virtual machine fails or becomes unavailable, the replica virtual machine is started automatically, allowing services to continue running without interruption. This feature can be particularly useful for critical workloads and applications that require high availability and minimal downtime.

Learn more about Hyper-V here;

https://brainly.com/question/31634697

#SPJ11

Li is trying to locate a PDF file on a thumb drive with a lot of other files on it. What does Li need to look for to find the file? a web browser the file extension the file abbreviation the file derivative

Answers

Answer:

the file extension

Explanation:

Answer:

File Extension is your answer (~^-^)~

Explanation:

Why do we need software in computer?

Answers

Answer:

Software helps to manage the computer hardware and also helps to solve our problems.

Explanation:

Software helps to manage the computer hardware and also helps to solve our problems. Any computing device has two parts hardware and software. A computing device is made up of many several components of hardware (like CPU, ram, hard disk, motherboard, mouse, keyboard, etc.) together working as a single machine.

How do I connect my TV to my computer?

Answers

If an HDMI cable is attached, select it using the source button on the TV remote, or select PC if a VGA cable available. When you connect a TV to a PC, your desktop image automatically shows up on the TV.

How many parts does a computer have?

The five basic parts of every computer are a motherboard, a central processing unit, a graphics processing unit, random-access memory, and a disk drive or solid-state drive. Whether it's a high-end gaming machine or a basic desktop computer for kids, every computer contains five parts.

What is the entire form of a computer?

The Latin word "computerae," which meaning "to compute," is the origin of the English term "computer." Common Operating Machine Purposely Used for Technological and Educational Research is the full name of the computer.

To know more about computer visit:

https://brainly.com/question/29792640

#SPJ4

PLEASE HELP I WILL GIVE BRAINLIEST AND 100 POINTS IF U ANSWER COMPLETELY WITHIN 30 MIN
A classmate in your photography class missed several days of class, including the day that the instructor explained the artistic statement. Your classmate asks you to help fill them in so that they can create an artistic statement for an upcoming project. How would you explain this concept and the purpose behind it? What would you tell them to include in their statement? Explain.

Answers

The wat that you explain this concept and the purpose behind it as well as others is that

To create an artistic statement, you should start by thinking about what inspires you as an artist, and what themes or ideas you hope to address in your work. This could be anything from a particular emotion or feeling, to a social or political issue, to a specific artistic style or technique.

What is the  artistic statement?

An artistic statement is a brief description of your artistic goals, inspiration, and vision as an artist. It should outline the themes and ideas that you hope to explore through your work, and explain what you hope to achieve or communicate through your art.

In the above, Once you have a sense of your inspiration and goals, you can start to craft your artistic statement. Some things you might want to include in your statement are:

Therefore, A description of your artistic process, including the mediums and techniques you use to create your work

A discussion of the themes or ideas you hope to explore through your artA statement about your goals as an artist, including what you hope to achieve or communicate through your workA discussion of the influences that have shaped your artistic style, including other artists or movements that have inspired you

Learn more about photography from

https://brainly.com/question/13600227

#SPJ1

Answer:

I don't get the other answer :(

Explanation:

Kavin is an employed young man. He uses a laptop at hom has a dial-up Internet connection. His neighbour has a wireless high speed DSL Internet connection. Kavin uses his neighbour's wireless network while downloading big files. Is it legal? Why?

Answers

Answer:

It would be illegel because Kavin didn't ask his neighbour for the wi-fi password, so he was doing it by himself without perimisson.

Select all statements below that are TRUE for For...Next loops. A. It is used for a fixed number of iterations. B. It is used for a variable number of iterations. C. It uses an integer counter; not a loop condition. D. It uses a loop condition; not an integer counter. E. Only consider this option if you checked alternative D above: It checks the loop condition a the BEGINNING of the loop, F. Only consider this option if you checked alternative D above: It checks the loop condition a the END of the loop,

Answers

Answer:

A and C

Explanation:

The for next loop is used for a fixed number of iterations which is usually indicated in the syntax. It uses a counter that increments on each iteration. The loop terminates when the counter reaches the number of initially specified iterations. It is different from a while loop which depends on a specified condition evaluating to the Boolean 'true'.

You are working for a tech company that uses a lot of EBS volumes in their EC2 instances. An incident occurred that requires you to delete the EBS volumes and then re-create them again.
What step should you do before you delete the EBS volumes?

Answers

Before deleting the EBS volumes, it's important to back up the data to avoid data loss.

EBS volumes are a type of storage device used in Amazon Web Services (AWS) and are often used in conjunction with EC2 instances. If an incident requires the deletion of EBS volumes, it's critical to back up any data stored on those volumes before deleting them. This helps to prevent the permanent loss of important data. The backup can be done either through creating a snapshot of the volume or by copying the data to another storage location. Once the backup is complete, the EBS volumes can be safely deleted and then re-as necessary.

learn more about EBS volumes here:

https://brainly.com/question/28316069

#SPJ11

How are charts inserted into a PowerPoint slide?
O Open the chart in Excel, click it and drag it into the slide.
O Double-click the chart in Excel, and click inside the slide to paste it into the presentation.
O Use the Copy tool to copy the chart from Excel and the Paste tool to insert it into the slide.
O Take a screenshot of the chart from Excel and paste it into the slide using the Paste tool.

Answers

It’s the third one.

Write in Java. Write a method that lists all files in a directory (including its subdirectories) that are larger than a specified size.Implement GUIInput Directory and ThresholdDescend into subdirectoriesReport Files that meet criteria

Answers

Sure, here's some sample code in Java that should accomplish what you're asking for:

import java.io.File;
import java.util.ArrayList;

public class FileSearcher {
   
   public static ArrayList findLargeFiles(File dir, long threshold) {
       ArrayList matchingFiles = new ArrayList<>();
       File[] files = dir.listFiles();
       if (files != null) {
           for (File file : files) {
               if (file.isDirectory()) {
                   matchingFiles.addAll(findLargeFiles(file, threshold));
               } else if (file.length() > threshold) {
                   matchingFiles.add(file);
               }
           }
       }
       return matchingFiles;
   }
   
   public static void main(String[] args) {
       String directoryPath = GUIInput.getDirectory(); // assuming you have a method called getDirectory in a class called GUIInput
       long threshold = ThresholdDescend.getThreshold(); // assuming you have a method called getThreshold in a class called ThresholdDescend
       
       File dir = new File(directoryPath);
       ArrayList largeFiles = findLargeFiles(dir, threshold);
       for (File file : largeFiles) {
           System.out.println(file.getAbsolutePath());
       }
   }
}

This code defines a static method called findLargeFiles that takes in a directory and a size threshold as inputs and returns an ArrayList of all files within that directory (including its subdirectories) that are larger than the threshold. It uses recursion to descend into subdirectories, and checks each file's length against the threshold to see if it matches the criteria.

In the main method, the code assumes that you have methods called getDirectory and getThreshold in separate classes called GUIInput and ThresholdDescend, respectively. These methods could use some kind of GUI to prompt the user for the directory and threshold inputs. Once these inputs are obtained, the code creates a File object representing the specified directory, calls the findLargeFiles method on it, and prints out the absolute path of each matching file.

I hope this helps! Let me know if you have any questions.

To learn more about Java, click here:

https://brainly.com/question/30354647

#SPJ11

11.9 LAB: Vending machine
Given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a VendingMachine object that performs the following operations:

Purchases input number of drinks
Restocks input number of bottles
Reports inventory
The VendingMachine is found in VendingMachine.java. A VendingMachine's initial inventory is 20 drinks.

Ex: If the input is:

5 2
the output is:

Inventory: 17 bottles
_______________________________________________________________

LabProgram.java
import java.util.Scanner;

public class LabProgram {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);

/* Type your code here. */

}
}
______________________________________
VendingMachine.java

// simulates a simple vending machine with operations to purchase drinks and check inventory.
public class VendingMachine {

// number of bottle in stock
private int bottles;

// initial inventory is 20
public VendingMachine(){
bottles = 20;
}

public void purchase(int amount){
bottles = bottles - amount;
}

public int getInventory(){
return bottles;
}

public void restock(int amount){
bottles = bottles + amount;
}

public void report(){
System.out.println("Inventory: " + bottles + " bottles");
}

}

Answers

You can use the Scanner class to read the user inputs for the number of drinks and the number of bottles to restock. Then, you can create a VendingMachine object, call its purchase() and restock() methods with the user inputs, and finally call its report() method to display the current inventory.

Here's the updated code for LabProgram.java:

import java.util.Scanner;

public class LabProgram {

public static void main(String[] args) {

   Scanner scnr = new Scanner(System.in);

   // Read user inputs

   System.out.print("Enter number of drinks to buy: ");

  int numDrinks = scnr.nextInt();

   System.out.print("Enter number of bottles to restock: ");

   int numBottles = scnr.nextInt();

   // Create vending machine object

   VendingMachine vm = new VendingMachine();

   // Purchase drinks and restock bottles

   vm.purchase(numDrinks);

   vm.restock(numBottles);

   // Report current inventory

   vm.report();

 }

}

When the program is run and the user enters "5 2" as input, the output will be:

Enter number of drinks to buy: 5

Enter number of bottles to restock: 2

Inventory: 17 bottles

Read more about java here:

https://brainly.com/question/26789430

#SPJ1

Big data are used to _____. Select 3 options.

create artificial intelligence

understand people’s hobbies

analyze people’s interests

process privacy policies

make decisions about marketing

Answers

Answer:

Big data are used to _____. Select 3 options.

understand people’s hobbies

analyze people’s interests

make decisions about marketing

Explanation:

100%

In computer technology and business, Big data are used to:

Understand people’s hobbies.Analyze people’s interests.Make decisions about marketing.

What is Big data?

Big data refers to a huge collections of data that are typically difficult for end users or business organizations to process, analyze, and manage through the use of conventional data tools.

Generally, Big data are used in collaboration with database management systems (DBMS) to achieve the following:

Understand people’s hobbies.Analyze people’s interests.Make decisions about marketing.

Read more on Big data here: https://brainly.com/question/14273643


3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing the task
Answer fast , will mark branliest .​

Answers

Explanation:

use the style attribute

3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing

Which of the following statements about content-based filtering is TRUE?

Answers

Answer:

with content-basedfiltering users receive recommendations for items that are similar in type to ones they already like

explain how the internet works​

Answers

How does the Internet Work?

The Internet works through a packet routing network in accordance with the Internet Protocol (IP), the Transport Control Protocol (TCP) and other protocols.

Hope this helps you!

Explanation:

The internet is a worldwide computer network that transmits a variety of data and media across interconnected devices. It works by using a packet routing network that follows Internet Protocol (IP) and Transport Control Protocol (

who likes games https://www.gameszap.com/game/12038/y8-multiplayer-stunt-cars.html

Answers

Answer:

Bet G

Explanation:

Other Questions
Select each pair of equivalent numbers. PLS HELP DUE TMR AND I DONT HOW TO SOLVE IT, PLS SHOW HOW U SET IT UP what is the relationship between a company's international market and its production location decisions? how do firms benefit from the use of scanning techniques when making location decisions? I WILL GIVE BRAINY LIST PLEASE HELPwhat has been a major cause of political instability for central america and caribbean countries? Solve each system by substitution.y=5x-10 y=3x+81. Both equations are solved for . Substitute the value of in the second equation. =3x+82. Now solve for .3. Substitute the value of in one of the original equations. Solve for .4. Write your answer as an ordered pair .Solution: ( , ) I need help with the vocab Find the measure of each side of the triangle, then classify it by its sides. Leave the answer as a radical. J(-7,7) K(-9,1), L(-1,-1) 1-) Solve the given equation using the secant methodF(x) = cos(x) 3x^2 + 5x + 6 a scientist came across two populations of beetle specieis, each puring breeding one population was all red in color, the other was all black the scienist mated one red beetle with one black beetle, and the offspring were all black. what is the dominance relationshp between the two alleles Cruise performance. The following data apply to a turbojet aircraft: Cp = 0.02 +0.057C S=184 ft Initial weight = 6000 lb TSFC =c= 1.25/h at sea level Find the range for this jet at 30,000 ft if the pilot is flying for max range and has 1000 lb of fuel available. What happens to the average kinetic energy of a substance as its temperature increases Please I really need help You run a construction firm. You have just won a contract to build a government office complex. Building it will require an investment of $10.0 million today and S5.0 million in one year. The government will pay you $20.0 million in one year upon the building's completion. Suppose the interest rate is 10.0%. What is the NPV of this opportunity? follow can your firm turn this NPV into cash today? What is the NPV of this opportunity? The NPV of the proposal is $|f] million. (Round to two decimal places.) follow can your firm turn this NPV into cash today? (Select the best choice below.) The firm can borrow $15.0 million today and pay it back with 10.0% interest using the $18.18 government. The firm can borrow $18.18 million today and pay it back with 10.0% interest using the $20.0 government. The firm can borrow $15.0 million today and pay it back with 10.0% interest using the $20.0 million it will receive from the government. The firm can borrow $22.73 million today and pay it back with 10.0% interest using the $20.0 million it will receive from the government. Marian Plunket owns her own business and is considering an investment. If she undertakes the investment, it will pay $4, 000 at the end of each of the next 3 years. The opportunity requires an initial investment of $1, 000 plus an additional investment at the end of the secand year of $5, 000. What is the NPV of this opportunity if the interest rate is 2.0% per year? Should Marian take it? What is the NPV of this opportunity if the interest rate is 2.0% per year? The NPV of this opportunity is . (Round to the nearest cent.) Should Marian take it? Marian take this opportunity. (Select from the drop-down menu.) MAt thew wants to take out a loan to buy a car. lie calculates that he can make repayments of $4, 000 per year. If he can get a five-year loan with an interest rate of 7.1%, what is the maximum price he can pay for the car? as federalism has evolved over the years, more power has gone to the federal government . in the modern era, new types of federalism has emerged. Political philosophy is the study of fundamental questions about how government can balance the needs of society versus the wants of society. true false Field sales are conducted over the phone.1) True2) False Consider the organization you are currently working in and explain this organization from systems characteristics perspectives particularly consider objective, components (at least three) and interrelationships among these components with specific examples Zachary Services Company has 59 employees, 24 of whom are assigned to Division A and 35 to Division B. Zachary incurred $356,950 of fringe benefits cost during year 2. Required Determine the amount of the fringe benefits cost to be allocated to Division A and to Division B. You have a bag with 30 fireballs and another bag with 42 jolly ranchers. For a party, you want to repackage the candy into smaller bags, with the same number of fireballs and jolly ranchers. How many of fireballs and jolly ranchers will you put in the smaller bags? Use the Caesar cipher to decrypt the message SRUTXH BR WH DPR PDV Comments should:a) give the reader the background of the programmer.b) be written for every line of code.c) communicate the purpose of the code that follows it.d) give information about how many hours it took to write the code.