There are three main categories of objects to be protected by access controls: information, technology, and _____________.

a. applications
b. processes
c. physical location
d. networks

Answers

Answer 1

Answer:

c. physical location

Explanation:

An access control can be defined as a security technique use for determining whether an individual has the minimum requirements or credentials to access or view resources on a computer by ensuring that they are who they claim to be.

Simply stated, access control is the process of verifying the identity of an individual or electronic device in order to grant or deny them access to a computer resource.

Access control work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials through a process known as authentication and granting the user access if the credentials provided are authentic (valid) through a process known as authorization, else, they would be denied access.

An example of an access control is a password because it is typically a basic and fundamental front-line defense mechanism against an unauthorized use of data or cyber attacks from hackers.

There are three main categories of objects to be protected by access controls: information, technology, and physical location. Information refers to all data sets, technology refers to the software applications, network and computer systems while physical location refers to infrastructures such as building, data centers, campuses, offices etc.


Related Questions

PEASE ANSWER QUICKLY

What is the value of the variable moneyDue after these lines of code are executed? >>>numSodas = 2 >>>costSodas = 1.50 >>>moneyDue = numSodas * costSodas

The value of moneyDue is ____.

Answers

90
I calculated the sodas

Answer:

3.0

Explanation:

I input 90 and it was not correct, the answer is 3.0 (correct on Edg 2021) :D

What type of cipher takes one character and replaces it with one character, working one character at a time

Answers

Answer: An algorithm

Explanation: ​An asymmetric encryption key that does have to be protected. ​An algorithm that takes one character and replaces it with one character.

Write a class named TestScores. The class constructor should accept an array of test scores as its argument. The class should have a method that returns the average of the test scores. If any test score in the array is negative or greater than 100, the class should throw an IllegalArgumentException. Demonstrate the class in a program.

Answers

import java.util.Arrays;

public class TestScores {

   public static float getAverage(float arr[]){

       float total = 0;

       for (float x : arr){

           if (x < 0 || x > 100){

               throw new IllegalArgumentException();

           }

           else{

               total += x;

           }

           

       }

       return (total / arr.length);

   }

   

   public static void main(String [] args){

       float arr[] = {1,100,0,43,-1};

       System.out.println(getAverage(arr));

   }

}

In the main method we test our getAverage method with the arr array. You can replace the values in the arr array and test your own values. I hope this helps!

The code example of the implementation of the TestScores class in Java is shown below:

What is the class?

java

import java.util.Arrays;

public class TestScores {

   private int[] scores;

   public TestScores(int[] scores) {

       this.scores = scores;

   }

   public double getAverage() {

       int sum = 0;

       for (int score : scores) {

           if (score < 0 || score > 100) {

               throw new IllegalArgumentException("Invalid test score: " + score);

           }

           sum += score;

       }

       return (double) sum / scores.length;

   }

   public static void main(String[] args) {

       int[] scores = {85, 90, 92, 88, 95};

       TestScores testScores = new TestScores(scores);

       try {

           double average = testScores.getAverage();

           System.out.println("Average test score: " + average);

       } catch (IllegalArgumentException e) {

           System.out.println("Error: " + e.getMessage());

       }

   }

}

Read more about  class  here:

https://brainly.com/question/26580965

#SPJ2

The best way to make sure text stand out in eNotes would be to
A. resize it.
B. printit it
C. bold it
D. strike-through​

Answers

The answer is C.Bold it

Answer: (D) bold it.

Explanation:

Infrastructure as a Service (IaaS) replaces the _________ of the computer hierarchy with an Internet-based infrastructure.A. digital logic level through user levelsB. digital logic level through high-level language levelsC. system software level through high-level language levelsD. digital logic level through machine levels

Answers

Answer:

D. digital logic level through machine levels

Explanation:

In Computer science, the modern computer systems are basically organized in levels and this is known as computer hierarchy. The three levels in a chronological order are operating system level, machine language level and digital (hardware) logic level.

