write a program that prints the values 3 * 1000 * 1000 * 1000 3.0 * 1000 * 1000 * 1000 explain the results.

Answers

Answer 1

The following program calculates and prints the results of multiplying 3 by 1000 by 1000 by 1000, first as an integer and then as a floating-point number.

To write a program that prints the values 3 * 1000 * 1000 * 1000 3.0 * 1000 * 1000 * 1000, you can use the following code:

#include <stdio.h>

 printf("3.0 * 1000 * 1000 * 1000 = %f\n", 3.0 * 1000 * 1000 * 1000);

3.0 * 1000 * 1000 * 1000 = 3000000000.000000


The value 3 * 1000 * 1000 * 1000 is an integer, which has no fractional component, so the result is 3000000000. The value 3.0 * 1000 * 1000 * 1000 is a floating point number, which is a number with a fractional component, so the result is 3000000000.000000.

Thus, the integer multiplication results in a value of 3000000000, while the floating-point multiplication results in 3000000000.000000, since the latter allows for a fractional component.

To know more about floating-point number click here:

https://brainly.com/question/23209195

#SPJ11

Answer 2

Answer:

3000000000.00000000

Explanation:


Related Questions

the name of the second generation of computers see​

Answers

Answer:

transistor computer

Explanation: A transistor computer, now often called a second generation computer, is a computer which uses discrete transistors instead of vacuum tubes. The first generation of electronic computers used vacuum tubes, which generated large amounts of heat, were bulky and unreliable.

Question # 4
Multiple Choice
is the notion of repurposing a common operation.
O polyhedron
O polytheism
O polyorientation
O polymorphism

Answers

Answer: polymorphism

polymorphism or D

Explanation:

trust I did it

Polymorphism is the notion of repurposing a common operation. The correct option is d.

What is polymorphism?

Malware that is polymorphic has the potential to evade detection mechanisms that could harm the system. These detection methods might enable antivirus software.

In the context of genomics, polymorphism refers to the occurrence of two or more variant variants of a certain DNA sequence in various individuals or populations. A single nucleotide can vary in polymorphism, which is the most prevalent kind.

Polymorphism refers to the existence of various forms. Polymorphism can be simply defined as a message's capacity to be presented in multiple forms. An individual who can exhibit multiple traits at once is a real-world example of polymorphism.

Therefore, the correct option is d, polymorphism.

To learn more about polymorphism, refer to the link:

https://brainly.com/question/1238842

#SPJ5

would you be comfortable with a robot adjusting your investment portfolio if it came with significantly lower fees than a human financial advisor? Why or why not

Answers

Answer:

Sure, as long as it gets the job done and doesn't screw things up & is user friendly. I would also want to be able to turn it on and off at will.

Explanation:

In 3–5 sentences, describe how technology helps business professionals to be more efficient.

Answers

Answer:

Technology helps business professionals, keep more organized, communicate better, and effectively keeps businesses secure. Technology helps keep employee information and business paper work more organized using computers and software; while making it easier to communicate with employee's using e-mail and memo's.

Explanation:

                             /\ correct

It is early in the season and the night of the big football rivalry game, and you are so excited to spend time with friends and watch your boyfriend play ball. However, you are assigned to one of the football spreads and must take pictures. What do you do?​

Answers

Answer:

take the pictures while watching him play

Explanation:

Need help with these

Need help with these

Answers

Answer:

1. D

2. B

3. D

Explanation:

vnasgbaenVmad7kDg Zg

What is the full form of RJ 45​

Answers

Answer:

Registered Jack Type 45

When operating your vessel with a vhf radio, what channel must you monitor?.

Answers

Answer: Channel 16. If you hear a MAYDAY call, remain silent, listen, and write down information about the boat in distress.

Hope this helps!

Based on what you know about the Sort and Find functions, return to the database file to determine the answers to the following questions.

In which year did most people update their contact information?

1988

2010

2011

2012

Answers

Answer:

2010

Explanation:

Most of the people updated their information in the database in the year 2010. The database files have different functions which enable the sorting of data according to the contact information with year wise filter.

Answer:

It’s 2012

Explanation:

Which is the best reason for why it is important to keep personal information private online?
to prevent becoming the target of a scam
to ensure strangers do not approach them
to prevent others from using it dishonestly
to stop people from following them online

