Interpersonal skills during discussion with the boss

Answers

Answer 1

Answer:

Interpersonal skills are used to communicate with people. Such skills can be individually and in groups measured. Some interpersonal abilities include verbal communication, nonverbal communication, listening ability, ability to decide, etc. Facilitators and observers, therefore, monitor if participants have unqualified abilities.

Explanation:

— thinking about your boss's communication can be sufficient to cause anxiety and stress. You can nevertheless be confident and effective in communication with a little preparation and practice.

1. Write down all the topics you want to talk to and communicate before you talk to your boss.

2) Make sure you know what your boss wants or needs.

3) Rehearse in privacy what your boss is going to say.

4) Use qualifying words like "maybe" or "maybe" instead of absolute words, like "always," "everyone," "every time" or "never." 4) When you talk to your boss. Absolute speech can increase the defense and resistance of a person.

5) Make "I" statements, like "You" statements, like "you did not give me guidance," in the place of "You."

6) If you're emotional, avoid going to your boss. Give yourself time to refresh your thoughts and calm.

7) Talk to your boss before problems get hot and emotional involvement if possible.

8) Be a listener active. Learn what your boss says and really listen. Ask your boss to repeat or clarify an issue if you missed or were unaware.

9) Try to repeat and rephrase your boss's points to show that you listen to him and understand him or her during a convergence.

10) Practice a fine linguistic body. Look at your boss, lean in, and avoid fidgeting.

11) Be confident, not aggressive.

12) Maintain an open mind and compromise open.

13) Avoid spreading or gossiping about your boss's rumors.

14) Have good behavior.

15) Make sure you give love and recognition to your boss when it should.

16) Contact your boss regularly for a convenient relationship to develop and maintain.


Related Questions

Please Help Me!!!!!!!!!!!!!


A commercial photographer would most likely be employed by which of the following?

A business
A magazine
A travel agency
All the above

Answers

Explanation:

a magazine cause it helps put out commercial

discuss seven multimedia keys​

Answers

Answer:

Any seven multimedia keys are :-

□Special keys

Alphabet keys

Number keys

□Control keys

Navigation keys

Punctuation keys

Symbol keys

Carla is assigning tasks to others and she needs to ensure that she is aware of their progress. Which option should
she choose?
O Send status report when I complete an assigned task
O Completed task color
O Set Quick Click flag
O Keep my task list updated with copies of tasks

Answers

Answer: Send status report when I complete an assigned task

Explanation:

In order to be aware of their progress, the option to choose is the "Send status report when I complete an assigned task".

To do this click on options on the tools menu, then click on task options. Then, after the keep updated copies of the assigned tasks on my task list has been selected in the check box, one will then select "Send status reports when the assigned tasks are completed".

You would like to upgrade the processor in your system to a 64-bit processor. Which of the components will you most likely need to upgrade as well to take full advantage of the new processor

Answers

Answer: Operating system

Explanation:

The components that will be required to upgrade as well to take full advantage of the new processor is the Operating system.

The operating system manages the software resources and the computer hardware, through the provision of common services for the computer programs. It simply supports the basic function of the computer like task scheduling

Explain briefly the FIREWALLS

Answers

Answer:

Think of a firewall as your own personal security guard. The firewall will block unapproved websites from talking to your computer and will stop your computer from talking to unapproved/unnecessary websites. Hope this helps!

Explanation:

Write a function called reverse Return that is almost the same job as reverse, but instead of printing the letters straight to the screen, it returns a String in which the letters have been reversed. The function call would look like:

Answers

Answer:

The function in Python is as follows:

def reverse(inputstr):  

   outputstr = ""

   for i in inputstr:

       outputstr = i + outputstr

   return outputstr

Explanation:

This defines the function

def reverse(inputstr):

This initializes the output string

   outputstr = ""

This iterates through the input string

   for i in inputstr:

This generates the output string by reversing the input string

       outputstr = i + outputstr

This returns the reversed string

   return outputstr

Does anyone know what type of Chromebook this is?

Answers

A chromebook of course lol jk look it up and u can find what kind it is

Answer: Its............ A Chromebook type of Chromebook...??

Explanation:

Ion know I aint a geek, geezer -_- (Thats a lie)

the derivative of
[tex]ln \: |x| [/tex]
is an odd function
True or False​

Answers

Answer:

true

Explanation:

the derivative of lnx is 1/x and 1/x is and odd function because x^-1 is raise to a negative odd number

Answer:

jidjdjdjdkdjdjkdjdhdjurjrhrjdjdjdjdjddjjd

Explanation:

kkfjfjfjfjfjfjfjfjfjjfjfjffjjfjfjfjfjf sorry po

what is a task that is not associated with loading existing data into a new ERP system.
A. Data mapping
B. Data cleanup
C. Data loading
D. Data reporting​

Answers

Answer:

I believe the answer would be D. Data Reporting!

hope this helps! <3

Answer:

Correct Answer D:- DATA Reporting.

Explanation:

Data reporting is the collection and submission of data that leads to accurate ground-based analysis incorrect data reporting can lead to extremely informed decision-making using wrong evidence. Data reporting is not only about information but also about data collection.

The reporting of data may be an unbelievably difficult task. In order to achieve the job of counting every resident of a country, census bureaus can hire even hundreds of thousands of workers.

Data reporting is a step that translates raw information into information. It is not the data analysis that transforms data and information into insights. If data is not reported, the problem is known as underreporting the opposite is wrong.

calculateAverageSalary(filename): Returns the average salary of all employees rounded down to 2 decimal points highestHireMonth(filename): Returns the month (integer) during which most hires were made over the years getMonth(date): Helper function to extract and return the month number from a date given as a string input of format MM/DD/YY. Return type should be an int.

Answers

Answer:

An extract from the answer is as follows:

for i in salary:

 total_salary+=float(i)

 count+=1  

return round(total_salary/count,2)

def getMonth(date):

ddate = []

for i in date:

 ddate.append(i.split('/')[0])

mode = int(max(set(ddate), key=ddate.count))

return mode  

def highestHireMonth(filename):

month = []

See explanation for further details

Explanation:

Given

Attachment 1 completes the question

The complete answer could not be submitted. So, I've added it as an attachment.

See attachment 2 for program source file which includes the main method.

Comments are used to explain difficult lines

Declare a seven-row, two-column int array named temperatures. The program should prompt the user to enter the highest and lowest temperatures for seven days. Store the highest temp in the first column and the lowest in the second column. The program should display the average high and average low temperature. Display the average temperatures with one decimal place.

Answers

Answer:

Following are the code to the given question:

#include<iostream>//header file

#include<iomanip>//header file 

using namespace std;

int main()//main method

{

  double temperatures[7][2];//defining a double array temperatures

  double lowAvg=0, highAvg=0;//defining a double variable

  for(int i = 0;i<7;i++)//defining loop to input the value

  {

     cout<<"Enter day "<<(i+1)<<" highest temperatures: ";//print message  

     cin>>temperatures[i][0];//input highest temperatures value

     cout<<"Enter day "<<(i+1)<<" lowest temperatures: ";//print message  

     cin>>temperatures[i][1];//input lowest temperatures value

  }  

  cout << fixed << setprecision(1);//using the setprecision method  

   for(int i = 0;i<7;i++)//defining loop to calculating the Average of the  

  {

     highAvg += temperatures[i][0];//holding highest value

     lowAvg += temperatures[i][1];//holding lowAvg value

  }

  cout<<"Average high temperature = "<<highAvg/7<<endl;//calculate amd print highest temperature Average

  cout<<"Average low temperature = "<<lowAvg/7<<endl;//calculate amd print lowest temperature Average

  return 0;

}