A digital logic level is the most fundamental level of a computer and can be defined as a level of the computer hierarchy which typically comprises of wires and gates. In digital circuits, the two (2) main logic level of the binary logic state are logical low and logical high which is typically denoted by the number 0 and 1 respectively.

In Computer science, the Infrastructure as a Service (IaaS) replaces the digital logic level through machine levels of the computer hierarchy with an Internet-based infrastructure. This is what enables various users to access resources that are available over the internet through the use of cloud storage.

Write a single statement that prints outsideTemperature with a or - sign. End with newline. Sample output with input 103.5: 103.500000

Answers

Answer:

Written in C Language

#include <stdio.h>

int main() {

   float temp;

   printf("Temperature: ");

   scanf("%f",&temp);

   temp-=(temp + temp);

   printf("%.6f", temp);

    return 0;

}

Explanation:

This line declares temp as float

   float temp;

This line prompts user for input

   printf("Temperature: ");

This line gets user input

   scanf("%f",&temp);

This line negates the user input

   temp-=(temp + temp);

This line prints out the required output with a - sign

   printf("%.6f", temp);

Computer programmers are responsible for writing code that tells computers commands to follow.

True
False

Answers

True is the correct answer.

Answer:

True

Explanation:

the answer is true

Write a program to simulate a simple calculator. In your program ask the user to enter an operation selected from the menu, ask for two operands. Calculate the result and display it on the screen. Here is a sample run

Answers

Answer:

Written in Python:

opcode = input("Enter operator: +,-,*,/")

operand1 = float(input("Operand 1: "))

operand2 = float(input("Operand 2: "))

if opcode == "+":

    print(operand1 + operand2)

elif opcode == "-":

    print(operand1 - operand2)

elif opcode == "*":

    print(operand1 * operand2)

elif opcode == "/":

    print(operand1 / operand2)

else:

    print("Invalid Operator")

Explanation:

This prompts user for operator

opcode = input("Enter operator: +,-,*,/")

The next two lines prompt user for two operands

operand1 = float(input("Operand 1: "))

operand2 = float(input("Operand 2: "))

This performs + operation if operator is +

if opcode == "+":

    print(operand1 + operand2)

This performs - operation if operator is -

elif opcode == "-":

    print(operand1 - operand2)

This performs * operation if operator is *

elif opcode == "*":

    print(operand1 * operand2)

This performs / operation if operator is /

elif opcode == "/":

    print(operand1 / operand2)

This displays invailid operator if input operator is not +,-,* or /

else:

    print("Invalid Operator")

3.7) BEST ANSWER BRAINLIEST

your answer will be reported if it is ridiculous


Which is NOT a question that might help a network engineer isolate which layer in a network has a problem?



Is the user operating the software correctly?


Is everything plugged in?


Are messages arriving in a timely manner?


Are the data displaying in a garbled manner?

Answers

Explanation:

i think it is are messages ariving in a timely manner?

Answer:

Is the user operating the software correctly?

Explanation:

Thats the correct one for edge

Which are valid variable names? Select 2 options.

cost$

firstNumber

$cost

1stNumber

first_number

Answers

Answer:  

firstNumber

first_number

Explanation: i did it ;)

Answer: firstNumber

Explanation: got it right on edgen

Which finger types the space bar?

Answers

Answer:

Thumbs

Explanation:

Write a method getIntVal that will get the correct value input as integer numbers from the user. The input will be validated based on the first two numbers received as parameters.

Answers

Complete Question:

Write a method getIntVal that will get the correct value input as integer numbers from the user. The input will be validated based on the first two numbers received as parameters.

In other words, your program will keep asking for a new number until the number that the user inputs is within the range of the <firstParameter> and <secondParameter>.

The method should present a message asking for the value within the range as:

Please enter a number within the range of (<firstParameter> and <secondParameter>):

