Illustrate why sally's slide meets or does not not meet professional expectations?

Answers

Answer 1
Your missing info to solve this

Related Questions

JavaFX application for the Sublime Sandwich Shop. The user can order sandwiches by using list boxes and the application displays the price. Each sandwich should allow a choice of at least three main ingredients (chicken, for example) at three different prices. The user should also be able to choose between three different bread types. Use CheckBoxes for additional ingredients - lettuce, tomato, etc.
Create an ArrayList to hold all of the sandwiches associated with an order. Display information about all the sandwiches that were ordered.

Answers

Answer:

package GUI;  

import java.awt.*;  

import java.awt.event.*;  

import javax.swing.*;

// Class SandwichShop definition

public class SandwichShop

{

// Creates a string array for sandwich ingredients  

String sandwichIngredients [] = {"Chicken", "Mutton", "Veg"};

// Creates a string array for bread types

String breadTypes[] = {"Bloomer", "Cob", "Plait"};

// Container object declared

JFrame jf;

JPanel p1, p2, p3, p4, mainP;

// Component object declared

JList ingredient, bread;

JLabel ingL, breadL, amountL;

JTextField amountT;

JButton amountB, exitB;

// Default constructor definition

SandwichShop()

{

// Creates frame

jf = new JFrame("Sandwich Shop");

// Creates panels

p1 = new JPanel();

p2 = new JPanel();

p3 = new JPanel();

p4 = new JPanel();

mainP = new JPanel();

// Creates list box and adds string array

ingredient = new JList<String>(sandwichIngredients);

bread = new JList<String>(breadTypes);

// Creates labels

ingL = new JLabel("Select Sandwich Ingredients");

breadL = new JLabel("Select Bread Types");

amountL = new JLabel("Amount: ");

// Creates text field

amountT = new JTextField(5);

// Creates buttons

amountB = new JButton("Check Amount");

exitB = new JButton("Exit");

// Adds components to panels

p1.add(ingL);

p1.add(ingredient);

p2.add(breadL);

p2.add(bread);

p3.add(amountL);

p3.add(amountT);

p4.add(amountB);

p4.add(exitB);

// Adds panels to main panel

mainP.add(p1);

mainP.add(p2);

mainP.add(p3);

mainP.add(p4);

// Set the main panel layout to 4 rows and 1 column

mainP.setLayout(new GridLayout(4, 1));

// Adds main panel to frame

jf.add(mainP);

// Sets the frame visible property to true

jf.setVisible(true);

// Set the size of the frame to width 400 and height 150

jf.setSize(400, 300);

// Registers action listener to exit button using anonymous class

exitB.addActionListener(new ActionListener()

{

// Overrides the actionPerformed() method

public void actionPerformed(ActionEvent ae)

{

System.exit(0);

}// End of method

});// End of anonymous class

// Registers action listener to amount button using anonymous class

amountB.addActionListener(new ActionListener()

{

// Overrides the actionPerformed() method

public void actionPerformed(ActionEvent ae)

{

// Extracts index of the selected item from the list box

int indexIngredient = ingredient.getSelectedIndex();

int indexBread = bread.getSelectedIndex();

// Checks if ingredient index is 0 and bread index is 0

// then set the amount 100 in text field

if(indexIngredient == 0 && indexBread == 0)

amountT.setText("100");

// Checks if ingredient index is 0 and bread index is 1

// then set the amount 120 in text field

if(indexIngredient == 0 && indexBread == 1)

amountT.setText("120");

// Checks if ingredient index is 0 and bread index is 2

// then set the amount 160 in text field

if(indexIngredient == 0 && indexBread == 2)

amountT.setText("160");

// Checks if ingredient index is 1 and bread index is 0

// then set the amount 190 in text field

if(indexIngredient == 1 && indexBread == 0)

amountT.setText("190");

// Checks if ingredient index is 1 and bread index is 1

// then set the amount 205 in text field

if(indexIngredient == 1 && indexBread == 1)

amountT.setText("205");

// Checks if ingredient index is 1 and bread index is 2

// then set the amount 210 in text field

if(indexIngredient == 1 && indexBread == 2)

amountT.setText("210");

// Checks if ingredient index is 2 and bread index is 0

// then set the amount 97 in text field

if(indexIngredient == 2 && indexBread == 0)

amountT.setText("97");

// Checks if ingredient index is 2 and bread index is 1

// then set the amount 85 in text field

if(indexIngredient == 2 && indexBread == 1)

amountT.setText("85");

// Checks if ingredient index is 2 and bread index is 2

// then set the amount 70 in text field

if(indexIngredient == 2 && indexBread == 2)

amountT.setText("70");

}// End of method

});// End of anonymous class

}// End of default constructor

// main function definition

public static void main(String[] args)

{

// Creates an anonymous object by calling default constructor

new SandwichShop();

}// End of main method

}// End of class

Output:

DESCRIBE THE GENERAL STRATEGY BEHIND DEALOCK PREVENTION AND GIVE A PRATICAL EXAMPLE

Answers

Answer:

........

Explanation:..........

Question No: 9 Of 50 Time Left : 59:18
ОА
QUESTION
Which of the following two entities (reading from Left to right) can be connected by the dot operator?
A class member and a class object.
A class object and a class,
A constructor and a member of that class.
OB
Ос
OD
A class object and a member of that class.

Answers

Answer:b

Explanation:

to get points

discribe two ways to zoom in and out from an image

Answers

Option 1: Spread your fingers on your laptop's trackpad.

Option 2: Press Command (or control) and the + sign.

Hope this helps!

Have a wonderful day!

An organization needs to integrate with a third-party cloud application. The organization has 15000 users and does not want to allow the cloud provider to query its LDAP authentication server directly. Which of the following is the BEST way for the organization to integrate with the cloud application?

a. Upload a separate list of users and passwords with a batch import.
b. Distribute hardware tokens to the users for authentication to the cloud
c. Implement SAML with the organization's server acting as the identity provider.
d. Configure a RADIUS federation between the organization and the cloud provider

Answers

Answer:

The BEST way for the organization to integrate with the cloud application is:

c. Implement SAML with the organization's server acting as the identity provider.

Explanation:

Implementing SAML (Security Assertion Markup Language) integrations will provide more security to the organization (identity provider) as users' credentials are exposed to fewer parties.  SAML authenticates the users to the cloud application provider.  SAML enables the organization to pass authorization credentials to the service provider by transferring the users' identities to the service provider.

Which term refers to the use of expressions to check consistency in relation to other fields in the same record?
O data validation
O record validation
O input mask
O validation text

Answers

This is the answer 3 due to the thought me

The  term validation text refers to the use of expressions to check consistency in relation to other fields in the same record.

What is the use of validation text?

The term Validation text is known to be one that helps a user to be able to have a message that can help them to be able to input data that is said to be not valid.

Conclusively, Validations rules is known to aid one in that one can check data for accuracy and consistency in terms of  data entry.

Learn more about Validation text from

https://brainly.com/question/12069810

#SPJ2

The advantage of returning a structure type from a function when compared to returning a fundamental type is that a. the function can return multiple values b. the function can return an object c. the function doesn’t need to include a return statement d. all of the above e. a and b only

Answers

Answer:

The advantage of returning a structure type from a function when compared to returning a fundamental type is that

e. a and b only.

Explanation:

One advantage of returning a structure type from a function vis-a-vis returning a fundamental type is that the function can return multiple values.  The second advantage is that the function can return can an object.  This implies that a function in a structure type can be passed from one function to another.

Why use LinkedIn automation for LinkedIn?

Answers

Answer:

Using LinkedIn automation tools to run successful outreach campaigns has become popular. It’s because these tools automate tedious networking tasks such as visiting profiles, collecting data, sending out bulk connection requests, messages, and follow-ups, etc.  

With the help of the latest LinkedIn automation tools, you can quickly perform all the repetitive tasks while saving yourself a lot of time that you can use on actual relationship building and lead nurturing tasks.  

However, LinkedIn isn’t really amused when using any bots or automation tools for LinkedIn.

Write a method, including the method header, that will receive an array of integers and will return the average of all the integers. Be sure to use the return statement as the last statement in the method. A method that receives an array as a parameter should define the data type and the name of the array with brackets, but not indicate the size of the array in the parameter. A method that returns the average value should have double as the return type, and not void. For example: public static returnType methodName(dataType arrayName[]) 3 The array being passed as a parameter to the method will have 10 integer numbers, ranging from 1 to 50. The average, avgNum, should be both printed in the method, and then returned by the method. To print a double with 2 decimal points precision, so use the following code to format the output: System.out.printf("The average of all 10 numbers is %.2f\n", avgNum);

Answers

Answer:

The method is as follows:

public static double average(int [] arrs){

    double sum = 0,avgNum;

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

        sum+=arrs[i];

    }

    avgNum = sum/arrs.length;

    System.out.printf("The average of all numbers is %.2f\n", avgNum);

    return avgNum;

}

Explanation:

This defines the method

public static double average(int [] arrs){

This declares sum and avgNum as double; sum is then initialized to 0

    double sum = 0,avgNum;

This iterates through the array

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

This adds up the array elements

        sum+=arrs[i];     }

This calculates the average

    avgNum = sum/arrs.length;

This prints the average to 2 decimal places

    System.out.printf("The average of all numbers is %.2f\n",

avgNum);

This returns the average to main

    return avgNum; }

what is the build in libary function to compare two strings?​

Answers

Answer:

strcmp() is a built-in library function and is declared in <string. h> header file. This function takes two strings as arguments and compare these two strings lexicographically.

Explanation:

Hope it helps

Help Pls
I need about 5 advantages of E-learning​

Answers

Answer:

Explanation:

E-learning saves time and money. With online learning, your learners can access content anywhere and anytime. ...

