Questions
A 557-N physics student stands on a bathroom scale in an 859-kg (including the student) elevator...

A 557-N physics student stands on a bathroom scale in an 859-kg (including the student) elevator that is supported by a cable. As the elevator starts moving, the scale reads 496 N

Find the direction of the acceleration of the elevator.

What is the acceleration if the scale reads 682 N ?

If the scale reads zero, should the student worry? Explain.

Essay answers are limited to about 500 words (3800 characters maximum, including spaces).

3800 Character(s) remaining

What is the tension in the cable in part A?

What is the tension in the cable in part D?

In: Physics

In VB console write a Console Application that reads an input value for ??. You can...

In VB console write a Console Application that reads an input value for ??. You can assume that the user only inputs numeric values.

In: Computer Science

Question 1 The Dalton Co. is considering hiring the daughter of one of the vice presidents...

Question 1

The Dalton Co. is considering hiring the daughter of one of the vice presidents for the position of administrative manager. The daughter, Joyce McGregor, is as well-qualified for the position as any other person who has been interviewed. The position involves responsibility for planning and controlling areas where services and technology are undergoing great change. The company wants a manager who can“grow with the job,” for the position is expected to grow rapidly in scope and status. Although the company has employed relatives of executives for other managerial posts in the company, there is no consensus that employing a relative for the administrative management job will work equally well. The four executives who have the responsibility for making the final decision have evaluated the situation as follows:

1. Alex McGregor, Joyce’s father, feels that since his daughter is well-qualified for the position, she should be hired.

2. Joan Flores, vice president of human resources, also feels that Joyce should be hired. But Flores is aware that the position is subject to much stress and change. Therefore, she feels that special measures must be taken to see that Joyce’s perform-ance is evaluated objectively and impartially. Flores firmly believes that if Joyce should fail to measure up to the job, she should be replaced immediately.

3. Donna Renz, vice president of finance, feels that nepotism in a situation such as this is too much of a gamble. She sees that McGregor's daughter may not measure up, and as a result, the company will be faced with a messy and extremely unpleasant decision. (Why does she feel that the daughter may not measure up, in your opinion? On what basis do you think she is making this assessment?)4. You, as president of Dalton Co., are trying to reconcile the different points of view and reach a decision.

You hold a great deal of admiration and respect for the ability of Alex McGregor, but you know that this is no guarantee that his daughter will perform equally well. Still, as you realize, there is a family tie here. And if you vote against Joyce, what will be the effect upon the father? You appreciate Flores’ point of view and agree wholeheartedly that if Joyce is employed, her performance must be evaluated objectively, and her rating must not be influenced by the position of her father. But, you ask yourself, how can a relative’s performance be evaluated objectively? Who will be responsible for conducting the performance appraisal for Joyce? Should she be required to complete a goals assessment similar to others? Renz has made a good point, too, for you're call that 10 years ago the former president's son-in-law was hired and turned out to be a misfit. It was a sticky situation, and the company had no alternative but to let the son-in-law “gracefully resign.” After that, things were never the same with the former president up to the day he retired. After listening to Alex McGregor, Flores, and Renz evaluate Joyce’s capabilities and express their viewpoints on nepotism, you realize the next step is up to you.

Answer Questions:

Cast your vote and defend your stand by answering each of the following questions.

1. What is your vote?

2. How would you justify your position to each of the three vice presidents if you were asked to do so?

3. How would you proceed to evaluate objectively the performance of an executive's relative such as Joyce McGregor?

Question 2

Ms. Saikley, AM at International BusinessServices, is wondering whether to vote to have a holiday office party this December. She has just spoken with the sales manager, who told her about an incident that happened at another company last holiday season. It seems that the other organization decided to have an “employees only” office party on Friday night from 5 to 8 p.m. at a local downtown restaurant. Two weeks later, the wife of one of the workers burst into the office area and began shouting accusations at an office worker who she thought was having an affair with her husband. It was embarrassing to everyone in the organization and most agreed it was unnecessary. The tantrum became loud and abusive on both parties parts—the wife making accusations and the office worker denying them. The situation became pretty tense at this point.

Answer Questions:

1. If you were the AM of that organization, how would you have reacted to the situation just described? The office worker would have reported to you, and you were the first manager on the scene.

2. Should a policy be written covering office parties? If so, what would be your input on this policy? Should a policy be written concerning visitors who enter the work-place (even family members) and create a disturbance?

In: Operations Management

provide a full detailed table of the differences between Windows XP, Windows 7, windows 8 and...

provide a full detailed table of the differences between Windows XP, Windows 7, windows 8 and windows 10

In: Computer Science

price judgment importance within a bike company. how to compare prices with other competitive companies and...

price judgment importance within a bike company. how to compare prices with other competitive companies and how to make a bike brand stand out and bring in revenue.

In: Operations Management