Note that <firstParameter> should be changed by the value received as that parameter and <secondParameter> as well.

If the user inputs a value that it is lower than the first value, the program will show the message:

The input number is lower than <firstParameter>

Note that <firstParameter> should be changed by the value received as that parameter

If the user inputs a value that it is greater than the first value, the program will show the message:

The input number is greater than <secondParameter>

Note that <secondParameter> should be changed by the value received as that parameter.

You do not need to modify anything in the main method, you just need to write the missing parts of your new getIntVal method.

Answer:

#include<iostream>

using namespace std;

void getIntVal(int num1, int num2) {

int num;

cout<<"Please enter a number within the range of "<<num1<<" and "<<num2<<": ";

cin>>num;

while(num<num1 || num>num2) {

if(num<num1) {

cout<<"The input number is lower than "<<num1<<endl;

}

if(num>num2) {

cout<<"The input number is greater than "<<num2<<endl;

}

cout<<"Please enter a number within the range of "<<num1<<" and "<<num2<<": ";

cin>>num;

}

cout<<"Output: "<<num;

}

int main() {

int num1,num2;

cout<<"Enter lower bound: ";

cin>>num1;

cout<<"Enter upper bound: ";

cin>>num2;

getIntVal(num1, num2);

return 0;

}

Explanation:

Programming Language is not stated, So, I answered using C++

I've added the full source code as an attachment where I use comments to explain difficult lines

According to Jonathan Zittrain, technology that cannot be modified by the user who wishes to create new uses for it is:_______

a. Sterile
b. Open
c. Generative
d. Clean

Answers

Answer:

a. Sterile

Explanation:

From a lecture that was given by jonathan zittrain, he described a sterile technology as a type of technology that will not develop. And going further he says that a y third party cannot do any sort of coding for such a technology. It works the same way always. He described it in these words 'what you see is what you get'.

T/F 2.In most computers, the operating system is stored on a compact disc.

Answers

Answer:

False

Explanation:

Either a Hard Drive or a SSD would be used to store the OS

What is the output password=sdf345

Answers

Answer:what do you mean

Explanation:

Answer:

False

Explanation:

If you put it in python your answer would be false

Suppose you discover that you have a directory called bin2, which includes a bunch of useful programs. You want to move those programs into your bin directory, and then delete bin2. What command(s) will you give

Answers

Answer:

The MV command to move the bin2 directory to the bin directory.

Explanation:

Linux operating system uses a hierarchical arrangement of directories to organise information in its system.

It is an open source operating system with various built-in commands and other commands which can be made by a programmer.

The MV command takes a file or directory from a current directory and a destination directory.

Suppose a disk drive has the following characteristics: Six surfaces 16,383 tracks per surface 63 sectors per track 512 bytes/sector Track-to-track seek time of 8.5ms Rotational speed of 7,200rpm a) What is the capacity of the drive

Answers

Answer:

The answer is "2.95 GB"

Explanation:

Given value:

Surfaces = 6

The tracks per surface =16,383

The sectors per track = 63

bytes/sector = 512

Track-to-track seek time = 8.5ms

The Rotational speed = 7,200rpm

[tex]\text{Drive capacity= surface} \times \text{tracks per surface} \times \text{sectors per track} \times \frac{bytes}{sector}[/tex]

                      [tex]= 6 \times 16383 \times 63 \times 512 \\\\= 3170700288 \ B\\\\ = 3023.81543 \ MB \\\\= 2.95294 \ GB\\[/tex]

The drive capacity is 2.95 GB

is check payable a liability ?​

Answers

Answer:

Yes

Explanation:

Accounts payable (AP) is money owed by a business to its suppliers shown as a liability on a company's balance sheet.

A pay check is a liability

The _________ contains logic for performing a communication function between the peripheral and the bus.

Answers

Answer:

I/O module

Explanation:

The I/o module is known as the input/output module. Such a module is usually connected to system on one end and and in the other end, one or more input/output devices are connected. Such a technique helps to exchange data between the processor and also the input /output device. It helps in information transfer between the internal storage and also the external storage.

Give a recursive algorithm that takes as input two non-negative integers x and y and returns the sum of x and y. The only arithmetic operations your algorithm can perform are Increment(x) which returns x 1 and Decrement(x) which returns x-1. Your algorithm should have no loops.

Answers

Answer:

Following are the code to this question:

Cal_sum(x,y)//defining a recursive method Cal_sum that takes two variable as a parameter

{

if(x==0)// defining If that checks x equal to 0

return y; //return y value

x- 1;//decreasing x value  

y+1;//increasing y value

return Cal_sum(x,y)// calling method recursively

}

Explanation:

In the above-given code, a recursive method "Cal_sum" is declared, that accepts two-variable "x and y" in its parameter, and use if block to checks x is equal to 0 and return the value y variable, and, in the next step, it decreases the value of " x" by "1" and increment the value of y by "1", and call the method "Cal_sum" recursively.

The recursive program which calls itself in a function is used to return the value of y for a given x, y value in the program. The code written in python 3 goes thus :

def calc_sum (x,y) :

#initializes a function named calc_sum which takes in two arguments

if x ==0 :

#checks of the value of x is equal to 0

return y

#it returns y if x == 0

else :

#otherwise

x = x - 1

# decrease the value of x by 1

y = y + 1

#increase the value of y by 1

return calc_sum(x,y)

# calls the function recursively until x ==0

A sample run of the program is given below

print(calc_sum(4, 5 ))

Learn more :https://brainly.com/question/16027903

The formula to convert Fahrenheit (F) temperature to Celsius (C) is C=F-32/1.8 which line of code will accomplish this conversion?

O Celsius = (Fahrenheit - 32) / 1.8

O Celsius = (Fahrenheit - 32) * 1.8

O Celsius = Fahrenheit - 32 * 1.8