Answers

Answer:

A. To prevent becoming the target of a scam

Explanation:

The more person information you put out on the internet, the easier it is for people to steal it and use it for malicious purposes.

Answer:

To prevent others from using it dishonestly.

Explanation:

Keeping private information to yourself is always a safe approach. Giving out your private information could result in false behavior on your account.

What system acquisition method has the advantages of freeing up it resources by bypassing the is department and avoids delays, and allows users to control the design of the application and make changes as needed?.

Answers

Rapid Application Creation By avoiding the IT department, users can take control of the application's design and make changes as needed.

What is purchase plan?

The method of setting objectives and tactics to obtain the best value in a specific purchase is known as purchase planning.

Purchase planning is the process by which a company decides when, what, where, and from whom to buy.

Simultaneous inventory management saves money while allowing customers to meet their needs on time. Inventory management software aids in the cost control of operational expenses.

The security policy for system acquisition, development, and maintenance applies information security to software systems within an organization and incorporates it into policies.

Thus, Rapid Application Development Users can take control of the application's design and make adjustments as needed by avoiding the IT department.

For more details regarding purchasing plan, visit:

https://brainly.com/question/29343640

#SPJ1

Which of the following STEM discoverers is known as the “Prince of Math?”

Answers

The German mathematician & physicist ”Carl Friedrich Gauss”

Born: April 30, 1777, Brunswick, Germany
Died: February 23, 1855, Göttingen, Germany

The answer is:

Carl Friedrich Gauss

Write a Console program, let users to enter prices calculate subtotal, tax, and total.

- Delcare variable data type as decimal (6 variables needed)
decimal apple;

- Conver string to decimal from input
apple = Convert.ToDecimal(Console.ReadLine());

- Do addition for subtotal

- Multiplication for tax (0.065M) --- M or m stands for money value, read page 94.

- Addition for total

- You need to show only two digits after decimal point
Console.WriteLine(" Subtotal: ${0}", String.Format("{0:0.00}", subTotal));



blank line: Console.WriteLine("")



Console.Write(" Apple: $");
apple = Convert.ToDecimal(Console.ReadLine());

Answers

Answer:

Explanation:

This is a project I already submitted, but I never received feedback. All my upcoming assignments will be based on this, so I wanted to make sure it is correct. I got this program to work as far as calculating the information, but I was hoping someone could please let me know if it meets the parameters/requirements?

I did attempt it. It works and adds the items exactly how the example showed in the video. However, I wanted to make sure my code is solid, and not just a mishmash or working because I got lucky, and if there is a better more solid way to do this I want to make sure I can. I do want feedback so I can learn and get better and I am trying my hardest. I always right out all the code I see here and try it and learn what it does piece by piece, because it helps me learn and improve. I also want to make sure it is going to work once I start the code for the next half of the requirements.

i cant really help they dont let us put codes on here

6. Convert the following 16-bit BCD binary number to equivalent Gray code. Show your answer derivation steps. a) (1001 1010 1011 0001)2 b) )0110 1100 0001 1000)2 7. Convert the following 16-bit Gray code to equivalent BCD binary number. Show your answer derivation steps. c) (1001 1010 1011 0001)2 d) (0110 1100 0001 1000)2 8. Find the equivalent ASCII of the following strings in hexadecimal. a) Boolean Algebra b) I Love Digital Logic

Answers

The Gray code of the 16-bit BCD binary number: a) (1001 1010 1011 0001)₂ is (1100 1111 1101 0010) Gray code. b) (0110 1100 0001 1000)₂ is (0100 0101 0100 1100) Gray code. The BCD binary number of the Gray code: c) (1001 1010 1011 0001) Gray code is (1101 1000 0110 0010)₂ BCD binary number. d) (0110 1100 0001 1000) Gray code is (0010 1000 1010 1111)₂ BCD binary number. Equivalent ASCII of the given strings in hexadecimal: a) Boolean Algebra is 426F 6F6C 6561 6E20 416C 6765 6272 61. b) I Love Digital Logic is 4920 4C6F 7665 2044 6967 6974 616C 204C 6F67 6963.

6.

a)

To convert the 16-bit BCD binary number (1001 1010 1011 0001)₂ to Gray code, we can follow these steps:

Start with the first bit of the BCD binary number as the first bit of the Gray code.For each subsequent bit, calculate the XOR (exclusive OR) of the current bit with the previous bit in the BCD binary number.The result of the XOR operation will be the corresponding bit in the Gray code.

Applying these steps, we can derive the Gray code:

(1001 1010 1011 0001)₂ => (1100 1111 1101 0010) Gray code

b)

To convert the 16-bit BCD binary number (0110 1100 0001 1000)₂ to Gray code, we can follow the same steps as in part (a):

(0110 1100 0001 1000)₂ => (0100 0101 0100 1100) Gray code

7.

c)

To convert the 16-bit Gray code (1001 1010 1011 0001)₂ to BCD binary number, we can follow these steps:

Start with the first bit of the Gray code as the first bit of the BCD binary number.For each subsequent bit, calculate the XOR (exclusive OR) of the current bit with the corresponding bit in the derived BCD binary number so far.The result of the XOR operation will be the corresponding bit in the new BCD binary number.

Applying these steps, we can derive the BCD binary number:

(1001 1010 1011 0001) Gray code => (1101 1000 0110 0010)₂ BCD binary number

d)

To convert the 16-bit Gray code (0110 1100 0001 1000)₂ to BCD binary number, we can follow the same steps as in part (c):

(0110 1100 0001 1000) Gray code => (0010 1000 1010 1111)₂ BCD binary number.

8.

To find the equivalent ASCII of the given strings in hexadecimal:

a) Boolean Algebra

The ASCII values for each character can be converted to hexadecimal representation:

   B -> 42

   o -> 6F

   o -> 6F

   l -> 6C

   e -> 65

   a -> 61

   n -> 6E

   space -> 20

   A -> 41

   l -> 6C

   g -> 67

   e -> 65

   b -> 62

   r -> 72

   a -> 61

Convert each ASCII value to hexadecimal:42 6F 6F 6C 65 61 6E 20 41 6C 67 65 62 72 61Therefore, the equivalent hexadecimal representation is: 426F 6F6C 6561 6E20 416C 6765 6272 61

b) I Love Digital Logic

The ASCII values for each character can be converted to hexadecimal representation:

I -> 49

space -> 20

L -> 4C

o -> 6F

v -> 76

e -> 65

space -> 20

D -> 44

i -> 69

g -> 67

i -> 69

t -> 74

a -> 61

l -> 6C

space -> 20

L -> 4C

o -> 6F

g -> 67

i -> 69

c -> 63

Convert each ASCII value to hexadecimal:49 20 4C 6F 76 65 20 44 69 67 69 74 61 6C 20 4C 6F 67 69 63Therefore, the equivalent hexadecimal representation is: 4920 4C6F 7665 2044 6967 6974 616C 204C 6F67 6963

To learn more about Gray code: https://brainly.com/question/14739325

#SPJ11

What is a manual that contains standards for the design and writing of documents?

Answers

A Style Guide is a manual that contains standards for the design and writing of documents.

What is Documents?

Documents are written or printed materials that provide information or evidence. They are used for a variety of purposes, including providing legal proof of transactions, recording business activities and actions, and preserving history. Documents may contain text, images, audio, or video, and may be stored in physical or digital formats. Documents can also be used to create a written record of agreements, contracts, or other legally binding documents.  Documents are important for providing evidence or proof of anything, and are essential for many businesses, organizations, and governments.

To know more about Documents
https://brainly.com/question/1218796
#SPJ4

Edhesive code practice 4.8 Question 3

Answers

Answer:

for i in range(200,301,2):

  print(i)

Explanation:

just copy and paste 100 percent

For in rang 200,301,2

How do you find the width and height of an Oval in coding? (cmu)

Answers

Explanation:

MU Graphics is a persistent-object graphics package, meaning that it allows you to draw shapes on the screen using Python, and those shapes will stay on the screen until they are removed.

Here is an example. Click the green run button to draw a rectangle and circle. You can also change the code and run again to see your changes!

Shapes can be changed or interacted with by using the built-in event functions, like so.

Which of the following are results of technological advancements and increased automation?

Increased labor demand

Decreased productivity

Increased cost

Increased productivity

Answers

Answer:

increased productivity

