Questions
Q Name three mechanisms that ensure firms are run in the interests of shareholders Q How...

Q Name three mechanisms that ensure firms are run in the interests of shareholders

Q How do we know that corporate governance matters? Name one example

In: Finance

If neither "Gaia Theory" nor "Earth System Theory" is a good name for communicating with the...

If neither "Gaia Theory" nor "Earth System Theory" is a good name for communicating with the non-scientific community, then what IS a good name/ theory we can use?

In: Psychology

3. You are working with wild-type cells that have a 16h doubling time. BrdU is a...

3. You are working with wild-type cells that have a 16h doubling time. BrdU is a molecule that can be used to measure the amount of DNA inside cells. When added to cell culture, cells will incorporate BrdU into DNA strands during replication as if it were the DNA base thymidine (T).

Your general experiment for using BrdU is:
1. Add BrdU to the media and let the cells continue to grow for 16h
2. Harvest cells and label them with a fluorescent antibody against BrdU
3. Measure fluorescence intensity in cells which is proportional to total DNA content
4. Plot a histogram which shows the number of cells with a certain fluorescence intensity

A. (5pts) As a control, you perform the above experiment on normally growing, wild-type cells, and find the histogram to the right. Please explain why one peak shows roughly twice the fluorescence intensity as the other, what sets cells are represented by each peak, AND why the high-intensity peak is smaller.

PART B:

B. (5pts) You perform the general experiment with the following addition: when you add BrdU, you also add the drug taxol, which stabilizes microtubules. You find the histogram to the right. Please describe how the features of this histogram have changed from Part A, and explain why adding taxol could cause these changes referring to mechanisms we have discussed in class.

PART C:

C. (4pts) You construct a cell line with a temperature sensitive mutant of the G1-cyclin. You perform the general experiment with the following additions: when you add BrdU, you shift to higher temperatures, which deactivates the G1-cyclin. Please draw what you predict will be the resulting histogram after you measure BrdU on the figure to the right.

(Note: The result from the control is printed as a reference, you should draw your response on the same axes.)

In: Biology

You have been asked to write program that allows the user to input a first name,...

You have been asked to write program that allows the user to input a first name, middle initial (without the period), and last name of a user and then display that person’s name with the first, middle initial followed by a period, and last name last.

BEFORE creating the program, use structured programming principles to document how you are going to develop the program. Use Microsoft Word to complete this part of the assessment. Answer each of the following areas:

Solve a problem by following the steps of the program development cycle.

Design the program in a modular fashion.

Design each module as a series of sequence control structures.

Use Microsoft Word to complete

In: Computer Science

You have been asked to write program that allows the user to input a first name, middle initial (without the period)


You have been asked to write program that allows the user to input a first name, middle initial (without the period), and last name of a user and then display that person’s name with the first, middle initial followed by a period, and last name last.

BEFORE creating the program, use structured programming principles to document how you are going to develop the program. Use Microsoft Word to complete this part of the assessment. Answer each of the following areas:

Solve a problem by following the steps of the program development cycle.

Design the program in a modular fashion.

Design each module as a series of sequence control structures.

Use Microsoft Word to answer

In: Computer Science

c. February 7-sold merchandise on account for $800, and the cost of this merchandise sold was...

c. February 7-sold merchandise on account for $800, and the cost of this merchandise sold was $560.

Account Name

Increase or Decrease

Amount

Explanation:

d. February 10-returned $500 on defective merchandise (list price) of the purchases dated February 3.

Account Name

Increase or Decrease

Amount

Explanation:

e. February 11-paid the amount due of the purchased realized.

Account Name

Increase or Decrease

Amount

Explanation:

f. February 12-accepted defective products returned that were sold by $150 on February 7, and the cost of these products returned is $110.

Account Name

Increase or Decrease

Amount

Explanation:

In: Accounting

Write a program in Java, that creates a Jframe with a menu containing only file. Inside...

Write a program in Java, that creates a Jframe with a menu containing only file. Inside file there should be items: Open, Save, and Save As. Selecting open prompts the user to input a file name to a txt document containing employee information and displays a Jtable with the information, which can be edited. With column headers {"First Name" , "Last Name" , "Occupation" , "Office #"}

Example: Gary Osbourn Teacher 113

Michelle Ramirez Teacher 101

Ava Gomez Principal 120

The user should be able to save any changes made to the table with save. Using Save As the program should ask the user for a file name to save the new program as.

In: Computer Science

This task is solved in Python 3. Develop a program that lets the user add new...

This task is solved in Python 3.

Develop a program that lets the user add new people to the file phone.txt

Add name and number, end with <enter>

Name and number: Robin 94567402

Name and number: Jessica 99468283

Name and number:

>>>

Phone.txt

Expanded to ------>

Phone.txt

Mary 98654321 June 99776655 Chris 99112233 Viv 98554455 John 99776612 Joe 97888776 Rick 99455443 Susan 98122134 Jill 99655732

Bob 98787896

Mary 98654321

June 99776655

Chris 99112233

Viv 98554455

John 99776612

Joe 97888776

Rick 99455443 Susan 98122134 Jill 99655732

Bob 98787896