Output:

Please find the attached file.

Explanation:

In this code, a 2D array "temperatures" and two-variable "highAvg, lowAvg" as double is declared, that uses the two for loops.In the first loop, it uses an array to input the value from the user-end.In the second loop, it uses the double variable that calculates the average value of the temperature.

Holly the Hacker has a list of 100,000 common passwords. She wants to use this list to break into UNIX-like systems that use a password file with lines consisting of:

Answers

The question is incomplete. The complete question is :

Holly the Hacker has a list of 100,000 common passwords. She wants to use this list to break into UNIX-like systems that use a password file with lines consisting of:

The user's ID in plaintext.

10 bits of randomly chosen "salt," in plaintext.

The user's password, concatenated with the salt, and then encrypted.

There are very many such systems around the world, and Holly plans to steal the password files from as many as she can. The average system has 50 users in its password file.

Holly wants to create a master list of the encrypted versions of all the 100,000 passwords on her list, encrypted with all possible salt values. To create this master list, approximately how many encryptions of a password-concatenated-with-salt would Holly have to perform?

A. 2 million

B. 5 million

C. 100 million

D. 1 million

Solution :

It is given that the hacker, Holly wants break into the  UNIX-like systems using 100,000 common passwords that she has on her list. The system has at an average of 50 users in the password files.

Therefore, to create a master list, Holly have to perform about 50 x 100,000 = 5,000,000 encryptions for the password concatenated-with-salt.

Thus the correct option is option (B).  5 million

you can use a minus sign to make a negative numberlike -2. What happens to each of the following 2++2
2 - -2
2+ - 2
2- +2

Answers

2 - -2 = 4
2 + -2 = 0
2 - +2 = 0
:)

If we use a minus sign to make a negative number like -2. Then the following terms will be:

2 - -2 = 42 + -2 = 02 - +2 = 0What is calculation?

A calculation is a methodical, well-thought-out process. Calculating the solution to a math problem is the first type of calculation, for which you might use a calculator. The calculation also includes applying logic to a non-numerical issue.

Plus, minus, multiply, and divide are the basic signs used in math to calculate problems. These signs also change when come n contact with each other, like plus and minus are equal to minus.

Like here, 2 - -2. Minus and minus is plus, so two plus two is four.

2 + -2 = 0, here plus minus = minus, so two minus two is 0.

Therefore, the calculation for the given is

2 - -2 = 42 + -2 = 02 - +2 = 0

To learn more about calculation, refer to the link:

https://brainly.com/question/14106833

#SPJ2

What is XOR and XNOR logic gates?

Answers

Answer:

There are two remaining gates of the primary electronics logic gates: XOR, which stands for Exclusive OR, and XNOR, which stands for Exclusive NOR. In an XOR gate, the output is HIGH if one, and only one, of the inputs is HIGH. ... An XNOR gate is an XOR gate whose output is inverted.

Explanation:

There are two remaining gates of the primary electronics logic gates: XOR, which stands for Exclusive OR, and XNOR, which stands for Exclusive NOR. In an XOR gate, the output is HIGH if one, and only one, of the inputs is HIGH. ... An XNOR gate is an XOR gate whose output is inverted..

Brody is concerned that he is going to exceed the quota set for his mailbox. Where should he go to access the Mailbe
Cleanup tools?
O Backstage view
Inbox
O Deleted Items Folder
Outlook Web App
ANSWER QUICK IM TIMED WILL GIVE OUT PTS

Answers

Answer:

Outlook Web App

Explanation:

For Brody to accomplish this he will need to go to the Outlook Web App. Here, he will need to navigate to the top of the application where the toolbar is located. Then he will need to click on File, then Tools, and finally Mailbox Cleanup. This will give him access to all of the cleanup tools that the Outlook Mailbox has for managing all of his electronic mail as well as adjusting the quota set for his mailbox.

Answer:

A. Backstage view indox

Explanation:

Write a program named prices.c that repeatedly asks users to enter the price of an item until they enter zero. Prices less than zero will be ignored. The program will then print the number of items purchased, the subtotal of the prices, the sales tax charged (at a rate of 7.5%), and the grand total.

Answers

Answer:

Explanation:

The following is written in Java. It creates a while loop that requests price from the user and goes adjusting the quantity and subtotal as more prices are added. If 0 is entered it breaks the loop and outputs the quantity, subtotal, tax, and grand total to the user.

import java.util.Scanner;

class Brainly {

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       int quantity = 0;

       double subtotal = 0;

       double tax, grandTotal;

       while (true) {

           System.out.println("Enter a price: ");

           double price = in.nextDouble();

           if (price == 0) {

               break;

           } else if (price > 0) {

               quantity += 1;

               subtotal += price;

           }

       }

       tax = subtotal * 0.075;

       grandTotal = subtotal + tax;

       System.out.println("Quantity: $" + quantity);

       System.out.println("Subtotal: $" + subtotal);

       System.out.println("Tax: $" + tax);

       System.out.println("GrandTotal: $" + grandTotal);

   }

}

Please help me with this question

Answers

Answer:

2

Explanation:

evaluate the formula for n=2, then it says:

a₂ = 2a₁ - 3·2

So

a₂ = 2·4 - 3·2 = 8-6

a₂ = 2

Smartphones are more likely to be used than laptop computers for everyday ICT use.
Describe three advantages of using a smartphone rather than a laptop computer.

Answers

Answer:

it's small amd you can carry it everywhere

easy to use

long lasting battery

Explanation:

hope the answers are right:)

Function newPriceTable = UpdatePriceTable(origPriceTable, changePrice, colNum) % UpdatePriceTable: Adds changePrice to column colNum of origPriceTable % Returns the updated price table newPriceTable % Inputs: origPriceTable - original price data table % changePrice - column array of pricing changes % colNum - specified column of priceTable to update % % Outputs: newPriceTable - updated price data table % Assign newPriceTable with data from priceTable; newPriceTable = [0, 0; 0, 0;]; % FIXME % Assign newPriceTable column specified by colNum with original price % data updated by changePrice newPriceTable = [0, 0; 0, 0;]; % FIXME end Run Your Solution Code to call your function when you click Run

Answers

Solution :

The function code is :

function newPriceTable = UpdatePriceTable(origPriceTable,changePrice, colNum)

newPriceTable = origPriceTable:

newpriceTable(:,colNum) = newPriceTable(:,colNum)+changePrice;

end

UpdatePriceTable ([19.99, 9.99; 14.99, 8.99;], [-1.00, -1.50] , 1)

ans = 18.9900      9.9900

         13.4900      8.9900

Question 6 Which of the following statements about datasets used in Machine Learning is NOT true? 1 point Testing data is data the model has never seen before and is used to evaluate how good the model is Training subset is the data used to train the algorithm Validation data subset is used to validate results and fine-tune the algorithm's parameters Training data is used to fine-tune algorithm’s parameters and evaluate how good the model is

Answers

Answer:

Training data is used to fine-tune the algorithm’s parameters and evaluate how good the model is

Explanation:

The statement about datasets used in Machine Learning that is NOT true is "Training data is used to fine-tune algorithm’s parameters and evaluate how good the model is."

This is based on the fact that a Training dataset is a process in which a dataset model is trained for corresponding it essentially to fit the parameters.

Also, Testing the dataset is a process of examining the performance of the dataset. This refers to hidden data for which predictions are determined.

And Validation of dataset is a process in which results are verified to perfect the algorithm's details or parameters

Why are mobile apps often easier to develop than desktop apps?

mobile apps use a lower screen resolution

mobile apps can be created in C#

mobile apps use less memory than desktop apps

mobile app creation platforms are available that reduce the need to code

