__________ provide a means of adapting rbac to the specifics of administrative and security policies in an organization.

Answers

Answer 1

Extensions provide a means of adapting RBAC (Role-Based Access Control) to the specifics of administrative and security policies in an organization.

RBAC is a widely used access control model that manages user permissions based on roles. However, every organization may have its unique administrative and security policies that need to be accommodated within the RBAC framework. This is where extensions come into play. Extensions are additional features or modifications that can be added to the core RBAC model to tailor it to the specific needs and requirements of an organization.

These extensions could include custom rules, additional attributes, or specialized functions that align with the organization's administrative and security policies. By utilizing extensions, RBAC can be customized and adapted to effectively address the unique policies and requirements of an organization. Therefore, extensions provide a means of adapting RBAC to the specifics of administrative and security policies in an organization.

You can learn more about access control model at

https://brainly.com/question/29024108

#SPJ11


Related Questions

Complete a short written response to the following questions:


1. Identify two real-world examples of problems whose solutions do scale well.


2. Identify two real-world examples of problems whose solutions do not scale well.


3. Identify one problem that is so complex that there is no computational solution to feasibly solve the problem in a reasonable amount of time

Answers

Two real-world examples of problems whose solutions do scale well are:Search engines: Search engines like are able to return relevant results for queries on the internet quickly, even when dealing with massive amounts of data.

These companies have developed scalable algorithms and distributed systems to index and search billions of web pages efficiently.E-commerce: Online retailers like and have developed scalable platforms that can handle large volumes of traffic and transactions. These companies use distributed systems, load balancing, and caching to ensure that their websites remain responsive and available even during peak traffic times.Two real-world examples of problems whose solutions do not scale well are:Database joins: When working with large datasets, performing joins between tables in a database can become a bottleneck. As the number of records in the tables grows, the time required to perform the join can increase dramatically, making it difficult to retrieve the desired data in a reasonable amount of time.Rendering 3D graphics:

To learn more about Search engines click the link below:

brainly.com/question/15850530

#SPJ4

which is a requirement for an acceptance

Answers

ALL OF THE ABOVEEEEE

In which of the following stages of the development process is a team MOST likely to interview a potential user of an app?
A. investigating and reflecting
B. designing
C. prototyping
D. testing

Answers

Answer:

i think it’s A

Explanation:

Answer:

It's A

Explanation:

I'm stuck on this part, "Using the PivotTable on the
NorthAmericanSalesByPlatform worksheet, create a drill-down of the
DS sales and rename the worksheet created NorthAmericanSalesDS."
What do I do?

Answers

To complete the task, use the PivotTable on the "NorthAmericanSalesByPlatform" worksheet, filter for DS sales, create a drill-down view, and rename as "NorthAmericanSalesDS."

To complete the task, follow these steps:

Open the "NorthAmericanSalesByPlatform" worksheet in your spreadsheet application.

Locate the PivotTable in the worksheet. It may be in a separate area or embedded within the worksheet.

Use the PivotTable to filter the data and focus only on DS sales. This can typically be done by selecting the appropriate category or field related to DS sales in the PivotTable.

Once you have filtered the data to show only DS sales, right-click on the PivotTable and choose the "Drill Down" option. This will create a new worksheet with a detailed view of the DS sales data.

Rename the newly created worksheet as "NorthAmericanSalesDS." You can usually do this by right-clicking on the worksheet tab and selecting the "Rename" option.

Verify that the new worksheet contains the drill-down of DS sales data.

By following these steps, you should be able to create a drill-down of DS sales and rename the worksheet as "NorthAmericanSalesDS" as instructed.

Learn more about PivotTable here:

https://brainly.com/question/29786913

#SPJ11

Which of the following is an advantage of computer usage? *
1 point
(A) Cost
(B) Integrity
(C) Flexibility
(D) Reliability​

Answers

Reliability because u can do “any” sufficient on a computer if u know how to do it

Jorge wanted to find out how many 9-volt batteries connected in a series are required to create a 120-volt circuit. So, he divided 120 by 9 and concluded that he needed 13 1/3. Write a sentence explaining Jorge's mistake, and tell the correct answer.

Answers

Answer:

Jorge needed to have over 13 (thirteen) 9 volt batteries to create 120 volts.

Explanation:

Rather than saying he just needs 13 1/3 (one-quarter) 9 volt batteries, Jorge would have correctly concluded he needed over over 13 number of 9 volts battery to create 120 volts.