Explanation:

sorry if i am not correct

increased productivity.

your code correctly determines if a relation is reflexive your code correctly determines if a relation is transitive your code correctly determines if a relation is antisymmetric your code correctly determines if a relation is a total order.

Answers

By implementing the aforementioned checks in your code, you can determine if a relation is reflexive, transitive, antisymmetric, and a total order.

To determine if a relation is reflexive, transitive, antisymmetric, and a total order, you need to write code that checks for each of these properties.

For reflexivity, the code should check if every element in the relation is related to itself. If this is the case, the relation is reflexive.

For transitivity, the code should check if for every pair of elements (a, b) and (b, c) in the relation, there exists a pair (a, c) in the relation. If this holds true for all pairs, the relation is transitive.

For antisymmetry, the code should check if for every pair of distinct elements (a, b) and (b, a) in the relation, (a, b) and (b, a) cannot both be in the relation. If this condition is satisfied, the relation is antisymmetric.

For a total order, the code should check if the relation is reflexive, transitive, and antisymmetric. Additionally, it should ensure that for every pair of distinct elements (a, b), either (a, b) or (b, a) is in the relation. If all these conditions are met, the relation is a total order.

To know more about antisymmetric visit:

brainly.com/question/31425841

#SPJ11

a firm that wanted to enable its employees to use and share data without allowing outsiders to gain access could do so by establishing an) internet internet. extranet. intranet.

Answers

A firm that wanted to enable its employees to use and share data without allowing outsiders to gain access could do so by establishing an intranet. The correct option is D.

What is an intranet?

An intranet is a computer network used within an organization to share information, facilitate communication, provide collaboration tools, operational systems, and other computing services, usually with no outside access.

An intranet is a network that allows employees to create content, communicate, collaborate, and grow the company culture.

Meanwhile, an extranet gives authorized customers, vendors, partners, or others outside the company controlled access.

Thus, the correct option is D.

For more details regarding intranet, visit:

https://brainly.com/question/19339846

#SPJ1

D. Application-based questions. 1. Anand wants to rename layers in his Krita animation project. He is not sure about the location of the Layers panel. Help him find it. today i am free​

Answers

Answer:  The Layers docker in Krita contains all of the layer management settings and actions, including checkboxes to quickly rename each layer.

Explanation:

Krita has robust layer management features that include grouping, organizing, ordering, clipping, and blending artwork. The layer filtering button allows users to filter layers by labels and names, while the thumbnail button changes the thumbnail size and indentations.

Krita supports layers, allowing you to more easily manage certain areas and components of your painting. Consider a piece of art or a collage that was created using different stacks of papers, some of which were cut to reveal the paper beneath them and others to conceal it.

What about the location of the Layers panel?

Krita offers powerful layer management tools, including the ability to group, organize, order, cut, and blend artwork. While the thumbnail button modifies the thumbnail size and indentations, the layer filtering button allows users to filter layers by labels and names.

Therefore, All the layer management options and actions, including checkboxes to easily rename each layer, are contained in Krita's Layers docker.Layers are supported in Krita, giving you additional control over certain sections and elements of your painting.

Learn more about Layers panel here:

https://brainly.com/question/29731354

#SPJ2

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

https://brainly.com/question/16118067
#SPJ1

which windows tool would be used to verify that an optical drive is recognized by the system?

Answers

"Device Manager" would be used to verify that an optical drive is recognized by the system.

Device Manager is a Windows tool used to manage and view hardware devices installed on a computer. To verify if an optical drive is recognized by the system, one can open Device Manager and look for the "DVD/CD-ROM drives" section. If the optical drive is recognized by the system, it should be listed here. If the drive is not recognized, it may indicate a hardware issue, a driver problem, or a connection problem. From Device Manager, users can update drivers, troubleshoot hardware, to ensure proper functionality.

Learn more about Device Manager here:

https://brainly.com/question/11599959

#SPJ11

independence day in school long passage plss​

Answers

Answer:

Independence Day Celebration in My School