Answers

Answer:

Mobile app creation platforms are available that reduce the need to code.

Explanation:

Simple app creation softwares and tools are all over the place for mobile app creation. To create a mobile app, no coding knowledge or experience is needed unlike desktops apps that requires the knowledge of some coding languages like python, JavaScript etc.

The availability of these softwares and platforms have made mobile apps creation easy.

Which of the following ribbon tools would be most efficient for applying multiple
changes to text formatting?
a. Font Dialog Box
b. Paragraph Styles
c. Styles Dialog Box
d. Find and Replace

Answers

Answer:

Option A, Font Dialog Box

Explanation:

In order to make changes in the text formatting, the font setting in the dialog box can be used on the Ribbon's Home tab.

From the font settings in Word 2016, one can change the following change font color, size, style etc.

Hence, option A is correct

You issue a transmission from your workstation to the following socket on your LAN: 10.1.145:110. Assuming your network uses standard port designations, what Application layer protocol are you using

Answers

Answer:

POP

Explanation:

The application layer protocol that is been used here is POP, given that you issued a transmission to the socket on you LAN: 10.1.145:110.  and you use a standard port designation

Reason:

110 ( port number ) represents a POP3 process that is always used in a TCP/IP network , and the socket address started with an IP address as well. hence we can say that the application layer protocol is POP

21
22
23
24
25
26
27
28
29
30
TIME REMA
01:08:
Which view is most often used to reorder slides in a presentation that has already been created?
HERE
ОО
Outline view
Slide Sorter view
O Reading view
O Normal view

Answers

Answer:

slide sorter view

Explanation:

Explanation: while you can use 3/4 of these options to reorder slides, it is more common to use slide sorter view.

Slide sorter view. while you can use 3/4 of these options to reorder slides, it is more common to use slide sorter view.

What is Slide sorter view?

You can see and sort the presentation slides in PowerPoint using the Slide Sorter view. Click the "Slide Sorter" button in the presentation view buttons in the Status Bar to enter the Slide Sorter view.

The presentation slides can be added to, removed from, and copied using the Slide Sorter view. The visual flow of the presentation is also displayed in PowerPoint's Slide Sorter view. Additionally, you may add and observe a slide transition animation here.

  All of the presentation slides in PowerPoint's Slide Sorter mode are displayed as thumbnails. The slide's content cannot be changed in this view. However, many of the functions available in the PowerPoint Slide Sorter view

Therefore, Slide sorter view. while you can use 3/4 of these options to reorder slides, it is more common to use slide sorter view.

To learn more slide sorter view, refer to the link:

https://brainly.com/question/7696377

#SPJ7

You're installing two new hard drives into your network attached storage device. Your director asks that they be put into a RAID solution that offers redundancy over performance. Which would you use?
a. RAID 0
b. RAID 1
c. RAID 5
d. RAID 6
e. RAID 10

Answers

Answer:

d. RAID 6

Explanation:

RAID is a data storage technology that combines multiple physical disk drive components into a single logical unit. The functions of RAID is to provide performance and redundancy.

RAID 0 provides data stripping but it does not offer data stripping.

RAID 1 increases performance to about 2x but it limits the disk capacity to about 50%

RAID 5 provides redundancy and increased perfomance but it is limited to small disk drive.

RAID 6 also provides redundancy but it slows performance

RAID 10 increases performance and data protection.

RAID 6 is the best drive that offers redundancy over performance.

Wi-fi refers to a network that is based on the ____ standard

Answers

Answer:

Wi-fi refers to a network that is based on the 802.11 standard.

Answer:

It is based on the 802.11 standard

Explanation:


What is the importance of using DNS?

Answers

Answer:

DNS provides a name to number (IP address) mapping or translation, allowing internet users to use, easy to remember names, and not numbers to access resources on a network and the Internet.

Thank you.......

Have a good day......

Answer:

DNS stand for Domain Name System

Explanation:

The benefits of DNS are that domain names: can map to a new IP address if the host's IP address changes. are easier to remember than an IP address. allow organizations to use a domain name hierarchy that is independent of any IP address assignment.

Is this one are you looking for??

What are the things that a computer literate understands?Name thems.​

Answers

Answer:

•Determine your IP address.

•Verify physical connectivity to the network.

•Check that you have a logical connection to the network.

•Find out what path network traffic takes to get to its destination.

Translate from DNS names to IP addresses.

HEALTH AND SAFETY IN USING ICT TOOLS

Answers

Answer:

Health and Safety using ICT Tools.

...

Some of the long-term health effects are:

Headaches and tiredness. Using the mobile phone for hours can be very stressful and may lead to mild or severe headaches.

Creates joint pain. ...

Mobile phone battery explosion. ...

Induced ringing!

Answer:

ICT tools for health and safety. Find common health issues related to computer usage and other ICT tools.

Explanation:

Use of ICT instruments

ICT tools are computer-based equipment used for processing and communicating information and technology. There are certain ICT tools;

- TV.

- System of Public Address

- Radio

- Mobile Phone

- Computer

What are the adverse consequences of long-term television exposure?

You don't have eyes for hours to stare at the TV.

Taking hours on the TV can be dangerous and dangerous for the eye.

If you starve continuously, your eye will get overworked and this will cause an irritation of the eye, such as dry eye, red, itchy, and watery eyes, fatigue, eyelid weight or forehead, as well as eye concentration.

Certain long-term effects on health are:

1. Tiredness and headaches.

2. Make pain joint.

3. Battery explosion mobile phone.

4. Ringing induced! In ears.

Design a class named largeIntegers such that an object of this class can store an integer of any number of digits. Add operations to add, subtract, multiply, and compare integers stored in two objects. Also add constructors to properly initialize objects and functions to set, retrieve, and print the values of objects. Write a program to test your class. g

Answers

Answer:

Here the code is given as follows,

Explanation:

Code:

import java.util.Scanner;

//created class named largeintegers

class largeintegers{

   //class can hold a long number

   long number;

   //constructor to set number

  largeintegers(long number){

      this.number=number;

  }

  //getNumber method to get number

  long getNumber(){

      return number;

  }

  //below are some basic operations

  long addition(long num1,long num2){

       return num1+num2;

   }

   long subtract(long num1,long num2){

       return num1-num2;

   }

   long multiply(long num1,long num2){

       return num1*num2;

   }

   boolean compare(long num1,long num2)

   {

       return num1>num2;

   }

  public static void main(String[] args) {

      //declared to long numbers

      long number1,number2;

      //scanner class to take user input

      Scanner sc= new Scanner(System.in);

      //taking input numbers

      System.out.println("Enter a Number ");

      number1=sc.nextLong();

      System.out.println("Enter 2nd Number :");

      number2=sc.nextLong();

      //created two objects

      largeintegers object=new largeintegers(number1);

      largeintegers object2=new largeintegers(number2);

      //displaying two numbers

      System.out.println("Entered Numbers ");

      System.out.println(object.getNumber());

      System.out.println(object2.getNumber());

      //calling basic methods using created objects

      System.out.println("Some Operations on Given two Numbers ");

      System.out.println("Addition:"+object.addition(object.getNumber(), object2.getNumber()));

      System.out.println("Subtraction:"+object.subtract(object.getNumber(), object2.getNumber()));

      System.out.println("Multiplication:"+object.multiply(object.getNumber(), object2.getNumber()));

      System.out.println("Comparison:");

      if(object.compare(object.getNumber(), object2.getNumber())==true)

      {

          System.out.println("First Number is Greater than Second Number ");

      }

      else

      {

          System.out.println("Second Number is Greater than First Number ");

      }

      sc.close();

  }

}

Output:-

