Which security term is used to describe the likelihood of a threat to exploit the vulnerability of an asset, with the aim of negatively affecting an organization?
answer choices
Vulnerability
Exploit
Threat
Risk

Answers

Answer 1

Risk is the term used to describe the likelihood of a threat to exploit the vulnerability of an asset, with the aim of negatively affecting an organization.

What scientific word best defines the use of a vulnerability?

Hackers employ a zero-day exploit to target systems that have an undiscovered vulnerability. A zero-day attack is when a system is vulnerable and a zero-day exploit is used to harm the system or steal data from it.

What is risk probability?

Risk When danger is considered to be likely, it can be classified as low, medium, or high using qualitative values. This contrasts with quantitative assessments, which rely on data and statistics. The phrases risk likelihood and percentage are frequently employed in a quantitative assessment.

To know more about risk probability visit:

https://brainly.com/question/14854233

#SPJ4


Related Questions

Question 1

As a Windows Administrator for a large company, you are asked to grant temporary software installation permissions to the Sales department. Which of the following would be the most efficient method for accomplishing this task?

Answers

Answer: The most efficient method for granting temporary software installation permissions to the Sales department would be to create a temporary user group in Active Directory and add the Sales department members to that group. Then, assign the necessary permissions to the temporary group for software installation on the relevant systems or servers. This method allows for easy management and revoking of permissions once they are no longer needed, without affecting the permissions of other departments or individual users.

Your professor is advising a new crowd-funding app for women's self-help groups (SHGs) in Latin America on their database architecture. This is the business requirement she has worked on: All campaigns belong to a SHG. An SHG must exist before a campaign is created, and when an SHG is deleted from the database, all its campaigns are deleted. SHGs always belong to a country, and a country must be added to the app before SHGs are added to it. Which of the following is true of the entities defined in the database? Select all that apply.

Question 6 options:

An SHG entity depends on a Campaign entity

A Campaign entity is a depend on the SHG entity

A Country is not dependent on the Campaign entity

An SHG entity is dependent on a Country entity

A Campaign is an Independent entity

Answers

Based on the given information, the following statements are true:

An SHG entity depends on a Country entity.A Campaign entity is dependent on the SHG entity.

What is a country entity?

In the context of database design, a country entity refers to a logical representation of a country within a database system.

It typically stores information related to countries, such as their names, codes, demographics, or any other relevant data.

The country entity serves as a reference point for other entities in the database, such as self-help groups (SHGs) or campaigns, allowing for proper organization and association of data within the system.

Learn more about Entity at:

https://brainly.com/question/29491576

#SPJ1

Pseudocode finding the sum of the number 12, 14, 16

Answers

Answer:

Pseudocode:

1. Initialize a variable named 'sum' and set it to 0.

2. Create an array named 'numbers' containing the numbers 12, 14, and 16.

3. Iterate over each number in the 'numbers' array.

  3.1 Add the current number to the 'sum' variable.

4. Print the value of 'sum'.

Alternatively, here's an example of pseudocode using a loop:

1. Initialize a variable named 'sum' and set it to 0.

2. Create an array named 'numbers' containing the numbers 12, 14, and 16.

3. Initialize a variable named 'index' and set it to 0.

4. Repeat the following steps while 'index' is less than the length of the 'numbers' array:

  4.1 Add the value at the 'index' position in the 'numbers' array to the 'sum' variable.

  4.2 Increment 'index' by 1.

5. Print the value of 'sum'.

Explanation:

1st Pseudocode:

1. In the first step, we initialize a variable called 'sum' and set it to 0. This variable will be used to store the sum of the numbers.

2. We create an array named 'numbers' that contains the numbers 12, 14, and 16. This array holds the numbers you want to sum.

3. We iterate over each number in the 'numbers' array. This means we go through each element of the array one by one.

3.1 In each iteration, we add the current number to the 'sum' variable. This way, we accumulate the sum of all the numbers in the array.