E-learning leads to better retention. ...

E-learning is consistent. ...

E-learning is scalable. ...

E-learning offers personalization.

Answer:

E- learning saves time and money

E-learning makes work easier and faster

E- learning is convenient

E- learning is consistent

E- learning is scalable

Explanation:

when you learn using the internet, you save a lot of time by just typing and not searching through books

Other Questions
Identify the DNA in the cell from the diagram of the following process.CB Make all necessary corrections in the sentence below. There are 10 errors. Materials Variances Krumple Inc. produces aluminum cans. Production of 12-ounce cans has a standard unit quantity of 4.5 ounces of aluminum per can. During the month of April, 300,000 cans were produced using 1,240,000 ounces of aluminum. The actual cost of aluminum was $0.18 per ounce and the standard price was $0.08 per ounce. There are no beginning or ending inventories of aluminum. Required: Calculate the materials price and usage variances using the columnar and formula approaches. Enter amounts as positive numbers and select Favorable or Unfavorable. Materials Price Variance$fill in the blank 1 Material Usage Variance$fill in the blank 3 Why are fungi more like animals than plants?PLEASE HELP ME An income statement under absorption costing includes which of the following: ______________a. Direct materials b. Direct labor c. Variable overhead d. Fixed overhead Joss is a marketing consultant. Iris and Daphne are potential customers interested in commissioning Joss to undertake a market survey and compile the findings in a report. Iris is willing to pay $500 for the service while Daphne is willing to pay $800. Suppose that the opportunity cost of Joss's time is $1,200. Assume that Iris and Daphne do not know each other. Which of the following statements is true?a. only Iris will purchase Joss's services and Joss will undertake the job for her. b. only Daphne will purchase Joss's services and Joss will undertake the job for her. c. both Iris and Daphne will purchase Joss's services and Joss will undertake the job. d. both Iris and Daphne will want to purchase Joss's services but Joss will not be willing to undertake the job. Factorize:6 + 13mn + 7m nexplanation 2) Consider the quadratic sequence 72, 100, 120, 1322.1.1) Determine Tn the nth term of the quadratic. What is the meaning of habilitator? They got off the bus when the .. stopped outside a small village. Which redox reaction would most likely occur if silver and zinc metal wereadded to a solution that contained silver and zinc ions?Click for a reduction potential chartO A. Zn2+ + 2Ag Zn + 2AgtB. Zn2+ + 2Agt Zn + 2AgC. Zn + 2Ag Zn2+ + 2Ag+D. Zn + Ag? Zn2+ + 2Ag QUICK PLZ!!!!! Which graph shows the result of dilating this figure by a factor of One-third about the origin? On a coordinate plane, triangle A B C has points (negative 6, 6), (6, 6), (6, negative 6). On a coordinate plane, triangle A prime B prime C prime has points (negative 2, 2), (2, 2), (2, negative 2). On a coordinate plane, triangle A prime B prime C prime has points (negative 3, 3), (3, 3), (3, negative 3). On a coordinate plane, triangle A prime B prime C prime has points (Negative 18, 18), (18, 18), (18, negative 18). On a coordinate plane, triangle A prime B prime C prime has points (negative 12, 12), (12, 12), (12, negative 12). 3x+2y < 11 2x-y when neither the mother or the fathers genes take dominance over a childs genes, what is this known as? If f(x) = 5x squared -3 and g(x) = x squared - 4x -8, find (f-g)(x) Mott Company's sales mix is 3 units of A, 2 units of B, and 1 unit of C. Selling prices for each product are $37, $47, and $57, respectively Variable costs per unit are $30, $31, and $34, respectively. Fixed costs are $456,000. What is the break-even point in composite units? a) 1.239 composite units b) 1357 composite units c) 2763 composite units d) 4,606 composite units. for funif you had to choose what animal would you be^-^ Your friend Araceli is writing to you, remembering what her family vacations used to be like. Helo me fill in the blanks in the email with the imperfect tense of the verbs in parentheses.Cut and paste from here : Cuando yo (1)(ser) nio, mis padres y yo (2)(ir) de vacaciones todos los veranos. Ellos (3)(preferir) hace el ecoturismo. Mi padre siempre (4)(decir) que es importante cuidar la naturaleza. Yo frecuentemente (5)(caminar) por los bosques mientras mis padres (6) (buscar) plantas y animales exticos. Los guas tursticos en estos viajes normalmente (7)(prohibir) que tocramos las flores. Te recuerdas cmo t siempre (8)(querer) venir con nosotros y cmo nosotros siempre (9)(hablar) con tus padres pero que ellos siempre (10)(negar)? Pobre t. When would exposure to a potentially harmful substance most likely to damage many organs in a developing embryo? 16. Select the equation that has only one solution. A. 8 x + 3 = 3 X + 8 B. 12 x = 12 x + 7 C.4 x + 11 = 11 + 4 xD. 6 x + 20 = 6 x