Other Questions
What does it mean buy Determine the total volume of the doghouse.Ive already done all the work for each shapes on a dog house, I figured out all the volumes for each but does this question mean, do I add all my volume together? They are all really big numbers Two radar stations 2.5 miles apart are tracking an airplane. the straight-line distance between Station A and the plane is 7 miles. the straight-line distance between station B and the plan is 9 miles. What is the angle of elevation from Station B to the plane? The laboratory exercise for this chapter addresses kinematic motion. You have experienced these motions in everyday life. Instead of a discussion board requiring posts in a forum, this assignment has been modified to accept your response to the following questions in this assignment. Be sure to clearly address each of the points below and show all of your work What is the difference between a vector and a scalar quantity? List two examples each of vector and scalar quantities Write the due date of this assignment: Month and Day (For example, July 15 would be Month - 7. Day = 15) For a building having a height equal to the quantity you have recorded for Day in meters in our example 15 meters), compute the time required for the ball to fall to the ground while experiencing acceleration due to gravity (g=9.8m/s) How fast was the ball traveling when it hit the ground? Submit the kinetics Assignment by 11:59 p.m. (ET) on Monday, 1. Deborah finds that the theoretical probability of flipping "heads" on a fair coin was50%. After she flipped the fair coin 100 times, she calculated that she Flipped "heads"45 times. What is the percent difference in theoretical and experimental probability? What's The actual length of QR (round to 3 decimal places) ? Write the equation in standard form for the circle with center (-3,3) and radius 3 HELP PLS WHAT DOES THIS MEAN IN ENGLISH FROM FRENCH?en dometut lau fabi Name this tube like cavity? I think its the Esophagus. Can someone help me? What are the four types of organization structures Read tge ramble to the constitution which outlines the purpose of the new federal government under the constitution Gizmo Warm-up Like an unpopped kernel in the microwave, a radioactive atom can change at any time. Radioactive atoms change by emitting radiation in the form of tiny particles and/or energy. This process, called decay, causes the radioactive atom to change into a stable daughter atom. The Half-life Gizmo allows you to observe and measure the decay of a radioactive substance. Be sure the sound is turned on and click Play Tech Solutions is a consulting firm that uses a job-order costing system. Its direct materials consist of hardware and software that it purchases and installs on behalf of its clients. The firms direct labor includes salaries of consultants that work at the clients job site, and its overhead consists of costs such as depreciation, utilities, and insurance related to the office headquarters as well as the office supplies that are consumed serving clients. Tech Solutions computes its predetermined overhead rate annually on the basis of direct labor-hours. At the beginning of the year, it estimated that 55,000 direct labor-hours would be required for the periods estimated level of client service. The company also estimated $302,500 of fixed overhead cost for the coming period and variable overhead of $0.50 per direct labor-hour. The firms actual overhead cost for the year was $321,300 and its actual total direct labor was 58,850 hours. Required: 1. Compute the predetermined overhead rate. 2. During the year, Tech Solutions started and completed the Xavier Company engagement. The following information was available with respect to this job: Direct materials $ 50,850 Direct labor cost $ 27,300 Direct labor hours worked 220 Compute the total job cost for the Xavier Company engagement. what is kranz anatomy in biology ? The function h is defined by the following rule h(x)=-5x-3 The temperature of an ideal gas in a sealed 0.40m3 rigid container is reduced from 350 K to 270 K.The final pressure of the gas is 60 kPa. The molar heat capacity at constant volume of the gas is 28.0 J/(mol K). The heat absorbed by the gas is closest to what is the effect on the market when suppliers under invest in their businesses Determine the equation of the line that passes through (5,2)and has the same y-intercept as y = 3 Which of the following ribbon tools would be most efficient for applying multiplechanges to text formatting?a. Font Dialog Boxb. Paragraph Stylesc. Styles Dialog Boxd. Find and Replace Please answer this correctly without making mistakes