It is about C++linked list code. my assignment is making 1 function, in below circumstance,(some functions...

It is about C++linked list code. my assignment is making 1 function, in below circumstance,(some functions are suggested for easier procedure of making function.)

void push_Stack (struct linked_list* list, struct linked_node* node) //*This is the function to make and below is the explanation that should be written in given code.

This function inserts a node in stack manner. If the type of list is not stack, print the error message “Function push_Stack: The list type is not a stack” The new node will be always inserted to tail of the list which means the tail of the list should be changed after a new node is inserted.

Given code is written below,(There is a function to fill in last moment in this code)

linked_list.h: This is the header file of linkLQS.c that declares all the functions and values that are going to be used in linkLQS.c. You do not have to touch this function.

-----------------------------------------------------------------------

(Below code is about linked_list.h)

#include <stdio.h>
#include <stdlib.h>
#include <time.h>


struct linked_node{
   int value;
   struct linked_node* next;
   struct linked_node* prev;
};

struct linked_list{
   int type_of_list; // normal = 0, stack = 1
   struct linked_node* head;
   struct linked_node* tail;
   int number_of_nodes;
};

--------------------------------------------------------

#include "linked_list.h"
#include "string.h"
extern int list_exist;

struct linked_list* create_list (int number_of_nodes, int list_type)
{
   int a[number_of_nodes];
   int i, j;
   int bFound;

   if (number_of_nodes < 1)
   {
       printf("Function create_list: the number of nodes is not specified correctly\n");
       return NULL;
   }
   if(list_exist == 1)
   {
       printf("Function create_list: a list already exists\nRestart a Program\n");
       exit(0);  
   }
   if(list_type != 0 && list_type != 1)
   {
       printf("Function create_list: the list type is wrong\n");
       exit(0);  
   }
   struct linked_list * new_list = (struct linked_list*)malloc(sizeof(struct linked_list));
   new_list->head = NULL;
   new_list->tail = NULL;
   new_list->number_of_nodes = 0;
   new_list->type_of_list = list_type;

   //now put nodes into the list with random numbers.
   srand((unsigned int)time(NULL));
   if(list_type == 0)
   {
       for ( i = 0; i < number_of_nodes; ++i )
       {
           while ( 1 )
           {
  
               a[i] = rand() % number_of_nodes + 1;
               bFound = 0;
               for ( j = 0; j < i; ++j )
               {
                   if ( a[j] == a[i] )
                   {
                       bFound = 1;
                       break;
                   }
               }
               if ( !bFound )
                   break;
           }
           struct linked_node* new_node = create_node(a[i]);
           insert_node(new_list, new_node);
       }
   }
   else if(list_type == 1)
   {
       for ( i = 0; i < number_of_nodes; ++i )
       {
           while ( 1 )
           {
  
               a[i] = rand() % number_of_nodes + 1;
               bFound = 0;
               for ( j = 0; j < i; ++j )
               {
                   if ( a[j] == a[i] )
                   {
                       bFound = 1;
                       break;
                   }
               }
               if ( !bFound )
                   break;
           }
           struct linked_node* new_node = create_node(a[i]);
           push_Stack(new_list, new_node);
       }
   }
   list_exist = 1;
   printf("List is created!\n");
   return new_list;
}

struct linked_node* create_node (int node_value)//This functon is the example for reference of the assignment function
{
   struct linked_node* node = (struct linked_node*)malloc(sizeof(struct linked_node));
   node->value = node_value;
   node->next = NULL;
   node->prev = NULL;
   return node;
}

void insert_node(struct linked_list* list, struct linked_node* node)//This functon is the example for reference of the assignment function
{
   node->next = NULL;
   node->prev = NULL;

   if(list->head == NULL)       //if head is NULL, tail is also NULL.
   {
       list->head = node;
       list->tail = node;
       list_exist = 1;
   }
   else if(list->head == list->tail)
   {
       node->next = list->head;
       list->head->prev = node;
       list->head = node;
   }
   else if(list->head != list->tail)
   {
       node->next = list->head;
       list->head->prev = node;
       list->head = node;
   }
   (list->number_of_nodes)++;
}

void push_Stack(struct linked_list* list, struct linked_node* node)//The function to be written!!
{
~~~~~~~~~~~~~~~~ //your code starts from here
  
}

In: Computer Science

1. A 33 year old female who is 32 weeks pregnant comes in to the clinic...

1. A 33 year old female who is 32 weeks pregnant comes in to the clinic for prenatal care. The nurse notices fingertip bruising around the client’s neck and on her abdomen. She is accompanied by her boyfriend into the examining room.

  1. How does the nurse proceed to assess for the safety of the patient?
  1. What information does the nurse need to gather?

  1. Describe important components to be included in a safety plan developed by the nurse and patient.
  1. What resources might be available in the community for this family?

  1. What are the legal and ethical implications for the mother, the child, and the boyfriend?

2. Describe what the nurse can do to create an environment of trauma informed care on admission for a patient who has overdosed on Tylenol prior to admission.

3. The patient on the mental health unit is pacing in the hallways, yelling out, “shut up,” and begins punching and kicking into the air. As the nurse how should you respond?

In: Nursing

What are some patents Tesla holds? Or are they sharing patent information?

What are some patents Tesla holds? Or are they sharing patent information?

In: Operations Management

Complete the corresponding assembly language fragments by selecting the correct instruction, register, or value: (Choices in...

Complete the corresponding assembly language fragments by selecting the correct instruction, register, or value: (Choices in bold)

a) Consider the following fragment of C code:

if(a == b) {

       x += 10;

       A[50] = A[50] +x;

}

else {

        y += 10;

        A[50] = A[50] + y;

}

Assume that variables a, b, x and y are assigned to $s0, $s1, $s2 and $s3 respectively and the base address for array A is in $s4. Only register $t0 is used for storing results temporarily.

bne $s0, ($s0 / $s1 / $s2 / $s3 / $s4 / $t0), else

addi $s2, $s2, 10

lw $t0, (0 / 10 / 50 / 200 / $s1 / $t0) ($s4)

add $t0, $t0, $s2

sw $t0, 200($s4)

j Exit

else: addi $s3, $s3, (0 / 10 / 50 / 200 / $s1 / $t0)

lw $t0, 200($s4)

add $t0, 200($s4)

add $t0, $t0, ($s0 / $s1 / $s2 / $s3 / $s4 / $t0)

(beq / bne / j / add / addi / sll / lw / sw) $t0, 200($s4)

Exit:

b) Consider the following fragment of C code:

while (A[i] == 0) {

       A[i] = A[i] + 10;

       i += 1;

}

Assume that variable i is assigned to $s0 and the base address for array A is in $s1. A is an array of words. Registers $t0 and $t1 are used for storing results temporarily.

Loop: sll $t0, $s0, (0 / 1 / 2 / 4 / 10)

add $t0, $t0, $s1

lw $t1, 0( ($s0 / $s1 / $t0 / $t1 / $zero) )

bne $t1, $zero, (Loop / Exit)

addi $t1, ($s0 / $s1 / $t0 / $t1 / $zero), 10

sw $t1, 0($t0)

addi ($s0 / $s1 / $t0 / $t1 / $zero), $s0, 1

j Loop

Exit;

In: Computer Science

A titrimetric method for the determination of calcium in limestone was tested by analysis of a...

A titrimetric method for the determination of calcium in limestone was tested by analysis of a NIST
containing 30.15% CaO. The mean result of four analyses was 30.26% CaO, with standard deviation of 0.085%.
By pooling data from several analyses, it was found that s = 0.094% CaO.
a) Do the data indicate the presence of a systematic error at the 95% confidence level?
b) Would the data indicate the presence of a systematic error at 95% confidence level if no pooled value for s
had been available?
Show calculations for part a and b.

In: Chemistry

Brike Company, which manufactures one product - robes, has enough idle capacity available to accept a...

Brike Company, which manufactures one product - robes, has enough idle capacity available to accept a special order of 10,000 robes at $9 a robe. A predicted income statement for the year, without this special order is as follows:

Sales revenue

$12.50

$1,250,000

Manufacturing costs:

    Variable

6.25

625,000

    Fixed

1.75

175,000

8.00

800,000

Gross profit

4.50

450,000

Marketing costs:

    Variable

1.80

180,000

    Fixed

1.45

145,000

3.25

325,000

Operating profit

$ 1.25

$ 125,000

If the order is accepted, variable marketing costs on the special order would be reduced by 25 percent because all of the robes would be packed and shipped in one lot. However, if the offer is accepted, management estimates that it will lose the sale of 2,000 robes at regular prices. What is the net gain or loss from the special order?

In: Accounting

Consider the following page reference string: 0, 1, 2, 3, 1, 0, 4, 5, 1, 0,...

Consider the following page reference string:

0, 1, 2, 3, 1, 0, 4, 5, 1, 0, 1, 2, 6, 5, 2, 1, 0, 1, 2, 5

How many page faults would occur for the following replacement algorithms, assuming one, three, five, and seven frames? Remember that all frames are initially empty, so your first unique pages will cost one fault each.

  • Optimal replacement
  • LRU replacement
  • CLOCK replacement
  • FIFO replacement

In: Computer Science

Contrast the medical model of psychological disorders with the biopsychosocial approach to disordered behavior. How does...

Contrast the medical model of psychological disorders with the biopsychosocial approach to disordered behavior. How does this relate to Community Psychology?

In: Psychology

Do you think different types of life traumas -- for example, loss of a job, death...

Do you think different types of life traumas -- for example, loss of a job, death of a spouse, divorce, or a major health problem -- would prompt a person to refocus on different previous developmental solutions? Please describe solutions that you believe a person in middle adulthood would use to cope with traumas, and factors that might influence how well or how poorly the person copes.

In: Psychology

Describe the early development of language in preschoolers. What are the contributions of biology and experience...

Describe the early development of language in preschoolers. What are the contributions of biology and experience to language acquisition? Some pediatricians might treat language as though it is similar to walking-they would have a strict maturationist (nativist) viewpoint. Explain to them why an interactionist viewpoint might be more appropriate. Give them some specific advice that they could share with parents for how to support the language development of their infants, toddlers, and preschoolers. Should parents be advised that their interactions with their children will have a dramatic or a modest impact on their children’s language

In: Psychology