This is the case because in a series connection, two or more batteries are connected in a way that the same current would flow through each battery through their terminal. If he had taken note of the fact that each battery has an internal resistance, which may reduce the flow of current through the batteries Jorge would know that the  13 number of 9 volts batteries would not give exactly 120 volts because of the internal resistance of the battery circuit.

which method is used to convert a binary number to a decimal number
a. Division
b. Multiplication
c. Addition
d. Subraction

Answers

Answer:

Multiplication

Explanation:

Answer:positional notation

Explanation:

I NEED HELP WITH MY HOMEWORK! PLEASE!! It's Cybersecurity though... 50 POINTS... because that's the most I can give

I NEED HELP WITH MY HOMEWORK! PLEASE!! It's Cybersecurity though... 50 POINTS... because that's the most
I NEED HELP WITH MY HOMEWORK! PLEASE!! It's Cybersecurity though... 50 POINTS... because that's the most
I NEED HELP WITH MY HOMEWORK! PLEASE!! It's Cybersecurity though... 50 POINTS... because that's the most
I NEED HELP WITH MY HOMEWORK! PLEASE!! It's Cybersecurity though... 50 POINTS... because that's the most

Answers

Answer:

Search the answer.

Explanation:

What is the purpose of a Post Mortem Review? (5 points)

Answers

Answer:

The interpretation of the discussion is characterized throughout the explanation portion below.

Explanation:

A post-mortem investigation, as well widely recognized as the autopsy, has become a post-mortem assessment of that same body. This same goal of some kind of post-mortem should be to investigate what happened. Post-mortems have been performed by pathologists (Physicians specializing in considering the mechanisms as well as tends to cause including its illness).

Write a program that outputs a subtraction practice problem for a student, outputting the larger random number
first and the smaller random number second.

this is in C++ and i cant figure it out

Answers

Answer:

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

int main(void)

{

   srand(time(NULL));

   int num1, num2;

   int val;

   while (true)

   {

       num1 = rand() % 100 + 1; //Random number between 1-100

       num2 = rand() % 100 + 1; //Random number between 1-100

       if (num1 >= num2)

       {

           printf("%d - %d = ", num1, num2);

           scanf("%d",&val);

           if (val == num1-num2)

           {

               printf("Correct!\n");

           }

           else

           {

               printf("Incorrect!\n");

           }    

       }

       else

       {

           printf("%d - %d = ", num2, num1);

           scanf("%d",&val);

           if (val == num2-num1)

           {

               printf("Correct!\n");

           }

           else

           {

               printf("Incorrect!\n");

           }

       }    

   }

}

Explanation:

First, we create two random numbers and save the values.  Then we check to see which value is larger.  Based on that, we change how we display the format to the user.  Then we check to see if the user input number is equivalent to the subtraction problem.  If it is, we display Correct!  Else, we display Incorrect!

Cheers.

Jonas is creating a presentation for students about volunteering. He wants to begin by speaking about the various opportunities available, but he also wants to use multimedia to engage the students.

Which is the most appropriate media resource for Jonas to use?
1 a chart listing the volunteering opportunities and their benefits
2 a video in which students talk about volunteer experiences
3 a speech from the principal about volunteering
4 a timeline showing the history of volunteering

Answers

2 would probably be the best because there would probably be more questions asked when a video is on

Why Cpu reffered to us the brain of the Computers?​

Answers

The cpu dose that all the time lol me trying to make this answer long enough

what are the advantages of hybrid computer

Answers

The advantages of hybrid computers are:

They have a large amount of computing speed speed that is often helped by the all-parallel configuration made by the analog subsystem. It is very useful in terms of numerical solutions for any work of differential equations and also in flight simulation.

What is an advantage of hybrid computing?

Hybrid cloud computing is known to be one that gives businesses a lot of control over their data and it is one that have a good or better security as it tends to lower the risk of exposure of data.

Note that,The advantages of hybrid computers are:

They have a large amount of computing speed speed that is often helped by the all-parallel configuration made by the analog subsystem. It is very useful in terms of numerical solutions for any work of differential equations and also in flight simulation.

Learn more about hybrid computing from

https://brainly.com/question/21474132

#SPJ1

What is the use of comma and semicolon with print statement ?​

Answers

Answer:

The use of a comma and semicolon with print statement tells the computer that the program or specific line is ending.

Explanation:

So for example, with a python program if you write print("Hello, World"); the semicolon tells the computer that, that command ends at the semicolon.

Wendy had been searching the internet for a great deal on jewelry. While looking at one site, a pop-up was displayed that told her she had just been chosen as the winner of a nice prize. Being excited to win, Wendy clicked on the link provided to claim her prize. The next day, when Wendy tried to turn on her computer, her computer displayed the Blue Screen of Death (BSOD). After interviewing Wendy, you suspect that the pop-up she clicked on installed some malicious software that has caused her computer to lock up. Which of the following is the BEST place to begin repairing Wendy's computer?
A. Boot the computer from the Windows installation disc and run Startup Repair.
B.Boot the computer from the Windows installation disc and perform a clean installation of Windows.
C.Boot the computer from the Windows installation disc and run Reset this PC.
D.Boot the computer from the Windows installation disc and run System Restore.

Answers

Answer:

C.Boot the computer from the Windows installation disc and run Reset this PC

Hold down the shift key continuously until the Advanced Recovery Options menu appears. To troubleshoot, click. Click Reset this PC after that. Choose whether to perform a clean install and remove everything, or to keep your files. Thus, option C is correct.

What Windows installation disc and run Reset this PC?

From the menu, choose Settings > Update & Security > Recovery. The title of the page should say “Reset this PC.” Next, click Get Started. Choose between removing everything or keeping my files.

In Windows 10, launch the Settings window by clicking the Start menu, then selecting the gear icon in the lower left corner. Another choice from the list of apps is the Settings app. Click Update & Security > Recovery in Settings, then decide Get started under reboot this PC.

Therefore, Boot the computer from the Windows installation disc and run Reset this PC.

Learn more about Windows installation here:

https://brainly.com/question/24282472

#SPJ5

what is the output of the following JAVA code? int x=3, y = 10; switch(y%3) case 0: case 1: X += 5; case 2: X+= 3; break; case 3: X+ = 10; default: X+ = 2; } System.out.println(x);* 15 11 5 3 00

Answers

The output of this corrected code will be 11.

The given Java code has a syntax error and will not compile. There are multiple issues with the code:

The variable names are inconsistent. It should be x instead of X.

The increment operator += has spaces in between, which is incorrect. It should be +=.

The switch statement is missing a opening brace { after switch(y%3).

The cases inside the switch statement are missing a colon : after each case.

The closing brace } after default: X += 2; is missing.

Here's the corrected version of the code:

public class Main {

   public static void main(String[] args) {

       int x = 3, y = 10;

       

       switch (y % 3) {

           case 0:

           case 1:

               x += 5;

           case 2:

               x += 3;

               break;

           case 3:

               x += 10;

           default:

               x += 2;

       }

       

       System.out.println(x);

   }

}

Learn more about Java code click;

https://brainly.com/question/31569985

#SPJ4

which type of loop repeats as long as its loop condition remains true?

Answers

The type of loop that repeats as long as its loop condition remains true is called a "while loop".

In a while loop, the code block within the loop is executed repeatedly as long as the loop condition is true. The loop condition is a Boolean expression that is checked before each iteration of the loop. If the condition is true, the loop continues to execute, but if the condition is false, the loop stops and the program continues with the code after the loop.
While loops are useful when you want to repeat a block of code an unknown number of times until a specific condition is met. They are also helpful when you want to process a collection of items or perform a repetitive task until a certain condition is satisfied. However, you need to be careful when using while loops to avoid creating infinite loops that can cause your program to crash.

Learn more about while loop here:

https://brainly.com/question/30883208

#SPJ11

Sistema binario, realizar el pasaje de binario a decimal; 00110011 11101100 11100001 11001100 10010101 11001111 10000001 10001100 11111111 01111110 11110101 00101000 11111100 00000011 00001111 11100000 11000011 10000000 11111000 00111100

Answers

Explanation:

MULTIPLY EACH OF THE NUMBER WITH 2 THEN RAISE TO THE POWER OF THE NUMBER'S POSITION

EXAMPLE: 1 X 2'5

7. licenses show people how content creators would like their work to be used.
o a. intellectual property
o b. phishing
o c. spamming
o d. creative commons

Answers

Intellectual property licences outline the intended uses of content providers' creations.

Which licences make it clear how the creators of content want their work to be used?

