Questions
In a short paragraph, can you describe the primary attributes of a limited liability company? Why...

In a short paragraph, can you describe the primary attributes of a limited liability company? Why would you choose an LLC over a corporation?   Why not?

In: Finance

A car with a mass of 1160 kg is traveling in a mountainous area with a...

A car with a mass of 1160 kg is traveling in a mountainous area with a constant speed of 73.6 km/h. The road is horizontal and flat at point A, horizontal and curved at points B and C. The radii of curvatures at B and C are: rB = 150 m and rC = 105 m. Calculate the normal force exerted by the road on the car at point Now calculate the normal force exerted by the road on the car at point B. And finally calculate the normal force exerted by the road on the car at point C.

In: Physics

public class Node<T> { Public T Item { get; set; } Public Node<T> Next; { get;...

public class Node<T>
{
Public T Item { get; set; }
Public Node<T> Next; { get; set; }
public Node (T item, Node<T> next)
{ … }
}
public class Polynomial
{
// A reference to the first node of a singly linked list
private Node<Term> front;
// Creates the polynomial 0
public Polynomial ( )
{ }
// Inserts term t into the current polynomial in its proper order
// If a term with the same exponent already exists then the two terms are added together
public void AddTerm (Term t)
{ … }
// Adds polynomials p and q to yield a new polynomial
public static Polynomial operator + (Polynomial p, Polynomial q)
{ … }
// Multiplies polynomials p and q to yield a new polynomial
public static Polynomial operator * (Polynomial p, Polynomial q)
{ … }
// Evaluates the current polynomial at x
public double Evaluate (double x)
{ … }
// Prints the current polynomial
public void Print ( )
{ … }
}
DON'T SOLVE THE FIRST TASK JUST THE ONE AFTER THIS LINE. The first task is their for reference

C# Please :)

In a separate namespace, the class Polynomial (Version 2) re-implements a polynomial as a linear array
of terms ordered by exponent. Each polynomial is also reduced to simplest terms, that is, only one term
for a given exponent.
public class Polynomial
{
// P is a linear array of Terms
private Term[ ] P;

// Re-implement the six methods of Polynomial (including the constructor)

}

In: Computer Science

1 Linear Algebra in Numpy (1) Create a random 100-by-100 matrix M, using numpy method "np.random.randn(100,...

1 Linear Algebra in Numpy
(1) Create a random 100-by-100 matrix M, using numpy method "np.random.randn(100, 100)", where
each element is drawn from a random normal distribution.
(2) Calculate the mean and variance of all the elements in M;
(3) Use "for loop" to calculate the mean and variance of each row of M.
(4) Use matrix operation instead of "for loop" to calculate the mean of each row of M, hint: create a vector
of ones using np.ones(100, 1)?
(5) Calculate the inverse matrix M−1
(6) Verify that M−1M = MM−1 = I. Are the off-diagnoal elements exactly 0, why?

In: Computer Science

Develop a flowchart showing the steps required to set up and test a newly purchased computer...

  1. Develop a flowchart showing the steps required to set up and test a newly purchased computer system that includes the computer, a mouse, keyboard, speakers, and an Internet connection.

In: Computer Science

JAVA CODE FILL IN THE BLANKS you are to complete the skeleton program by completing *...

JAVA CODE FILL IN THE BLANKS

you are to complete the skeleton program by completing
* the To Do sections. I would suggest doing this a
* little bit at a time and testing each step before you
* go on to the next step.
*
*           Add whatever code is necessary to complete this assignment

*********************************************************************/


//Add whatever code is necessary to complete this assignment

public class Methods
{
   public static void main(String[] args)
   {
       //create two integer variables below
      
      
      
       //ask the user to enter numbers into each of the variables                   (
      
      
      
      
      
      
      
       //call the max method to determine which number is the biggest
       //and then display the result to the screen in a message that looks like...
       //"The highest number you entered was X"
      
      
      
      
      
      
       //call the difference method to determine the difference between the two numbers
       //and then display the result to the screen in a message that looks like...
       //"The difference between X and Y is Z" (where X is the first number,
       //Y is the second number and Z is the difference)
       //***The difference should always be a positive value***
      
      
      
      
      
      
   }//end main
  
  
   //write a max method here. It should accept two numbers and return the highest   
   //of those two numbers
  
  
  
  
  
  
  
  
  