O Celsius = Fahrenheit - 32 /* 1.8

Answers

I think it might be the first option

The formula code that coverts the temperature unit of Fahrenheit to Celsius is Celsius = (Fahrenheit - 32) / 18. Therefore, option A is correct.

What are the units of measuring temperature?

Temperature is given as the unit of measuring the hotness or coolness of a body. The SI unit of measuring temperature is Kelvin. The equivalent converts the temperature unit between Kelvin, Celsius, and Fahrenheit.

The code of line that helps in accomplishing the conversion of Fahrenheit to Celsius is,

Celsius = (Fahrenheit - 32) / 18.

Thus, option A is correct.

Learn more about Celsius to Fahrenheit, here:

https://brainly.com/question/14272282

#SPJ2

summarize how to write well-organized paragraphs

Answers

Decide on a controlling idea and create a topic sentence. ...
Explain the controlling idea. ...
Give an example (or multiple examples) ...
Explain the example(s) ...
Complete the paragraph's idea or transition into the next paragraph.

6.24 LAB: Exact change - functions Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies. Ex: If the input is:

Answers

Answer:

Written in Python

money = int(input("Enter Amount Here:  "))

dollar = int(money/100)

money = money % 100

quarter = int(money/25)

money = money % 25

dime = int(money/10)

money = money % 10

nickel = int(money/5)

penny = money % 5

if dollar >= 1:

     if dollar == 1:

           print(str(dollar)+" dollar")

     else:

           print(str(dollar)+" dollars")

if quarter >= 1:

     if quarter == 1:

           print(str(quarter)+" quarter")

     else:

           print(str(quarter)+" quarters")

if dime >= 1:

     if dime == 1:

           print(str(dime)+" dime")

     else:

           print(str(dime)+" dimes")

if nickel >= 1:

     if nickel == 1:

           print(str(nickel)+" nickel")

     else:

           print(str(nickel)+" nickels")

if penny >= 1:

     if penny == 1:

           print(str(penny)+" penny")

     else:

           print(str(penny)+" pennies")

Explanation:

I've added the source code as an attachment where I used comments to explain some lines

Write a method called printIndexed that accepts a String as itsparameter and prints the String's characters in order followed bytheir indexes in reverse order. For example, the call ofprintIndexed("ZELDA"); should print Z4E3L2D1A0 to the console.

Answers

Answer:

def printIndexed(s):

   for i in range(len(s)):

       print(s[i] + str(len(s) - 1 - i), end="")

       

   

printIndexed("ZELDA")

Explanation:

*The code is in Python.

Create a method named printIndexed that takes one parameter, s

Create a for loop that iterates the length of the s times

Inside the loop, print the characters from starting and indexes from the end

Note that in order the print the current character, you need to use indexing. s[i] refers to the current character of the string (the value of the i starts from 0 and goes until length of the s - 1). Also, to print the indexes from the end, you need to subtract the i from the length of the s - 1

For example, in the first iteration, i = 0:

s[i] = s[0] = Z

len(s) - 1 - i = 5 - 1 - 0 = 4

Which method accepts a function that combines all the elements in the array and then returns the resulting value?
a. filter()
b. reduce()
c. map()
d. forEach()

Answers

Answer:

The method that accepts a function that combines all the elements in an array and then returns the resulting values is map() method.

Explanation:

map()  method creates a new array with the results of calling a provided  function for every array element. map() element calls function for each array element to compute value.

Match the correct term from the list below with the correct statement.

Answers

Answer:

self-serving bias

feedback

self-fulfilling prophecy

communication

context

Write a function, maxRadius, to find the index of the planet with the largest radius in the array. The function should: Be named maxR

Answers

Answer:

The following c code has the maxR function as the calculator of planet radius.

Code:

#include<iostream>

#include<string>

using namespace std;

//if is not asked to import a math library, it can be used the following Pi value.

const double PI = 3.14;

class Planet

{

private:

 string planet;

 double r;

public:

   Planet ()

 {

   this->planet = "";

   this->r = 0.0;

 }

 Planet (string name, double r)

 {

   this->planet = name;

   this->r = r;

 }

 string collectName () const

 {

   return this->planet;

 }

 double collectR () const

 {

   return this->r;

 }

 double collectVolume () const

 {

   return 4 * r * r * r * PI / 3;

 }

};

int

maxR (Planet * planets, int s)

{

 double maxR = 0;

 int index_of_max_r = -1;

 for (int index = 0; index < s; index++)

   {

     if (planets[index].collectR () > maxR)

{

  maxR = planets[index].collectR ();

  index_of_max_r = index;

}

   }

 return index_of_max_r;

}

int

main ()

{

 Planet planets[5];

 planets[0] = Planet ("On A Cob Planet", 1234);

 planets[1] = Planet ("Bird World", 4321);

 int idx = maxR (planets, 2);

 cout << planets[idx].collectName () << endl;

 cout << planets[idx].collectR () << endl;

 cout << planets[idx].collectVolume () << endl;

}

Which is an algorithmic form of a procedure?
A.
function calc_area
B.
area=length*breadth
C.
call function calc_area
D.
return area to the main function
E.
end function calc_area

Answers

Answer:

b

Explanation:

im doing the test right now

Answer:

B is correct!

Explanation:

Give a recursive algorithm that takes as input two positive integers x and y and returns the product of x and y. The only arithmetic operations your algorithm can perform are addition or subtraction. Furthermore, your algorithm should have no loops.

Answers

Answer:

#include <stdio.h>

int product(int x,int y)

(

 if(y==1)

    return x;

 else

    return (x+product(x,y-1));

)

int main()

(

 int a,b;

 scanf("%d %d",&a,&b);

 printf("%d\n*,product(a,b));

return 0;

)

Explanation:

See above code as explanatory enough.

. Because Maya knows that the most important part of an e-mail message is the subject line, she ________.

Answers

Answer:

adjust the subject line if the topic changes after repeated replies

Explanation:

E-mail (electronic mail) message is usually reffered to as a text, usually informal which can be sent electronically or received through a computer network. e-mail message is usually brief but at same time some do contains attachment which allows sending of images as well as spreadsheet. One of the important part of Email message is the Subject Line which serves as the introduction that gives the intent of the message, it is this Subject Line that will show when the recipient is going through the list of emails in his/her inbox. It allows the recipient to know what is conveyed in the body of the message.There are usually action information as well as dates at the end of the email message as well as closing thought.In the case of Maya from the question, Because Maya knows that the most important part of an e-mail message is the subject line, she adjust the subject line if the topic changes after repeated replies, since the subject line convey the information in the body text, so the subject line need to be adjusted to fit the topic as it changes.

Other Questions
Use the following list of resting pulse rates of 55 people. The mean of these rates is 73.5, and the standard deviation is approximately 13.2.50, 51, 51, 53, 53, 53, 55, 56, 56, 57, 58, 58, 59, 59, 6060, 60, 60, 62, 62, 64, 65, 65, 65, 68, 68, 69, 71, 71, 7272, 73, 75, 76, 77, 78, 78, 81, 81, 81, 82, 82, 82, 82, 8385, 85, 85, 88, 88, 90, 90, 91, 91, 92Determine the pulse rates that are within 1 standard deviation of the mean. What percentage of the total to the nearest 0.1 percent do these rates represent? PLEASE HELP WITH 24I WILL GIVE YOU THE BRILLIANT THINGY 130 is 1/10 of 13 true or false Which statements most accurately describe Georgia as a colony? Check all that apply. -It was the farthest south.-It was the largest in size.-It was the most loyal to Britain.-It had strong royal governors.-It relied heavily on trade with Britain.-It was the seat of rebellion against Britain. A triangle defined by A(1,5), B2:3), and Cl-43) istranslated 5 units to the right on a coordinate piane,What are the coordinates of the resulting triangleABC? Whats the answerrrrrrrr Find the Horizontal Asymptote of the exponential function, and then identify the transformations.f(x) = -2^(2-5) + 3 1. The Conquistadors brought their culture and language to the New World and conquered many parts of Central and South America. As a result, many people in these regions speak which language? Please help pleaseee Why are atomic masses not whole numbers? Which name is used to describe organisms that perform photosynthesis tomake their own food?A. AutotrophsB. HeterotrophsC. ConsumersD. Omnivores Read the excerpt from Narrative of the Life of Frederick Douglass.I suffered more anxiety than most of my fellow-slaves. I had known what it was to be kindly treated; they had known nothing of the kind. They had seen little or nothing of the world. They were in very deed men and women of sorrow, and acquainted with grief. Their backs had been made familiar with the bloody lash, so that they had become callous; mine was yet tender; for while at Baltimore, I got few whippings, and few slaves could boast of a kinder master and mistress than myself; and the thought of passing out of their hands into those of Master Andrew. . .What is the cause of Douglasss anxiety in the excerpt?a. He is not used to the suffering he might endure with a new master.b. The other enslaved persons are resentful of his privileges with his kind master.c. He is expecting to be separated from the rest of his family.d. He is planning to run away and is terrified of being caught. Homeostasis means to maintain balance or equilibriumTrueFalse Which of the following resources could best help you prepare for a wildlandfire, or forest fire?A. The Department of EnergyB. The National Security AgencyC. The state's department of natural resourcesD. The state's highway patrol Crop rotation lead to The use of different national currencies creates a barrier to further growth in international business activity. What are the pros and cons, among companies and governments, of replacing national currencies with regional currencies why Fahrenheit thermometer is used to measure human body temperature? The Great Pyramid, built for Khufu, was built in the city of Giza.True or false give an example of newtons 1st law of motion at work (write a complete sentence and use the word inertia) How was legalism impacted the world