1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
schepotkina [342]
3 years ago
14

Deidre has just moved from the sales department into the finance department. On her first day in her new role, she receives an e

-mail with a list of systems that she should become familiar with. She tries to access the first system on the list and gets an access denied error message. Which of the following is the most likely reason why?
a. The certificate associated with her account has expired.
b. Her user account's password coincidentally has expired.
c. Her account has been locked due to too many failed login attempts.
d. The company uses role-based access control and her user account hasn't been migrated into the correct group(s) yet.
Engineering
1 answer:
melisa1 [442]3 years ago
3 0

Answer:

 d. The company uses role-based access control and her user account hasn't been migrated into the correct group(s) yet

Explanation:

Since Deidre is accessing her e-mail there appears to be nothing wrong with her account or password. Since her role is new, most likely the problem is associated with her new role.

You might be interested in
Suppose you have a 9.00 V battery, a 2.00 μF capacitor, and a 7.40 μF capacitor. (a) Find the charge and energy stored if the ca
Andru [333]

Answer:

Q=1.575*10^-6*9=1.42*10^-5C\\\\U_{c} =\frac{1}{2}*9^{2} *1.575*10^-6=6.38*10^-5J

Q=9.4*10^-6*9=8.46*10^-5C\\\\U_{c} =\frac{1}{2}*9^{2} *9.4*10^-6=3.81*10^-4J

Explanation:

<u>a)</u>

<u>Identify the unknown:  </u>

The charge and energy stored if the capacitors are connected in series  

<u>List the Knowns: </u>

Capacitance of the first capacitor: C_{1}= 2цF = 2 x 10-6 F

Capacitance of the second capacitor C_{2}= 7.4цF  = 7.4 x 10-6 F

Voltage of battery: V = 9 V  

<u>Set Up the Problem:   </u>

Capacitance of a series combination:  

\frac{1}{C_{s} } =\frac{1}{C_{1} } +\frac{1}{C_{2} } +\frac{1}{C_{3} }+............

\frac{1}{C_{s} } =\frac{1}{2} +\frac{1}{ 7.4} \\C_{s} =\frac{2*7.4}{2+7.4}=1.575 *10^-6 F\\

Capacitance of a series combination is given by:

C_{s}=\frac{Q}{V}

Then the charge stored in the series combination is:  

Q=C_{s} V

Energy stored in the series combination is:  

U_{c}=\frac{1}{2}  V^{2} C_{s}

<u>Solve the Problem:  </u>

Q=1.575*10^-6*9=1.42*10^-5C\\\\U_{c} =\frac{1}{2}*9^{2} *1.575*10^-6=6.38*10^-5J

<u>b)</u>

<u>Identify the unknown:  </u>

The charge and energy stored if the capacitors are connected in parallel  

<u>Set Up the Problem:  </u>

Capacitance of a parallel combination:

C_{p} =C_{1} +C_{2} +C_{3}

C_{p} =2+7.4=9.4*10^-6F

Capacitance of a parallel combination is given by

C_{p} =\frac{Q}{V}

Then the charge stored in the parallel combination is

Q=C_{p} V

Energy stored in the parallel combination is:  

U_{c}=\frac{1}{2} V^2C_{p}

<u>Solve the Problem: </u><em>  </em>

Q=9.4*10^-6*9=8.46*10^-5C\\\\U_{c} =\frac{1}{2}*9^{2} *9.4*10^-6=3.81*10^-4J

5 0
3 years ago
Read 2 more answers
25 points and brainliest is it A, B, C, D
Bogdan [553]

Answer:

SIR IT IS D HOPE THIS HELPS (☞゚ヮ゚)☞☜(゚ヮ゚☜)

Explanation:

4 0
3 years ago
Read 2 more answers
Give two causes that can result in surface cracking on extruded products.
Andreas93 [3]

Answer:

1. High friction

2. High extrusion temperature

Explanation:

Surface cracking on extruded products are defects or breakage on the surface of the extruded parts. Such cracks are inter granular.

           Surface cracking defects arises from very high work piece temperature that develops cracks on the surface of the work piece. Surface cracking appears when the extrusion speed is very high, that results in high strain rates and generates heat.

          Other factors include very high friction that contributes to surface cracking an d chilling of the surface of high temperature billets.

6 0
3 years ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
If you measure 0.7 V across a diode, the diode is probably made of
tatuchka [14]

Answer:

Made of Silicon.

Explanation:

A diode is a semiconductor device use in mostly electronic appliances. It is two terminals device consisting of a P-N junction formed either in Germanium or silicon crystal.

Diode can be forward biased or reverse biased.

When a diode is forward biased and the applied voltage is increased from zero, hardly any current flows through the device in the beginning.

It is so because the external voltage is being opposed by the internal barrier voltage whose value is 0.7v for silicon and 0.3v for germanium.

If you measure 0.7 V across a diode, the diode is probably therefore made of Silicon.

6 0
3 years ago
Other questions:
  • What do humans breathe
    8·2 answers
  • A Canadian visitor says that we have a great day in Chattanooga because it's 30 degrees. What would the temperature be in Farenh
    15·1 answer
  • suppose a wheel with a 15 inch diameter is used to turn a water valve stem with a radius of .95 inches. What is the Mechanical a
    15·1 answer
  • A driver on a leveltwo-lane highway observes a
    6·1 answer
  • Given a series of numbers as input, add them up until the input is 10 and print the total. Do not add the final 10. For example,
    7·1 answer
  • The water behind Hoover Dam in Nevada is 221 m higher than the Colorado River below it. At what rate must water pass through the
    6·1 answer
  • Air at 300 K and 100 kPa steadily flows into a hair dryer having electrical work input of 1500 W. Because of the size of the air
    6·2 answers
  • Why are Gas cars Bad?(cons) give me reasons why gasoline cars are bad<br><br>Thx if u help ​
    14·1 answer
  • can someone please define these three vocabulary words for my stem class i will give brainliest if i can figure out how
    15·1 answer
  • Heyyyyyyyyy people wrud
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!