   //write a difference method here. It should accept two numbers and return the difference   
   //between the two numbers. *** The difference must always be a positive number. ***
  
  
  
  
  
  
  
}//end Methods

In: Computer Science

5. Indicate which statement is True (T) or False (F). a. _____When making a market on...

5. Indicate which statement is True (T) or False (F). a. _____When making a market on an option the bid is less than the offer. b. _____If the stock price is greater than the strike price the the call option is “out-of-the money” c. ______ Puts and Calls leveage profits and losses. d. ______ For the same stock and strike price an option with a more distant expiration will be worth less than an option with a nearer expiration. e. ______ A straddle involves both calls and puts of the same expiration and strike. f. ______ Short a Put is “bearish”. g. ______The “butterfly” involves both calls and puts. h. ______An out of the money option has no “intrinsic value”. i. ______ The greater the price of the stock the greater should be the price of a call option. j. _______ The lesser the price of stock the lesser should be the price of a put option.

In: Finance

Please explain in detail the service concept (purpose of the service; please define target market and...

Please explain in detail the service concept (purpose of the service; please define target market and customer experience) and service specifications (performance specifications design specifications delivery specifications); Word count: 300-400 words

In: Operations Management

You should use Visual Studio to write and test the program from this problem.   Write a...

You should use Visual Studio to write and test the program from this problem.  

Write a complete program with a for loop that

  • (5 pts) uses proper variable types.
  • (10 pts) uses a for loop to read in a real numbers exactly 8 times
  • (10 pts) adds the number read in the loop to a running sum.
  • (10 pts) Computes the average of the 8 numbers as a real number.
  • (5 pts) Prints the correct result with 2 decimal places, no text with the result.
  • Your program must NOT prompt the user for each number and must only print the answer, no text. (You will lose points!)

In: Computer Science

Case Study ABC Company observes that the confidentiality of their workers is compromised while using the...

Case Study

ABC Company observes that the confidentiality of their workers is compromised while using the eservices provided by the partner company. Further investigation has highlighted that whenever a user uses their unified profiles to access the partner’s company services from the relevant mobile application, their confidentiality is compromised and data theft patterns are observed. The situation is alarming and makes them focus on how the mobile application that gives access to partner’s eservices are vulnerable. Further investigation is done in this regard and it is found out that whenever a user sends a request to use any of the partner company’s eservice, only at that instance the confidentiality is being compromised. This may mean that the gateway at either one of the party’s end has already been compromised. Further investigation highlights that the cause is not the gateway but the common reusable APIs used in their mobile application. It is also noted that the same mobile application is working fine for the internal accessible services but start malfunctioning when partner company’s eservices are accessed. A team of researchers is hired to establish a framework of utilizing the known reusable component for unified service consumption from multiple sources considering the security dynamics of ABC country.

A : Identify the problem area from the above Case study description and elaborate how this problem area can be resolved using the current world technical solutions or tools.​​


​B: ​Highlight the titles of SIX (6) possible generic research design phases applied for any research.​

​-Mention which of these highlighted phases are applicable in this case.


​-Also highlight whether the research methodology be quantitative or qualitative in this case.

In: Operations Management

Compare the details of the passwd and shadow files under /etc/ –Who is the owner and...

  1. Compare the details of the passwd and shadow files under /etc/

–Who is the owner and group for each of the files?

–What permissions are assigned for these files?

–Are the permissions consistent with the results of activity you did before.

–Discuss the permissions in light of principle of least privilege.

2. Check the details of the log directory under /var/

–Who is the owner and group of the directory?

–What permissions are assigned for this directory?

–Discuss the permissions in light of principle of least privilege.

3. What happens to a file when the primary group of its user owner changes?

USE LINUX to answer

In: Computer Science

Fact Scenario:                    Quik Results, Inc.(QRI), a Michigan corporation, makes and sells Power Up!, a super...

Fact Scenario:

                   Quik Results, Inc.(QRI), a Michigan corporation, makes and sells Power Up!, a super energy boosting, carbonated beverage. Power Up! is made in Michigan, but shipped to stores all across the Midwest and East Coast. Power Up! is made by QRI, and delivered on QRI. trucks, by QRI employees. QRI has in-house accounting and marketing staff.

                  Quicksilver Delivery Service contracts to deliver Power Up! in California for $5,000, payable in advance. QRI pays the money, but Quicksilver fails to perform. Can QRI rescind the contract? Can QRI also obtain restitution? What does it mean to "rescind" a contract? How is a contract rescinded? What is restitution? How is restitution accomplished? Explain.

In: Operations Management

Write a C code program to implement the comparisons of three integer numbers, using only conditional...

Write a C code program to implement the comparisons of three integer numbers, using only conditional operators (no if statements). Please ask the user to input random three integers. Then display the minimum, middle, and maximum number in one line. Also, please calculate and display the sum and the average value (save two digits after decimal point) of these three integers. Please write the comments line by line.

In: Computer Science

What is the reason/s behind unit and system testing? Discuss in 120–150 words.

What is the reason/s behind unit and system testing? Discuss in 120–150 words.

In: Computer Science

A baseball crosses home plate with a velocity of 89.8 miles per hour, at an angle...

A baseball crosses home plate with a velocity of 89.8 miles per hour, at an angle of 30.0 degrees below horizontal, towards the batter. Shortly after, it has been hit by a baseball bat, and now has velocity 99.6 miles per hour at a "launch angle" of 25.0 degrees above horizontal, away from the batter. The ball has mass 0.145 kg, keeping with the Major League Baseball rulebook. Define "from the batter, towards the pitcher" as positive x, and "up" as positive y. (Note: we are assuming that the ball is hit in the direction of the pitcher, versus to the left or right; otherwise this becomes a 3-dimensional problem.)

A. What is the change in the x-component of the ball's linear momentum? Hint: in order to get the correct value, you must (1) split the initial and final velocities into x and y components, (2) convert miles per hour to meters per second, and (3) be careful about which velocities are negative (look at the definitions in the table above).
kg*m/s

B. What is the change in the y-component of the ball's linear momentum?
kg*m/s

C. What is the magnitude of the total change in the ball's linear momentum?
kg*m/s

In: Physics