Everyone, from small businesses to major institutions, now has a standardised approach to offer the public permission to use their creative works in accordance with copyright laws thanks to Creative Commons licences.

Which kind of licence enables content producers to allow for the reuse of their work while maintaining their copyright?

By giving specific permissions to others to share, utilise, and/or build upon their creative works, Creative Commons copyright licences enable authors to maintain their ownership of their intellectual property. Creators assign them to their own works. The purpose of CC licences is to allow for the adaptation, sharing, and reuse of educational resources.

To know more about content visit:-

https://brainly.com/question/28589374

#SPJ1

patulong po need na po ngayon 20 pts po ibibigay ko thanks​

patulong po need na po ngayon 20 pts po ibibigay ko thanks

Answers

4 this is really all you need to hear it’s very not compliant EE I hope this helpped and the bro above is not a hot tutor at all!

_______ reality allows physical and virtual elements to interact with one another in an environment; it is not a fully immersive experience because it maintains connections to the real world.

Answers

Answer:

Mixed Reality

Explanation:

WILL GIVE BRAINLIEST AND 30 POINTS!! NEED ASAP!!!!

1.Compare and contrast the game mechanics that would be needed in two different game genres. For example, how would the game mechanics for an adventure game be similar/different from a trivia game? You may choose any two genres to compare/contrast; give specific examples of what game mechanics would be similar and which would be different.

2.Imagine that you have been asked to write one to two sentences describing the purpose of an action game and of a trivia game. Write the purpose for each game. Then explain whether the purpose of each game was heavily dependent on the game genre or not.

3.What are some of the benefits and drawbacks for each of the player states? Are there any genres of games that require one player state over another? Why? Explain.

4.How does a game’s genre impact the gameplay style? Do certain genres require specific gameplay styles? Evaluate and explain the impact the genre has on gameplay style and provide specific examples to support your answer.

5.What are the main differences between the user interface and the user experience? How are they dependent on each other?

Answers

The comparison of the game mechanics of an adventure game and for a trivia game is:

The adventure game would have more character progression, the trivia game would have little to none.The adventure game would have puzzle solving, a trivia game would have that as well.

The purposes of an adventure game are:

To mentally stimulate the player.To solve problems as the game progresses.To start, explore and finish a mission.

The purposes of a trivia game are:

To perform a task.To give answers to challenging questions and problemsTo mentally stimulate the player.

Some of the drawbacks for an adventure game player are:

It might be too difficult and he gives up.He can spend too much time playing.

Some of the benefits for an adventure game player are:

It would help him able to perform tasks both in game and outside the game.It is a fun way to catch fun.

Some of the drawbacks for a trivia game player are:

It can get boring after a while.There are no adrenaline stimulating action like adventure games.

Some of the benefits for a trivia game player are:

It can help the player solve some complex problems.It can be played among friends and can be a great source of learning.

The way in which a game’s genre impact the gameplay style is:

The more engaging and fast paced the game is, the more engrossed and action packed it is and vice versa.

What are Game Mechanics?

This refers to the rules which are in charge of a game player's actions in a given game scenario and the response of the game to these actions.

Read more about game mechanics here:
https://brainly.com/question/13175528

Adnan is creating a presentation about engineers using geometric shapes in bridge construction. he wants to insert an illustration of a bridge saved in a folder on his computer. how can he access the folder using the images command group? after choosing the illustration he wants to add, which button should he click?

Answers

Adnan can easily access the folder on his computer where the illustration of the bridge is saved by following a few simple steps using the images command group.

Firstly, he needs to open the presentation in which he wants to add the illustration. Then, he should navigate to the slide where he wants to add the image and click on the "Insert" tab in the PowerPoint ribbon. Under the "Images" command group, he should click on the "Pictures" button to open the "Insert Picture" dialog box. From there, he should browse and select the folder where the illustration of the bridge is saved. Once he finds the image, he should click on it to select it and then click on the "Insert" button at the bottom right of the dialog box. This will insert the image of the bridge onto the slide. Adnan can then resize and position the image as per his requirement.

To know more about command group visit :

https://brainly.com/question/29418698

#SPJ11

A bicycle sharing company is developing a multi-tier architecture to track the location of its bicycles during peak operating hours. The company wants to use these data points in its existing analytics platform. A solutions architect must determine the most viable multi-tier option to support this architecture. The data points must be accessible from the REST API.