Robin 94567402 Jessica 99468283

In: Computer Science

Write a program that sorts prices of 10 tacos in ascending order based on the price,...

Write a program that sorts prices of 10 tacos in ascending order based on the price, using arrays.

Requirements:

  • The user enters the name of the taco and then the price of the taco
    • HINT: Two arrays make this problem simpler. One with the names and the other with the prices. The indices indicate the combination. For instance, a taco price at index 5 has its name also at index 5 of the other array.
    • HINT: It is a good idea that after using keyboard.nextDouble() to write the following line: keyboard.nextLine();. The scanner will not consume everything in the buffer unless you tell it to using nextLine.
  • After 10 tacos are entered they are sorted based on the price
    • You can use any sorting method such as bubble sort or selection sort
  • Display the results at the end
  • Arrays must be part of the solution, and other built in Java data structures, such as ArrayLists, may not be used.
  • Sorting must be implemented (bubble sort, selection sort, etc.) in the solution, and other built in Java sorters may not be used.

Example Output

Welcome to the taco price sorter! Enter 10 taco names and prices and I'll sort it!

Enter the name of taco 1

Crunchy Taco

Enter taco's price

1.19

Enter the name of taco 2

Crunchy Taco Supreme

Enter taco's price

1.59

Enter the name of taco 3

Soft Taco

Enter taco's price

1.19

Enter the name of taco 4

Soft Taco Supreme

Enter taco's price

1.59

Enter the name of taco 5

Chicken Soft Taco

Enter taco's price

1.79

Enter the name of taco 6

Crispy Potato Soft Taco

Enter taco's price

0.99

Enter the name of taco 7

Double Decker Taco

Enter taco's price

1.89

Enter the name of taco 8

Double Decker Taco Supreme

Enter taco's price

2.29

Enter the name of taco 9

Doritos Locos Taco (Nacho Cheese)

Enter taco's price

1.49

Enter the name of taco 10

Doritos Locs Tacos(Fiery) Supreme

Enter taco's price

1.89

Sorted Tacos are

Taco Prices Crispy Potato Soft Taco 0.99

Taco Prices Crunchy Taco 1.19

Taco Prices Soft Taco 1.19

Taco Prices Doritos Locos Taco (Nacho Cheese) 1.49

Taco Prices Crunchy Taco Supreme 1.59

Taco Prices Soft Taco Supreme 1.59

Taco Prices Chicken Soft Taco 1.79

Taco Prices Double Decker Taco 1.89

Taco Prices Doritos Locs Tacos(Fiery) Supreme 1.89

Taco Prices Double Decker Taco Supreme 2.29

In: Computer Science

I am trying to get this code to work but I am having difficulties, would like...

I am trying to get this code to work but I am having difficulties, would like to see if some one can solve it. I tried to start it but im not sure what im doing wrong. please explain if possible

package edu.hfcc;

/*
* Create Java application that will create Fruit class and Bread class
*
* Fruit class will have 3 data fields name and quantity which you can change.
* The third data field price should always be 2.0
* Bread class will have 3 data fields name, quantity and price. All three data fields can change.
*
* Create method that creates the string used write to console and return from execute()
*
* In GroceryApp
* Create method to calculate totalPrice for fruit
* Create method to calculate totalPrice for bread
* Create method to print to console use EXACLTY like example below
*
* Data to use
* Bread:     Name=French,    Quantity=2,   Price=3.0
* Fruit:   Name=Apple,    Quantity=5,   
*
* EXAMPLE TO Console
* French
        2 @ 3.0       6.0
Apple
      5 @ 2.0       10.0
---------------------
                   16.0
*/

public class Grocery {

   private static final char NEW_LINE = '\n';
   private static final String TAB = "\t";
  
   public String execute(){
      
       Fruit fruitOne = new Fruit();
       fruitOne.setName("Apple");
       fruitOne.setQuantity( 5);
      
       String fruits = constructOutputFruit(apple);
       System.out.println(fruits);

       return fruits;
   }
   private String constructOutputFruit(Fruit fruit1) {
       String apple = fruit1.getName() + NEW_LINE + fruit1.getQuantity() + TAB + fruit1.getPrice();
      
       return apple + NEW_LINE;
   }
}

here are my classes:

Fruit:

package edu.hfcc;

public class Fruit {

   private String name;
   private int quantity;
   private float price;
  
   public Fruit(){
       this.price = (float)2.0;
       }
  

   public String getName() {
       return name;
   }

   public void setName(String name) {
       this.name = name;
   }

   public int getQuantity() {
       return quantity;
   }

   public void setQuantity(int quantity) {
       this.quantity = quantity;
   }

   public float getPrice() {
       return price;
   }
}

Bread:

package edu.hfcc;

public class Bread {

   private String name;
   private int quantity;
   private float price;
   public String getName() {
       return name;
   }
   public void setName(String name) {
       this.name = name;
   }
   public int getQuantity() {
       return quantity;
   }
   public void setQuantity(int quantity) {
       this.quantity = quantity;
   }
   public float getPrice() {
       return price;
   }
   public void setPrice(float price) {
       this.price = price;
   }
  

}

In: Computer Science