4. Finally, we print the value of the 'sum' variable, which will be the sum of the numbers 12, 14, and 16.

2nd Pseudocode using a loop:

1. We start by initializing a variable called 'sum' and set it to 0. This variable will store the sum of the numbers.

2. Similar to the first pseudocode, we create an array named 'numbers' containing the numbers 12, 14, and 16.

3. We initialize a variable called 'index' and set it to 0. This variable will be used to keep track of the current index in the 'numbers' array.

4. We enter a loop that will repeat the following steps as long as the 'index' is less than the length of the 'numbers' array:

4.1: In each iteration, we add the value at the 'index' position in the 'numbers' array to the 'sum' variable. This way, we accumulate the sum of all the numbers in the array.

4.2: We increment the 'index' by 1 to move to the next position in the array.

5. Finally, we print the value of the 'sum' variable, which will be the sum of the numbers 12, 14, and 16.

System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio

Answers

System testing is a crucial stage where the software design is implemented as a collection of program units.

What is Unit testing?

Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.

It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.

Read more about System testing here:

https://brainly.com/question/29511803

#SPJ1

Write a short essay (roughly 300 words) about some topic related to computing and/or communication technology that interests you and has social or ethical implications. Describe the background; then identify the social or ethical issues, problems, or questions that you think are important. (Don't make your essay be just an argument for one point of view. You may express your views if you want to, but first explain what the issues are, why there is a problem or a controversy.) Remember to define the problem.

Answers

A topic related to computing and/or communication technology that interests you and has social or ethical implications is computer programming.

What is the role of computer programming in the society?

Information Communication Technology (ICT) is known to be one that has brought about a lot of new ethical concerns as regards the protection of personal privacy, and also that of of intellectual property. It also encompasses the user responsibility, acceptable access and use of information.

Note that Computer programming is vital today because a lot of our world is said to be automated in nature. Humans do need to be able to control the communication that exist between people and machines.

Note that Since computers and machines are said to have the ability to do things so well and accurately, we therefore need to use  computer programming to get that computing power.

Learn more about computer programming from

https://brainly.com/question/23275071

#SPJ1

You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.

Answers

Answer:

Explanation:

Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)

static void sortingMethod(int arr[], int n)  

   {  

       int x, y, temp;  

       boolean swapped;  

       for (x = 0; x < n - 1; x++)  

       {  

           swapped = false;  

           for (y = 0; y < n - x - 1; y++)  

           {  

               if (arr[y] > arr[y + 1])  

               {  

                   temp = arr[y];  

                   arr[y] = arr[y + 1];  

                   arr[y + 1] = temp;  

                   swapped = true;  

               }  

           }  

           if (swapped == false)  

               break;  

       }  

   }

Need help
I need help with this it’s really confusing and I have to send it to my teacher with a file I don’t get it

Need help I need help with this its really confusing and I have to send it to my teacher with a file

Answers

Answer:

100 POINTS MATHEMATICS MIDDLE SCHOOL HOMEWORK.

I will report you if you answer incorrectly or steal my points.

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

JAVA PROJECT USING ( WHILE LOOP )
Bubble 1 and 2 are moving right 1 position.
Bubble 1 and 2 are moving right 1 position.
Bubble 1 and 2 are moving right 1 position.

Bubble 1 and 2 are moving left 1 position.

Bubble 1 and 2 are moving left 1 position.

Bubble 1 and 2 are moving left 1 position.

This is pass 2.
Bubble 1 and 2 are moving right 1 position.
Bubble 1 and 2 are moving right 1 position.
Bubble 1 and 2 are moving left 1 position.

Bubble 1 and 2 are moving left 1 position.

This is pass 3.
Bubble 1 and 2 are moving right 1 position.
Bubble 1 and 2 are moving left 1 position.



This is pass 4.
Bubble 1 is not moving.
Bubble 2 is not moving.

Answers

Explanation:

so, what's the question/problem ?

you want to know where the bubbles are after all 4 passes ? right at the original position.