Fifteen August, is a red letter day in the history of India. On this day in 1947, our country become free form the long imprisonment of the British rule. Since 1947, fifteenth August is celebrated every year with great joy and pride. It reminds us for the great struggle of our freedom from the British rule. The great sacrifice for our freedom fighters is remembered, which serves as a beacon light for the development of this great country. The main function is held at Red Fort in Delhi where the Prime Minister unfurls the National flag. It is an occasion of celebration for every Indian and the whole nation celebrate a holiday from all work and take a pledge to work whole heatedly for the development of this country and preservation of Independence. All those who have stood out exclusively in their respective field of work are honored in public meetings. The whole nation pays homage to the security forces who have laid down their lives for the honor and security of the country.

We also celebrated the Independence day in our school compound, with great pump and show. The school building and the ground were cleaned and decorated for the occasion. A flag pole was put up at the top of the school building. The seating arrangement was made on the platform. Markings were made on the ground with white lines. The flower pots were kept all along the path.

There was great enthusiasm among students. The school band of students took its position half an hour before the actual function was to began. The members of the band were wearing a beautiful uniform. They began to play sweet tunes. The students had taken their places well before the time. They were all in school uniform, the white paint and white shirt.

The function began exactly at 8 a.m. all who were present stood in attention. The principal unfurled the flag. The petals of rose fell on us. Five boys sang a song in honor of the national flag. It was “Vijayee Vishwa Trianga Payara”. Them by the school band. The principal look the salute. He made an impressive speech and invited the Education Minster to impressive speech and invited the Education Minster to address us. In his address he asked us to take pledge to safeguard the freedom of nation. He also reminded us of great sons of India, Mahatma Gandhi, Pt. Nehru, Subhash Chandra Bose, Lala Lajpat Roy and Chander Shekar Azad and their sacrifices to the nation. After that different groups of students presented a programme of mass drill and pyramid formation. Ever one liked the programme.

In the end, all stood in attention. All the students, teachers and guardians sang the National Anthem in chorus. With this the function was over. Today the memories of this function are as alive to me, as it was on that day.

cloud kicks needs to change the owner of a case when it has been open for more than 7 days. how should the administrator complete this requirement?

Answers

To change the owner of a case when it has been open for more than 7 days, an administrator on Cloud Kicks can complete the requirement by creating a Workflow Rule that automatically assigns the case to a different owner after 7 days have passed.

Here's how the administrator can create this Workflow Rule on Cloud Kicks:

1: Navigate to Workflow Rules

Go to Setup > Create > Workflow Rules. Click on the 'New Rule' button to create a new rule.

2: Choose Object

Select the object on which the rule is to be created. In this case, it's the 'Case' object. Click on the 'Next' button.

3: Set Rule Criteria

Set the rule criteria to "Case: Date/Time Opened greater than 7 days" to ensure that the rule only applies to cases that have been open for more than 7 days.

4: Add Workflow Action

Click on the 'Add Workflow Action' button and select 'New Field Update.'

5: Define Field Update

In the 'New Field Update' dialog box, define the field update as follows:Field to Update: OwnerID

New Owner: [Enter the name of the new owner here]

6: Save Field Update

Click on the 'Save' button to save the field update.

7: Activate Workflow Rule

Click on the 'Activate' button to activate the workflow rule. Once activated, the rule will automatically assign cases to a new owner after they have been open for more than 7 days.

Learn more about workflow rules at:

https://brainly.com/question/16968792

#SPJ11