Which action meets these requirements for storing and retrieving location data?


a. Use Amazon Athena with Amazon S3.

b. Use Amazon API Gateway with AWS Lambda.

c. Use Amazon QuickSight with Amazon Redshift.

d. Use Amazon API Gateway with Amazon Kinesis Data Analytics.

Answers

Answer:

d use Amazon API Gateway with Amazon kinesis...

You may quickly write SQL code for Amazon Kinesis Data Analytics that continually reads, processes, and stores data in almost real time. You can create applications that convert and offer insights into your data by using conventional SQL queries on the streaming data. Thus, option D is correct.

What requirements for storing and retrieving location data?

By adding either a single data record or a list of data records, an Amazon API Gateway REST API functions as a proxy for Amazon Kinesis Data Streams. The ability to call REST API calls is restricted using an Amazon Cognito user pool. To store the incoming streaming data, use Kinesis Data Streams.

Therefore, Users can now simply transmit API access logs to Amazon Kinesis Data Fire hose thanks to Amazon API Gateway's support for the serviceUtilize Amazon API Gateway in conjunction with Amazon Kinesis Data Analytics.

Learn more about data here:

https://brainly.com/question/29803944

#SPJ2

which types of apps are not supported by a 64-bit edition of windows 10? (choose all that apply.) a. dos b. win32 c. win64 d. .net framework e. win16

Answers

The types of apps that are not supported by a 64-bit edition of Windows 10 are:

Win16 (Option E)DOS (Option A)

What is special about the Windows 64 Bit edition?

The ability to access RAM over the 4-GB limit and better security measures are the key benefits of running a 64-bit version of Windows. Access to extra RAM allows for more efficiency while administering processes, which enhances OS performance.

The system can execute more computations per second when using a 64-bit operating system and a 64-bit processor. As a result, it boosts computing power and speeds up a computer. This is restricted in the case of 32-bit operating systems.

Learn more about Windows:
https://brainly.com/question/28245370

#SPJ1

The most commonly used string counting function is the ____ function, which returns the total number of characters in a string.

Answers

Answer:

strlen()

Explanation:

The most commonly used string-counting function is the ______________ function, which returns the total number of characters in a string.

✓ strlen()

Examples of vector graphics include Select all that apply. A. logos B. blueprints C. photos D typefaces

Answers

Examples of vector graphics include A. logos and B. blueprints. Vector graphics are created using mathematical equations and can be scaled up or down without losing their quality. Logos and blueprints are often created as vector graphics because they need to be precise and scalable.

Photos and D. typefaces, on the other hand, are not examples of vector graphics. Photos are raster images, which are made up of pixels, and cannot be scaled up without losing quality. Typefaces, while they can be created as vector graphics, are typically used as raster images in digital media and print. In summary, the examples of vector graphics include logos and blueprints.

examples of vector graphics include: Logos, Blueprints, By configuring the settings, users can set restrictions on who can access certain files or applications, which devices can connect to the computer, and what actions can be performed on the computer. By implementing the security policies, users can increase the overall security of their computer and prevent potential security breaches. True. The Task Scheduler is a tool in Windows operating systems that allows users to automate tasks on their computer. Users can schedule tasks to run at specific times or intervals, start programs or scripts, and stop services. The Task Scheduler can help users save time and improve productivity by automating repetitive tasks. Additionally, users can also use the Task Scheduler to perform maintenance tasks such as system backups or updates. Overall, the Task Scheduler is a useful tool that can help users streamline their workflow and improve the efficiency of their computer.faces Vector graphics are commonly used for these types of designs because they can be easily resized without losing quality. Photos (C) are not vector graphics, as they are raster images composed of pixels.

To know more about graphics visit:

https://brainly.com/question/14191900

#SPJ11

What are the two most common input and output devices?

Answers

Answer:

Keyboard and mouse are the most common input devices.

Monitor and the printer are the common output devices.

3. How are you able to create photographs differently than 100 years ago?

Answers

Answer:

it willbe black and white

Explanation:

Answer:

Yes, of course!

Explanation:

Digital Cameras can create photographs very different than 100 years ago, which means the answer is yes.