you want to know, how such a while loop could look like ?

int i = 3;

// outer count-down to limit the passes

while (i >= 0) // making 4 passes

{

int j = i;

// inner count-down to limit the right moves

while (j > 0)

{

move(bubble1, right, 1);

move(bubble2, right, 1);

j = j - 1; // count-down

}

j = i;

// inner count-down to limit the left moves

while (j > 0)

{

move(bubble1, left, 1);

move(bubble2, left, 1);

j = j - 1; // count-down

}

i = i - 1; // outer count-down

}

what is a computer? ​

Answers

what is a computer?

A computer is a machine that can be programmed to carry out sequences of arithmetic or logical operations automatically. Modern computers can perform generic sets of operations known as programs. These programs enable computers to perform a wide range of tasks.

hope it helps

#carry on learning

You are working on a documentation file userNotes.txt with some members of your software development team. Just before the file needs to be submitted, you manager tells you that a company standard requires that one blank space be left between the end-of-sentence period (.) and the start of the next sentence. (This rule does not affect sentences at the very end of a line.) For example, this is OK: Turn the knob. Push the "on" button. This is not: Turn the knob. Push the "on" button. Asking around among your team members, you discover that some of them have already typed their sentences in the approved manner, but others have inserted two or even more blanks between sentences. You need to fix this fast, and the first thing you want to do is to find out how bad the problem is. What command would you give to list all lines of userNotes.txt that contain sentence endings with two or more blanks before the start of the next sentence?

Answers

Answer: Provided in the explanation section

Explanation:

The question says :

You are working on a documentation file userNotes.txt with some members of your software development team. Just before the file needs to be submitted, you manager tells you that a company standard requires that one blank space be left between the end-of-sentence period (.) and the start of the next sentence. (This rule does not affect sentences at the very end of a line.) For example, this is OK: Turn the knob. Push the "on" button. This is not: Turn the knob. Push the "on" button. Asking around among your team members, you discover that some of them have already typed their sentences in the approved manner, but others have inserted two or even more blanks between sentences. You need to fix this fast, and the first thing you want to do is to find out how bad the problem is. What command would you give to list all lines of userNotes.txt that contain sentence endings with two or more blanks before the start of the next sentence?

Solution:

Here, our fundamental aim is to look for the content which is having single space between different sentences. As it sentences finishing with . Going before with single and various spaces we have to channel and match just e the sentences which are finishing with ". "

For this we use order called "GREP" in Unix. "GREP " represents worldwide quest for standard articulation. This order is utilized inquiry and print the lines that are coordinating with determined string or an example. The example or indicated string that we have to look through we call it as customary articulation.

Syntax of GREP:

GREP [OPTIONS] PATTERN [FILE_NAME]

​​​​​​For our solution please follow the command

GREP "*\•\s$" userNotes.txt

Now it will display a all the lines having . Followed by single space.

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.

Answers

Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.

Writting the code:

Assume the variable s is a String

and index is an int

an if-else statement that assigns 100 to index

if the value of s would come between "mortgage" and "mortuary" in the dictionary

Otherwise, assign 0 to index

is

if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)

{

   index = 100;

}

else