Question #2
Multiple Select
Which statements will ask the user for a number? Select 2 options.
o answer = input('How many sodas do you want?)
O answer = in(How many sodas do you want?)
answer=input(How many sodas do you want?)
answer = input("How many sodas do you want? ")
answer in("How many sodas do you want?)

Answers

Answer:

Its D and E

Explanation:

Answer:

Options D and E are correct. The input function takes input from the user, which in this case is a number.

Explanation:

What peripheral port type was originally developed by Apple and is currently regarded as the optimal interface for digital video transfer

Answers

Answer:

IEEE 1394

Explanation: Common port used for video preipherals and other video transfer

Describe the major features of super computer

Answers

Answer:

large and operate at a high speed

A high speed low latency iterconnect
Large quantities of FLOPS (Floating Point Operations)
A large high throughput filesystem
The software infrastructure needed to write and run codes that utilize the system
Significant power and cooling infrastructure

Most professional wildlife photographers use long lenses that allow them to photograph animals from a distance. True False

Answers

Answer:

i think it is true

Explanation:

sorry if it wrong

Answer:

true

Explanation:

If your company uses a non-price competition strategy what should you focus on
A. lowering prices
B. differentiation
C. creating direct competitors
D. the public sector

Answers

B- differentiation

nonprice competition strategy refers to strategy to win a business competition that does not involved lowering price of the product.

Businesses mostly do this using differentiation strategy, which is increasing the different variety of product that they sell in the market.

Other Questions
in exercises 1-12, find the general solution of the first-order, linear equation. fx' = 4.v t Ben are considering buying a Call Option on XYZ Company stock. XYZ Company stock is currently at $75 per share, and Ben predict that it will be $50 or $100 in one year. Call Option will support Ben for XYZ Company stock in buying one year for $65. Based on these questions, answer the following questions:A. What is the value of the Call Option if the risk-free interest rate is 3%?B. Give an analysis of the relationship between buying an option with the risk of the company. In a sporting event, the championship is won by the first team to win four games. The lengths of the championship games are given in the table. Let X denote the number of games that it takes to complete a championship, and Y denote the number of games that it took to complete a randomly selected championship from among those considered in the table. Use this information to answer parts (a) and (b) below Click the icon to view the frequency table for the number of games required to complete previous championship series Determine the mean and standard deviation of the random variable Y. The mean is ___games(Round to three decimal places as needed.) The standard deviation is ___ games (Round to three decimal places as needed.) Step-by-step proving. Kindly write legibly.Let (X, ) be a topological space, A X and S A. Show that S'A = A S, where S'A and S' are the derived sets of S with respect to the subspace (A, A) and (X, ), respectively. What is Reuben Lasker's stable ocean hypothesis?First feeding anchovies only thrive when there are abundantdiatoms in upwelling centersFirst feeding anchovies only thrive when there are strongupwe Find the equation of the line that is parallel to 2x + 5y = 8, and passes through the point (-1,0). 2 2 a. y = -x + 5 5 5 2. b. y = -x + 5 C. y 2 d. y || I 5 = -x 2 || 2 e. y = + I NIONIO +1 2|52|5 I taking a whole number, how do you know if there is a number that you can multiply by itself to get it Intersex, a group of conditions involving discrepancy between external genitals and internal genitals, can have a variety of chromosomal causes that create a sex-gender difference. Which of the following chromosomal anomalies identifies a person with the chromosomes of a woman and female internal anatomy, but with male external genitals?a. XY Intersex personb. True Gonadal Intersex personc. Klinefelter's syndrome (XXY configuration)d. XX Intersex persone. Turner syndrome Find (a) and I also need to find (b) There is no guarantee that any currency will stay strong relative to other currencies, but the dollar is an exception. 13:48 True or False True False Fundamental factors, such as inflation, interest rates, balance of payments and government policies do not play much of a role in explaining short and long term fluctuations of a currency value. 234 True or False True False x' (1 point) Find the solution to the linear system of differential equations 'y' = x(t) = y(t) = 8x + 6y -9x7y satisfying the initial conditions (0) = 6 and y(0) = -8. discuss whether any work is being done by each of the following agents and, if so, whether the work is positive or negative. (a) a chicken scratching the ground a chicken does work on the ground. the ground does work on the chicken. no work is done. is the work positive or negative? the work is positive. the work is negative. no work is done. (b) a person studying (holding up a book but not moving it) the person does work on a book. the book does work on the person. no work is done. is the work positive or negative? the work is positive. the work is negative. no work is done. (c) a crane lifting a bucket of concrete the crane does work on the bucket. the bucket does work on the crane. no work is done. is the work positive or negative? the work is positive. the work is negative. no work is done. (d) the force of gravity on the bucket in part (c) the bucket does work on gravity. the force of gravity does work on the bucket. no work is done. is the work positive or negative? the work is positive. the work is negative. no work is done. (e) the leg muscles of a person in the act of sitting down the leg muscles do work on the individual. the individual does work on the leg muscles. the individual does work on the chair. no work is done. is the work positive or negative? the work is positive. the work is negative. no work is done. for the matrix a, find an orthogonal matrix p such that is diagonal. Why do you think extreme phenomena like black holes or colliding neutron stars would produce gamma rays? (PLEASE ANSWER THE QUESTIONS IN 15MIN)21. Jim was originally diagnosed with bipolar disorder and was given __________ to treat his symptoms. However, the meds did not work and he got worse. Jim then went to a new psychiatrist and received a diagnosis of schizophrenia. He was then put on ____________ and his symptoms greatly improved.a. Anxiety meds; antidepressantsb. Antipsychotics; mood stabilizersc. Stimulants; antipsychoticsd. Mood stabilizers; antipsychotics22. Emmanuels therapist helps him learn to overcome his fear of spiders through several stages of desensitization techniques where he eventually has to hold a spider in his hand. What kind of therapy is this?a. Behavior therapyb. Psychoanalysisc. Dialectical behavior therapyd. Cognitive behavioral therapy23. Margaret has suffered from severe depression for many years. She hasnt responded to antidepressants or psychotherapy. Which of the following procedures might she be considering?a. Electroconvulsive therapyb. Psychotropic medicationsc. Cognitive behavioral therapyd. MDMA-assisted psychotherapy24. You have been taking piano lessons and you have to give a performance during your year end recital. Youre very stressed because you think youll make mistakes and embarrass yourself. You calm yourself down by challenging your negative thoughts and challenge the idea that you[ll embarrass yourself. What stage of the ABC model would challenging these negative thoughts be considered?a.Activating Eventb.Beliefc.Consequenced.Dispute25. Elijahs house was destroyed during a tornado and he almost died. Hes been experiencing intrusive thoughts, avoiding the remains of his house, and has a strong fear response when a storm comes. His therapist has him describe his traumatic experience over and over again and even has him listen to recordings at home. Over time the anxiety he feels about reminders of the tornado and the aftermath lessen. What type of therapy would this be considered?a.Cognitive Behavioral Therapyb.Dialectical Behavior Therapyc.Prolonged Exposure Therapyd.Psychoanalysis26. Dr. Roberts studied the relationship between trauma and academic performance. Students reported the number of traumas they had experienced in their lifetime and also reported their current cumulative grade point average (GPA). This study is considered a(n):a. longitudinal studyb. observational studyc. experimental studyd. correlational study27.Simone vaguely remembers her 5th birthday party. Her parents had rented a bouncy house and they had pizza and cake. This is an example of an:a. Explicit memoryb. Implicit memoryc. Procedural memoryd. Sensory28. Jacob needed to study for his Physics exam. What should Jacob do to effectively learn the course material?a.Start studying a little every day by testing himself on the materialb.Reread the textbook and his notesc.Highlight the important points in the textbookd.Create summaries of every chapter29. Every time Marias daughter successfully used the potty she was rewarded with a starburst candy. This is an example of:a. Positive reinforcementb. Negative reinforcementc. Positive punishmentd. Negative punishment30 Jerry wanted to replicate John Watsons famous experiment by giving his little brother, Ben, a fear of dogs. Every time the dog approached his little brother, Jerry would shoot him with a nerf gun (that hurt) causing Ben to jump. Eventually, Ben started jumping and experiencing fear just when he saw the dog. The dog is considered the:a.Unconditioned stimulusb.Conditioned stimulusc.Unconditioned responsed.Conditioned response which source of information would be least appropriate for the nurse to investigate when attempting to determine the importance of an issue for a community-based intervention? universal clock. according to modern science, earth is about 4.5 billion years old and written human history' extends back about 10,000 years. suppose you represent the entire history of earth by 12 hours on a clock. with the birth of earth are the stroke of mid night and today at the stroke of noon. a. how much rime on the clock represents 500 million years? b. how long before noon does written human history begin? Type the standard English translation to the phrase below in the space provided. I didn't meet him at no dance. a client expresses frustration with continued thinning hair following a prolonged medical situation, during which the client did not receive adequate nutrition. on the advice of the healthcare provider, the client followed an improved nutrition diet, but after 2 months there has been no improvement in hair density. what advice should a cosmetologist give the client? during a routine fraud examination, white, a certified fraud examiner, was interviewing delta. during the interview, it became apparent to white that delta could be a principal suspect in the fraud. what should white do? (a) immediately seek an admission from delta. (b) confront delta with the allegations. (c) continue the interview without white spelling out his suspicions. (d) treat delta as an adverse witness.