P16 Consider the following network. ISP B provides national backbone service to regional ISP A. ISP C provides national backbone service to regional ISP D. Each ISP consists of one AS. B and C peer with each other in two places using BGP. Consider traffic going from A to D. B would prefer to hand that traffic over to C on the West Coast (so that C would have to absorb the cost of carrying the traffic cross-country), while C would prefer to get the traffic via its East Coast peering point with B (so that B would have carried the traffic across the country). What BGP mechanism might C use, so that B would hand over A-to-D traffic at its East Coast peering point?

Answers

Solution :

Considering the following data :

\($\text{ISP B}$\) provides the national backbone to the regional \($\text{ISP A}$\).

\($\text{ISP C}$\) provides the national backbone to the regional \($\text{ISP D}$\).

Each of the ISP consists of one autonomous systems (AS).

\($\text{ISP B}$\) would like to hand over the traffic of C through the \($\text{West}$\) Coast.

The \($\text{ISP C}$\) would like to receive traffic from B's peering point via East Coast.

One way for \($C$\) to force \($B$\) to hand over all of \($B$\)’s traffic to \($D$\) on the east coast is for \($C$\) to  only advertise its route to \($D$\) via its east coast peering point with \($C$\).

Other Questions
the four-year-old still needs a rest period. true false what can be configured to allow secure remote connections to web applications without requiring a vpn? read the following passage. then answer the question that follows. the students were hard at work on their group project. thanh, the group leader, was making sure they had all their ducks in a row as they prepared for the big presentation. which device of figurative language does the text in bold use? hyperbole idiom personification simile find the measure of angle y how should researchers and irbs assess and address risk of harm during the planning, conduct, and review of cenr? Mitochondria create proteins used to build many things in the body. true or false? Divide-53.72-6Please please help the nurse notices while holding a 1-day-old infant upright that the baby has a significantly indented anterior fontanel (fontanelle). she immediately brings it to the attention of the health care provider. what does this finding indicate? solve the equation by using the quadratic formula. x^2+2x=6 What is the solution to the equation 1/x =x+3/2x^2?Ox=-3Ox= -3 and x = 0O x = 0 and x = 3O x = 3 PA10-3 Evaluating Managerial Performance, Proposed Project Impact on Return on Investment, Residual Income [LO 10-4, 10-5]. Wescott Company has three divisions: A, B, and C. The company has a hurdle rate of 8 percent. Selected operating data for the three divisions are as follows:Division A Division B Division CSales revenue $ 1,255,000 $ 920,000 $ 898,000Cost of goods sold 776,000 675,000 652,000Miscellaneous operating expenses 64,000 52,000 53,100Interest and taxes 48,000 41,000 41,500Average invested assets 8,300,000 1,930,000 3,215,000. Wescott is considering an expansion project in the upcoming year that will cost $5 million and return $450,000 per year. The project would be implemented by only one of the three divisions.Required:1. Compute the ROI for each division. (Do not round your intermediate calculations.)2. Compute the residual income for each division. (Loss amounts should be indicated by a minus sign.)3.Rank the divisions according to the ROI and residual income of each.4-a. Compute the return on the proposed expansion project.4-b. Is this an acceptable project? No Yes5.Without any additional calculations, state whether the proposed project would increase or decrease each divisions ROI and state whether the division manager would accept or reject the proposed project.6. Compute the new ROI and residual income for each division if the project was implemented within that division. (Loss amounts should be indicated by a minus sign. Do not round your intermediate calculations. Round "ROI" answers to 2 decimal places. What is a current concern regarding the advancement of quantum computing The sounds waves have noA. Frequency of waveB . EnergyC. NodesD. Intensity What is the average time to read or write a 512-byte sector for a typical disk rotating at 15,000 RPM? The advertised average seek time is 4ms, the transfer rate is 100 MB/sec, and the controller overhead is 0.2ms. Assume that the disk is idle so that there is no waiting time.512B sector, 15,000rpm, 4ms average seek time, 100MB/s transfer rate, 0.2ms controller overhead, idle disk Which of the following is an equation of a line perpendicular to the equationy - 3x +1?O A = - 3x + 5B. y --3x+5O C. y -3x5O D. y = x+5 Choose the best combination of prepositions to complete the sentence.Moi, je suis (from) Paris mais maintenant, j'habite ____Lille. Janelle deposits 1300 in an account earning 8% interest how much money does she have after 6 years round to the nearest penny solve for compound quarterly compound monthly and compound continuously Which part of a vertebra is known as the centrum?. 4/6:1/3 as a unit rate Why do our months range in days from 28-31?