{

   index = 0;

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

The process that allows you to copy data from another source file to a database without having to open the sources file is called

Answers

Answer:

Importing.

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.

In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.

This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. This records are stored and communicated to other data when required or needed.

Basically, when a database management system (DBMS) receives data update requests from application programs, it simply instructs the operating system installed on a server to provide the requested data or informations.

The process that allows you to copy data from another source file to a database without having to open the sources file is called importing.

Hence, import is a computer feature that avails users the ability to copy data directly from another source file to a database without opening the source file and as such is less cumbersome and saves time.

Comments are used to write pseudocode outlines. How do you indicate that a line is a comment? You start the line with a _________

Answers

Answer:

#

Explanation:

A more common way to plan a program is with pseudocode, an outline composed of comments. Comments are indicated by a pound sign (#) at the beginning of the line.

Depending on the programming language, there are several ways we can comments our statements or codes that are not needed in our programmes

In Kotlin and Java Languages we can us the double slash "//" symbol to express single line comment

Example

//This is a comments

We can also us the "/***/" to express multi line comments

Example

/**This is a comment

also*/

Hence we have the

Inline Comments Multiline Comments

For more information on comments in programming language kindly visit

https://brainly.com/question/15068446

Create the program below in java

Create the program below in java

Answers

Note that below is an example Java program that creates and prints two arrays.


public class ArrayExample {

   public static void main(String[] args) {

       int[] arr1 = {1, 2, 3, 4, 5};

       int[] arr2 = {10, 20, 30, 40, 50};

       

       System.out.println("Array arr1 contains:");

       for (int i = 0; i < arr1.length; i++) {

           System.out.print(arr1[i] + " ");

       }

       

       System.out.println("\nArray arr2 contains:");

       for (int i = 0; i < arr2.length; i++) {

           System.out.print(arr2[i] + " ");

       }

   }

}

What is the explanation for the above response?


When run, this program will output:

This program declares two integer arrays arr1 and arr2, initializes them with the given values, and then prints each array element using a for loop.

The program initializes two integer arrays, arr1 and arr2, with the values provided. It then uses a for loop to iterate over each element in each array and print it to the console. The output shows the values contained in each array.

Learn more about Java  at:

https://brainly.com/question/29897053

#SPJ1

Imagine that you decided to film a video in SD because the video will mostly be shared on social mediaand you want it to be able to load quickly. What considerations do you need to take into account in order to make the video successful?

Answers

The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

How do one make a  video successful?

This can be done by:

Create goals for video marketingPlan content productionKnow the post-production detailsSchedule and also promote the videosKnow  and analyze metrics

Therefore, The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

Learn more about social media from

https://brainly.com/question/3653791

#SPJ1

Write a program that accepts any number of homework scores ranging in value from 0 through
10. Prompt the user for a new score if they enter a value outside of the specified range. Prompt
the user for a new value if they enter an alphabetic character. Store the values in an array.
Calculate the average excluding the lowest and highest scores. Display the average as well as the
highest and lowest scores that were discarded.

Answers

Answer:

This program is written in Java programming language.

It uses an array to store scores of each test.

And it also validates user input to allow only integers 0 to 10,

Because the program says the average should be calculated by excluding the highest and lowest scores, the average is calculated as follows;

Average = (Sum of all scores - highest - lowest)/(Total number of tests - 2).

The program is as follows (Take note of the comments; they serve as explanation)

import java.util.*;

public class CalcAvg

{

public static void main(String [] args)

{

 Scanner inputt = new Scanner(System.in);

 // Declare number of test as integer

 int numTest;

 numTest = 0;

 boolean  check;

  do

  {

   try

   {

     Scanner input = new Scanner(System.in);

    System.out.print("Enter number of test (1 - 10): ");

    numTest = input.nextInt();

    check = false;

    if(numTest>10 || numTest<0)

     check = true;

   }

   catch(Exception e)

    {

     check = true;

   }

  }

  while(check);

  int [] tests = new int[numTest];

//Accept Input

for(int i =0;i<numTest;i++)

{

System.out.print("Enter Test Score "+(i+1)+": ");

tests[i] = inputt.nextInt();

}

           //Determine highest

           int max = tests[0];

           for (int i = 1; i < numTest; i++)

           {

               if (tests[i] > max)

               {

                   max = tests[i];

               }

           }

           //Determine Lowest

           int least = tests[0];

           for (int i = 1; i < numTest; i++)

           {

               if (tests[i] < least)

               {

                   least = tests[i];

               }

           }

           int sum = 0;

           //Calculate total

           for(int i =0; i< numTest;i++)

           {

               sum += tests[i];

           }

           //Subtract highest and least values

           sum = sum - least - max;

           //Calculate average

           double average = sum / (numTest - 2);

           //Print Average

           System.out.println("Average = "+average);

           //Print Highest

           System.out.println("Highest = "+max);

           //Print Lowest

           System.out.print("Lowest = "+least);

}

}

//End of Program

Lucas is taking an algebra class with many detailed steps. Which note-taking method would be best for this class?

charting
outlining
mapping
multiplying

Answers

Answer:

outlining

I really do hope this works !

Answer:

Hello!

The answer to your question is B. Outlining

Hope this helps!

A premium pizza is comprised of exactly 40 ounces of toppings. The available toppings are listed below with their corresponding weight (in ounces). There can be multiple entries of each topping, as long as the total weight is equal to 40 ounces. [18 points] For example, a pizza can contain 1 topping of pepperoni, 2 toppings of sausage, 1 topping of bacon, and 2 toppings of onion:1∗4+2∗10+1∗6+2∗5=401∗4+2∗10+1∗6+2∗5=40(ounces) A pizza cannot contain 7 toppings of bacon:7 ∗6=42>40A pizza cannot contain only 3 toppings of sausage :3
*
10=30<40Define a rule pizza
(P,S,B,O,M)
to find out how many of each topping can be contained on a pizza, where arguments
P,S,B,O
, and
M
represent the weights (in ounces) of the Pepperoni, Sausage, Bacon, Onion, and Mushroom toppings, respectively. [14] 3.2 Use your pizza rule to find all possible outputs to the following question (goal). [2] I ?- pizza(1, S, 1, O, M). Put all answers of the question in a comment in the file. 3.3 Use your pizza rule to find all possible outputs to the following question (goal). [2] I ?- pizza(
P,S,B,O,1)
. Put all answers of the question in a comment in the file.

Answers

Exactly 40 ounces of ingredients make up a premium pizza. The toppings that are available are mentioned below with their associated weights (in ounces).

For illustration, a pizza toppings list might include two toppings of onion, one of bacon, two of sausage, and one of pepperoni.: 1*4 + 2*10 + 1*6 + 2*5 = 40 (ounces)

There cannot be seven bacon toppings on a pizza: 7 * 6 = 42 > 40

A pizza must have just three sausage toppings: 3*10 = 30 < 40

To determine the maximum number of each topping that can be placed on a pizza, define the rule pizza(P, S, B, O, M), where P, S, B, O, and M represent the weights in ounces of the toppings, respectively, of pepperoni, sausage, bacon, onion, and mushrooms.

pizza(P,S,B,O,M):-

member(P,[0,1,2,3,4,5,6,7,8,9,10]),

member(S,[0,1,2,3,4]),

member(B,[0,1,2,3,4,5,6]),

member(O,[0,1,2,3,4,5,6,7,8]),

member(M,[0,1,2,3,4,5]),

S is 4*P + 10*S + 6*B + 5*O + 7*M,

S =:= 40.

Learn more about pizza here:

https://brainly.com/question/14451377

#SPJ4

Question 7
Consider the following scenario about using Python dictionaries:

A teacher is using a dictionary to store student grades. The grades are stored as a point value out of 100. Currently, the teacher has a dictionary setup for Term 1 grades and wants to duplicate it for Term 2. The student name keys in the dictionary should stay the same, but the grade values should be reset to 0.

Complete the “setup_gradebook” function so that input like “{"James": 93, "Felicity": 98, "Barakaa": 80}” will produce a resulting dictionary that contains “{"James": 0, "Felicity": 0, "Barakaa": 0}”. This function should:

accept a dictionary “old_gradebook” variable through the function’s parameters;

make a copy of the “old_gradebook” dictionary;

iterate over each key and value pair in the new dictionary;

replace the value for each key with the number 0;

return the new dictionary.

Answers

Here is an example implementation of the "setup_gradebook" function:

```python

def setup_gradebook(old_gradebook):

   new_gradebook = old_gradebook.copy()

   for key in new_gradebook:

       new_gradebook[key] = 0

   return new_gradebook

```

This function takes in the old_gradebook dictionary as a parameter and creates a new_gradebook dictionary by making a copy of the old one. It then iterates over each key in the new dictionary and sets the value to 0. Finally, it returns the new dictionary with all values set to 0.

how can a security framework k assist in the deisng and implementation of a secuiry infrastructure what isn information security governance

Answers

Answer:

on January 1st the new year begins rewrite and punctuate correctly

Assume a system uses 2-level paging and has a TLB hit ratio of 90%. It requires 15 nanoseconds to access the TLB, and 85 nanoseconds to access main memory. What is the effective memory access time in nanoseconds for this system?

Answers

Answer:

The effective memory access time  = 293.5 nanoseconds.

Explanation:

Given that:

TLB hit ratio = 90%

= 90/100

= 0.9

Require time to access TLB = 15 nanoseconds &

Time to access main Memory = 85 nanoseconds

The objective is to estimate the effective memory access time in nanoseconds for this system .

The effective memory access time  = [TLB Hit ratio (  main memory  access time + required time to access TLB) + ( 2 × main memory  access time) + required time to access TLB) × (2 - TLB hit ratio)]

The effective memory access time = [0.9 ( 85 + 15 ) + ( 2 × (85 ) + 15) × ( 2 - 0.90)

The effective memory access time  = 293.5 nanoseconds.

The code below is repetitious. What is the output of this program?
num = 3
num = num + 1
num = num + 1
num = num + 1
print(num)
Output:

Answers

Answer:

It should be 6

The code below is repetitious. What is the output of this program?num = 3num = num + 1num = num + 1num

Answer:

6

Explanation:

Edge 2021

The code below is repetitious. What is the output of this program?num = 3num = num + 1num = num + 1num

Which type of Internet services uses wires similar to telephones?
A.Cable.
B.Fiber-optic.
C.DSL.
D.Satellite.

Answers

The type of Internet service which uses wires similar to telephones is: C. DSL.

What is communication?

Communication can be defined as a strategic process which involves the transfer of information (messages) from one person (sender) to another (recipient or receiver), especially through the use of semiotics, symbols, signs and network channel such as DSL.

What is DSL?

DSL is an abbreviation for Digital Subscriber Line and it can be defined as a type of Internet service which is designed and developed to make use of a two-wire copper telephone line.

In this context, we can reasonably infer and logically deduce that Digital Subscriber Line (DSL) make use of wires just like telephones.

Read more on DSL here: https://brainly.com/question/14599737

#SPJ1

Sir Tim Berners-Lee wrote the three fundamentals for the Web. What are these three fundamentals? Choose the answer. OO HTMT, IP, URL (or URI) HTML, HTTP, URR HTTP, HTML, IP HTML, HTTP, URL (or URI)​

Answers

Answer:

HTML, HTTP, and URI/URI

Explanation:

In 1990, Berners-Lee developed three fundamental technologies: HTML, HTTP, and URI/URL; which remain the core of the web as we know it today.

Hope it helped! :)

can somebody help me with this?

can somebody help me with this?

Answers

Answer:

56 mate

Explanation:

work

Write a loop that subtracts 1 from each element in lowerScores. If the element was already 0 or negative, assign 0 to the element. Ex: lowerScores = {5, 0, 2, -3} becomes {4, 0, 1, 0}.Sample program:#include using namespace std;int main() { const int SCORES_SIZE = 4; vector lowerScores(SCORES_SIZE); int i = 0; lowerScores.at(0) = 5; lowerScores.at(1) = 0; lowerScores.at(2) = 2; lowerScores.at(3) = -3; for (i = 0; i < SCORES_SIZE; ++i) { cout << lowerScores.at(i) << " "; } cout << endl; return 0;}Below, do not type an entire program. Only type the portion indicated by the above instructions (and if a sample program is shown above, only type the portion.)

Answers

Answer:

Replace <STUDENT CODE> with

for (i = 0; i < SCORES_SIZE; ++i) {

       if(lowerScores.at(i)<=0){

           lowerScores.at(i) = 0;

       }

       else{

           lowerScores.at(i) = lowerScores.at(i) - 1;

       }  

   }

Explanation:

To do this, we simply iterate through the vector.

For each item in the vector, we run a check if it is less than 1 (i.e. 0 or negative).

If yes, the vector item is set to 0

If otherwise, 1 is subtracted from that vector item

This line iterates through the vector

for (i = 0; i < SCORES_SIZE; ++i) {

This checks if vector item is less than 1

       if(lowerScores.at(i)<1){

If yes, the vector item is set to 0

           lowerScores.at(i) = 0;

       }

       else{

If otherwise, 1 is subtracted from the vector item

           lowerScores.at(i) = lowerScores.at(i) - 1;

       }  

   }

Also, include the following at the beginning of the program:

#include <vector>

SOMEONE PLEASE HELP

I need to draw a stickfigure riding a skateboard in python

Answers

Answer:

Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.

```

import turtle

# Set up the screen

win = turtle.Screen()

win.bgcolor("white")

# Create a turtle to draw the skateboard

skateboard = turtle.Turtle()

skateboard.color("black")

# Draw the skateboard

skateboard.penup()

skateboard.goto(-50, -30)

skateboard.pendown()

skateboard.forward(100)

skateboard.right(90)

skateboard.forward(10)

skateboard.right(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(60)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

# Create a turtle to draw the stick figure

stickfigure = turtle.Turtle()

stickfigure.color("black")

# Draw the stick figure

stickfigure.penup()

stickfigure.goto(0, -20)

stickfigure.pendown()

stickfigure.circle(20)  # Head

stickfigure.right(90)

stickfigure.forward(60)  # Body

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(45)

stickfigure.forward(30)  # Left arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(90)

stickfigure.forward(30)  # Right arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.right(45)

stickfigure.forward(30)

stickfigure.right(30)

stickfigure.forward(30)  # Left leg

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(60)

stickfigure.forward(30)  # Right leg

turtle.done()

```

This Python script first draws a rough representation of a skateboard, then a stick figure standing on it. The stick figure consists of a circular head, a straight body, two arms, and two legs. Please note that this is a very simple representation, and the proportions might not be perfect. The `turtle` module allows for much more complex and proportional drawings if you need them.

Answer:

Answer:

Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.

```

import turtle

# Set up the screen

win = turtle.Screen()

win.bgcolor("white")

# Create a turtle to draw the skateboard

skateboard = turtle.Turtle()

skateboard.color("black")

# Draw the skateboard

skateboard.penup()

skateboard.goto(-50, -30)

skateboard.pendown()

skateboard.forward(100)

skateboard.right(90)

skateboard.forward(10)

skateboard.right(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(60)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

# Create a turtle to draw the stick figure

stickfigure = turtle.Turtle()

stickfigure.color("black")

# Draw the stick figure

stickfigure.penup()

stickfigure.goto(0, -20)

stickfigure.pendown()

stickfigure.circle(20)  # Head

stickfigure.right(90)

stickfigure.forward(60)  # Body

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(45)

stickfigure.forward(30)  # Left arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(90)

stickfigure.forward(30)  # Right arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.right(45)

stickfigure.forward(30)

stickfigure.right(30)

stickfigure.forward(30)  # Left leg

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(60)

stickfigure.forward(30)  # Right leg

Explanation:

Which of the following rights is NOT guaranteed by copyright?
Right to avoid criticism
Right to make derivatives
Right to reproduce a work
Right to sell, rent, or lend
Mark this question for review

Answers

Answer:

A. Right to avoid criticism

Explanation:

Patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.

Generally, patents are used on innovation for products that are manufactured through the application of various technologies.

Basically, the three (3) main ways to protect an intellectual property is to employ the use of

I. Trademarks.

II. Patents.

III. Copyright.

Copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.

Hence, the right that is not guaranteed by copyright laws is the right to avoid criticism because as an author or writer your literary work is subject to criticism from the readers and by extension the general public.

In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.

Answers

Answer: Excel Average functions

Explanation: it gets the work done.

Answer:

excel average

Explanation:

Other Questions
A line passes through the points in this table.x y7 411 915 1419 19What is the slope of the line?Write your answer as an integer or simplified fraction. in a random sample of fourteen people, the mean time at lunch was 35.6 minutes with a standard deviation of 8.2 minutes. assuming the data are normally distributed, what would be the 85% confidence interval? group of answer choices (30.87, 40.33) (32.45, 38.75) (32.25, 38.95) (32.33, 38.87) Complete the squareto find the vertexof this parabola.2X -- 4 y-12 x+68=0([?], [ ]PLEASE HELP ASAP If an organism required stable water temperatures and extreme pressure in order to survive, what zones would it most likely be found in, and why? Epipelagic and Abyssopelagic zones, because they are deeper than 1,000 meters and have consistent temperatures near freezing Epipelagic and Bathypelagic zones, because they are shallower than 1,000 meters and have consistent warm temperatures Abyssopelagic and Bathypelagic zones, because they are deeper than 1,000 meters and have stable temperatures near freezing Mesopelagic and Bathypelagic zones, because they are shallower than 1,000 meters and have consistent warm temperatures Which bar diagram represents the equation 5x + 7.5 = 15? A bar diagram. The top box contains 5 x. The bottom boxes contain 7.5 and 15. A bar diagram. The top box contains 7.5. The bottom boxes contain 5 x and 15. A bar diagram. The top box contains 15. The bottom boxes contain 5 x and 7.5. A bar diagram. The top box contains 5. The bottom boxes contain 7.5 x and 15. A student rolls a ball at different speeds to try moving a box of sand. what is m 5. Explain why was acetone used as a blank for the chlorophyll absorption spectrum? 6. Explain how the intensity of light affects the rate of photosynthesis? Cellular Respiration 1. Know the chemical reactions for cellular respiration and fermentation 2. Perform the calculation to determine hourly rate of CO2production. 3. In the yeast fermentation lab, glucose and galactose are monosaccharides with the chemical formula CH 206. Why do you suppose there was a difference in CO2 production? 4. What molecule is split in the fermentation reaction that produces CO,? Suppose M is the midpoint of FG. Find the missing measure FM = 3x - 4, MG = 5x - 26 Scientists in the field of social neuroscience are MOST LIKELY to study which of the following factors?PsychoanalysisMother-infant attachmentThe brainHormonesMaternity leave Ab KahaDusre KeDukhSeDukhi Hone Walewhole summary in hindi!will be awarded brainliest answer if answered so! I need help ASAP!!! I don't understand how to do this please show the work too Why are the delegated powers similar to enumerated powers? The Constitution lists them specifically and assigns them to state governments. The Constitution lists them specifically and assigns them to a particular branch. The Constitution does not list them but protects them through the amendments. The Constitution does not list them but protects them through reserved powers. what is the product of the following rreactioni, and explain the mechanism of why the major product is what it is can side products be made? The centerpiece of lyndon b. johnsons great society programs and policies was:_________ if a dhcp server does not respond to a client's first renewal request, how long will the client keep its current address until initiating the next lease renewal request? The membrane that covers the lung surface is the:a. parietal pleura.b. visceral pleura.c. mediastinum.d. intrapleural cavity. Why 6:4 and 18:8 are not equivalent ratios? In 6060 seconds, Darrell walks 9090 meters. Select the two answers that describe the unit rate at which he walks. 1. 51. 5 seconds per meter1. 51. 5 meters per second 9090 meters per second112112 meters every second3030 meters every second3030 seconds per meter Router sockets for wire and optical fiber cords are called ________. Router sockets for wire and optical fiber cords are called ________. interfaces ports sockets plugs