The code official shall require construciton documents and specifications to be prepared by a registered design professional when___________.

Answers

Answer 1

The code official shall require construction documents and specifications to be prepared by a registered design professional when the building plan involves sophisticated features such as seismic restraint, soil conditions, and complex structural arrangements.

Other times, they can require a registered design professional to prepare the documents due to the specialized skills and knowledge required for certain types of construction projects, such as medical facilities or airports.Therefore, in most countries, before a project begins, the code official must review all plans and specifications for compliance with applicable codes and standards. If a building plan involves complex designs or involves buildings that are considered high-risk, a registered design professional must be involved in the preparation of the construction documents and specifications.

Construction documents refer to technical drawings, diagrams, and other related documentation, while specifications are the written instructions that guide the contractor in the construction of a building. The documents and specifications are very critical for the construction process, as they help ensure the safety and quality of the completed building. They are also necessary for obtaining building permits from regulatory agencies.

The requirements for hiring a registered design professional may vary depending on the location and type of project. Nonetheless, their involvement is usually necessary to ensure that all building projects are done safely, according to code, and are built to last for many years.

To know more about structural visit :

https://brainly.com/question/32354591

#SPJ11


Related Questions

directions: the question or incomplete statement below is followed by four suggested answers or completions. select the one that is best in each case. which of the following is a true statement about program documentation? responses program documentation should not be changed after it is first written. program documentation should not be changed after it is first written. program documentation is only needed for programs in development; it is not needed after a program is completed. program documentation is only needed for programs in development; it is not needed after a program is completed. program documentation is useful when programmers collaborate but not when a programmer works individually on a project. program documentation is useful when programmers collaborate but not when a programmer works individually on a project. program documentation is useful during initial program development and also when modifications are made to existing programs.

Answers

The true statement about program documentation is "that program documentation is useful during initial program development and also when modifications are made to existing programs."

Program documentation is a comprehensive program that is necessary for understanding how to develop and maintain software systems. This consists of technical and functional documentation, user documentation, system documentation, and internal documentation. Program documentation is necessary for software development because it provides guidance to the programmer and helps in the maintenance of the program.The true statement about program documentation is that program documentation is useful during initial program development and also when modifications are made to existing programs.

This implies that program documentation is not a one-time event. Program documentation is necessary to maintain the program's functionality, address issues, and make adjustments to new program requirements.

Learn more about software development: https://brainly.com/question/30611898

#SPJ11

in oracle12c, tables can be linked through which clause(s)?

Answers

In oracle12c, tables can be linked through the JOIN clause.

The JOIN clause allows the data in one table to be linked with the data in another table. A JOIN operation involves selecting rows from two or more tables based on a specific criterion or criteria.There are several types of JOINs that are used to combine tables

in SQL, including INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN, CROSS JOIN, and self JOIN.In Oracle12c, the JOIN clause can be used to link tables to one another. The join statement returns only those rows that meet the specified join condition, as shown in the code below:

SELECT column1, column2

FROM table1 INNER JOIN table2 ON table1.column_name = table2.column_name;

You can learn more about oracle12c at

https://brainly.com/question/17353181

#SPJ11

why does low air pressure usually indicate bad weather?

Answers

Areas with high pressure typically have calm, fair weather. Areas with low pressure have comparatively thin atmospheres.

Why does poor weather typically signal low air pressure?

Low pressure causes active weather. The atmosphere becomes unstable when the air rises since it is lighter than the surrounding air masses. When the air pressure increases, water vapor in the air condenses, creating clouds and rain, among other things. Both severe weather and active weather, such as wind and rain, are brought on by low pressure systems.

What type of weather lowers air pressure?

Low-pressure areas are typically associated with bad weather, while high-pressure areas are associated with calmer winds and clear skies (such as cloudy, windy, with potential for rain or storms).

To know more about low air pressure visit:-

https://brainly.com/question/2194071

#SPJ4

How do I find where I have used Premium Feature in CANVA
I am a free user

Answers

Answer: Ok go to the website (Canva) and you will see they have plan like there is one that is free, and there is one that is name pro but you have to pay $12.95 and the last one is Enterprise which cost $30.00

Hope this help :)

Explanation:

why is it important to put specific conditionals first?

Answers

Answer:

i dunno

Explanation:

Answer:

Explanation:

First conditional is used to talk about actions/events in the future which are likely to happen or have a real possibility of happening. If it rains tomorrow, I'll stay at home.

How would I add a play again feature to this RPS program in python using a while loop?

import random

choice = input("Enter Rock(R), Paper(P), or Scissors(S): ")

computer = random.randint(1, 3)

if computer == 1:

print("Computer played R.")

elif computer == 2:

print("Computer played P.")

else:

print("Computer played S.")

#Winning conditions

if computer == 1 and choice == "R":

print("Computer played Rock.")

print("Tie")

elif computer == 2 and choice == "P":

print("Computer played Paper.")

print("Tie")

elif computer == 3 and choice == "S":

print("Computer played Scissors.")

print("Tie")

elif computer == 1 and choice == "S":

print("Computer played Rock.")

print("You Lose")

elif computer == 2 and choice == "R":

print("Computer played Paper.")

print("You Lose")

elif computer == 3 and choice == "P":

print("Computer played Scissors.")

print("You Lose")

elif computer == 1 and choice == "P":

print("Computer played Rock.")

print("You Win")

elif computer == 2 and choice == "S":

print("Computer played Paper.")

print("You Win")

elif computer == 3 and choice == "R":

print("Computer played Scissor.")

print("You Win")

Answers

Answer:

import random

playAgain = True;

while playAgain == True:

   choice = input("Enter Rock(R), Paper(P), or Scissors(S): ")

   computer = random.randint(1, 3)

   if computer == 1:

    print("Computer played R.")

   elif computer == 2:

    print("Computer played P.")

   else:

    print("Computer played S.")

#Winning conditions

   if computer == 1 and choice == "R":

    print("Computer played Rock.")

    print("Tie")

   elif computer == 2 and choice == "P":

    print("Computer played Paper.")

    print("Tie")

   elif computer == 3 and choice == "S":

    print("Computer played Scissors.")

    print("Tie")

   elif computer == 1 and choice == "S":

    print("Computer played Rock.")

    print("You Lose")

   elif computer == 2 and choice == "R":

    print("Computer played Paper.")

    print("You Lose")

   elif computer == 3 and choice == "P":

    print("Computer played Scissors.")

    print("You Lose")

   elif computer == 1 and choice == "P":

    print("Computer played Rock.")

    print("You Win")

   elif computer == 2 and choice == "S":

    print("Computer played Paper.")

    print("You Win")

   elif computer == 3 and choice == "R":

    print("Computer played Scissor.")

    print("You Win")

   choice = input("Play Again?")

   if(choice == "n"):

     playAgain = False

   else:

     playAgain = True

Explanation:

Use a boolen variable and a while loop. The while loop will keep looping until it is false. In this case, I have it set up to keep looping unless the user enters n.

Tip: Make sure that all of the code is indented with the while loop.

An element in a 2D list is a_____

Answers

An array is a type of element in a 2D list. A collection of data is stored in an array, although it is frequently more helpful to conceive of an array as a collection of variables of the same type.

What is meant by array?An array is a type of data structure used in computer science that consists of a group of elements (values or variables) with the same memory size and at least one common array index or key. Each element of an array is stored in a way that allows a mathematical formula to determine its position from its index tuple. Multiple values can be stored in a variable called an array. As an illustration, you could make an array to hold 100 numbers. A collection of identically typed objects arranged in a row or column of memory that can each be independently referred to using an index to a special identifier is known as an array.

To learn more about array, refer to:

https://brainly.com/question/28565733

Question 2 (2 points)
Force is measured in
Meters per second squared
Newtons
Joules
O Meters per second
Activate Win

Answers

Answer: i don't know someone do it

Explanation:

as it related to robots and ai what type of issue is concern over payments to an injured party in accident

Answers

The concern over payments to an injured party in an accident, specifically related to robots and AI, can be categorized as an ethical and legal issue.

When accidents involve robots or AI systems, questions arise regarding who should be held responsible for the damages and injuries caused. Determining liability and ensuring fair compensation to the injured party becomes a complex matter. Some key considerations in this context include:

Legal Responsibility: Establishing the legal responsibility for accidents involving robots and AI can be challenging. It requires determining whether the accident was caused by a flaw in the technology, a failure in the design or manufacturing process, inadequate maintenance, or human error in programming or supervision.

Liability Frameworks: Current legal frameworks may need to be adapted to account for the unique challenges posed by accidents involving robots and AI. This includes issues such as strict liability laws, product liability, contractual agreements, and the attribution of responsibility between the developers, manufacturers, operators, and users of the technology.

Insurance and Compensation: Ensuring appropriate insurance coverage is available to cover damages caused by robots and AI is essential. Adequate compensation for the injured party should be considered, and insurance policies may need to be updated to address these specific scenarios.

Ethical Considerations: Ethical discussions revolve around determining the level of autonomy and decision-making capability of the AI system, as well as questions of accountability and the prioritization of human safety in the design and operation of robotic systems.

Addressing these concerns requires a combination of legal, technological, and ethical considerations. Governments, organizations, and experts are actively working on developing frameworks and regulations to address liability and compensation in accidents involving robots and AI, with the aim of ensuring fair outcomes and promoting responsible development and deployment of these technologies.

Learn more about AI https://brainly.com/question/30073417

#SPJ11

which hacker subculture norm is concerned with the potential criminal charges of information sharing in the real world and in cyberspace?

Answers

The hacker subculture norm that is concerned with the potential criminal charges of information sharing in the real world and cyberspace is known as "lawful access."

Lawful access is the ethical belief among some members of the hacker subculture that access to computer systems and networks should only be obtained through legal means. This norm is concerned with avoiding any illegal activity that could lead to criminal charges, such as hacking or stealing data. The belief is that the pursuit of knowledge and exploration should not come at the cost of breaking the law, and that there are legal means to access information and systems. This norm is often in contrast to other subcultures that place a higher value on the free exchange of information and knowledge, regardless of the legality of the means of obtaining it. Ultimately, the lawful access norm is an attempt to reconcile the pursuit of knowledge and exploration with the need to abide by the laws and regulations of society.

Learn more about networks here: https://brainly.com/question/30456221

#SPJ11

Match the terms related to the web with their explanations.

Match the terms related to the web with their explanations.

Answers

Answer:

1.) SMTP

2.) HTTP

3.) FTP

4.) AND

Explanation:

YOU'RE WELCOME :)

An office building has two floors. A computer program is used to control an elevator that travels between the two floors. Physical sensors are used to set the following Boolean variables.
The elevator moves when the door is closed and the elevator is called to the floor that it is not currently on.
Which of the following Boolean expressions can be used in a selection statement to cause the elevator to move?

answer choices
(onFloor1 AND callTo2) AND (onFloor2 AND callTo1)
(onFloor1 AND callTo2) OR (onFloor2 AND callTo1)
(onFloor1 OR callTo2) AND (onFloor2 OR callTo1)
(onFloor1 OR callTo2) OR (onFloor2 OR callTo1)

Answers

The following Boolean expressions, "onFloor1 AND callTo2" or "onFloor2 AND callTo1," can be used in a selection statement to move the elevator.

The commands to move the lift may be simply determined based on the other commands designed to be provided and received by the lift, which indicate what operation it is engaged in.

When the elevator is on the first floor and has to be taken to the second floor, the order "onFloor1 AND callTo2" can be used. The order "onFloor2 AND callTo1" would serve as the reverse of the previously given instruction and cause the lift to operate in the exact opposite manner.

To know more about elevator visit:-

https://brainly.com/question/2168570

#SPJ4

How is the author's point of view
different from the officials' point of
view?
The officials' position is that freedom
to
is
guaranteed by the Constitution. The
author thinks the Constitution also
protects the rights of people who
.So
her position is that we need

Answers

Answer: The authors point of view is different because they could be describing themselves or something but the " Reader" might not understand what is happening because they may  not get it

Explanation:

WILL GIVE BRAINLIEST!!!!!!!!
Pipeline construction and maintenance is a highly regulated practice with involvement from federal, state, and local entities.

True

False

Answers

True,

This is a true statement, pipeline construction is taken very seriously and heavily regulated by multiple entities.
TRUE

Which of the following statements about hyperlinks is true? A. You may create hyperlinks in Excel worksheets that work just like the ones on web pages B. Hyperlinks help others navigate to important data items or to documents outside the workbook.C. You create links with the Hyperlink command on the Ribbon. D. All of these statements are true.

Answers

D. All of these statements are true. Hyperlinks are used to create connections between different parts of a document or between documents.

In Excel, hyperlinks can be created that work in a similar way to those on web pages, allowing users to navigate to different worksheets, cells, or even external documents. This makes it easier for users to find and access important data within a workbook.
To create hyperlinks in Excel, you can use the Hyperlink command on the Ribbon. This allows you to choose the type of hyperlink you want to create, such as a link to a website, an email address, or another location within the same workbook.
Hyperlinks are an important tool for organizing and presenting information in Excel and can help improve the usability and accessibility of your workbooks. By creating hyperlinks to important data items or external documents, you can make it easier for others to find and use the information they need. Overall, hyperlinks are a versatile and useful feature that can help you create more effective and user-friendly Excel worksheets.

To learn more about hyperlinks, refer:-

https://brainly.com/question/32115306

#SPJ11

Why Cpu reffered to us the brain of the Computers?​

Answers

The cpu dose that all the time lol me trying to make this answer long enough

1) Declare an array named a of 10 elements of type int and initialize the elements (starting with the first) to the values 10, 20, ..., 100, respectively.
2) Declare an array named taxRates of 5 elements of type double and initialize the elements (starting with the first) to the values 0.10, 0.15, 0.21, 0.28, 0.31, respectively.
3) Write a statement to declare and initialize an array of int named denominations that contains exactly six elements.
Your declaration statement should initialize the elements of the array to the following values: 1, 5, 10, 25, 50, 100. (The value 1 goes into the first element; the value 100 to the last.)
4) Assume that an array of integers named a that contains exactly five elements has been declared and initialized.
Write a single statement that assigns a new value to the first element of the array. This new value should be equal to twice the value stored in the last element of the array.
Do not modify any values in the array other than the first element.
5) Given an array temps of double , containing temperature data, and an int variable n that contains the number of elements in temps :
Compute the average temperature and store it in a variable called avgTemp .
Besides temps , n , and avgTemp , you may use only two other variables -- an int variable k and a double variable total , which have been declared.
6) We informally define the term "corresponding element" as follows: The first element in an array and the last element of the array are corresponding elements. Similarly, the second element and the element just before the last element are corresponding elements. The third element and the element just before the element just before the last element are corresponding elements -- and so on.
Given an array a and a variable n that contains the number of elements in a , write an expression for the corresponding element of a[i] .

Answers

Examples of high-level programming languages include Python, Java, C++, Ruby, JavaScript, and Swift.

What are the examples of high-level programming languages?

An array named 'a' of size 10 and type int is declared and initialized using a for loop with values 10, 20, ..., 100.

An array named 'taxRates' of size 5 and type double is declared and initialized using curly braces with values 0.10, 0.15, 0.21, 0.28, 0.31.

An array of size 6 and type int named 'denominations' is declared and initialized using curly braces with values 1, 5, 10, 25, 50, 100.

A new value equal to twice the value stored in the last element of the array 'a' is assigned to the first element of the array using the indexing operator.

The average temperature is computed and stored in a variable called 'avgTemp' using a for loop and the variables 'k' and 'total'.

The expression for the corresponding element of a[i] is a[n-i-1], where 'n' is the number of elements in the array and 'i' is the index of the element.

Learn more about programming languages

brainly.com/question/22695184

#SPJ11

Which technology can be implemented as part of an authentication system to verify the identification of employees?

Answers

The answer is smart card readers. Smart card readers can be implemented as part of an authentication system to verify the identification of employees.

what is the primary reason why emergency services communications (phone or radio) are recorded?

Answers

The answer states that, if necessary, communications may be included in a legal record.

What does the term "communications" mean?

Transmit and receive messages through both verbal and non-verbal means is the process of communication. The goal of communication is to create understanding amongst two or more people by sharing data in the shape of thoughts, views, and ideas in a two-way fashion.

What do jobs in communications do?

These experts create and preserve a company's engagement with the general public. They develop social media strategy, manage information production, maintain public relationships, and create news releases. At reduced ranks, they could narrow their attention to only one facet of a company's communication plan.

To know more about Communications visit :

https://brainly.com/question/15059972

#SPJ4

The portion of memory that is more or less permanent is called __________ memory.

Answers

The portion of memory that is more or less permanent is called long term memory.

What is Long-term memory?

Long-term memory guides to the memory process in the brain that takes knowledge from the short-term memory store and creates long-lasting memories. These recollections can be from an hour ago or several decades ago. Long-term memory can hold an unlimited amount of knowledge for an indefinite period of time.

What is long-term memory in psychology?

Long-term memory refers to unlimited storage information to be carried for long periods, even for life. There are two types of long-term memory: declarative or direct memory and non-declarative or implicit memory. Direct memory refers to information that can be consciously evoked.

To learn more about Long-term memory, refer

https://brainly.com/question/25040884

#SPJ4

Adjust the code you wrote for the last problem to allow for sponsored Olympic events. Add an amount of prize money for Olympians who won an event as a sponsored athlete.

The

Get_Winnings(m, s)
function should take two parameters — a string for the number of gold medals and an integer for the sponsored dollar amount. It will return either an integer for the money won or a string Invalid, if the amount is invalid. Olympians can win more than one medal per day.

Here's my answer for question 1 please adjust it thanks!

def Get_Winnings(m):

if m == "1": return 75000

elif m == "2":

return 150000

elif m == "3":

return 225000

elif m == "4":

return 300000

elif m == "5":

return 375000

else:

return "Invalid"

MAIN

medals = input("Enter Gold Medals Won: ")

num = Get_Winnings(medals)

print("Your prize money is: " + str(num))

Answers

Answer:def Get_Winnings(m):

if m == "1": return 75000

elif m == "2":

return 150000

elif m == "3":

return 225000

elif m == "4":

return 300000

elif m == "5":

return 375000

else:

return "Invalid"

MAIN

medals = input("Enter Gold Medals Won: ")

num = Get_Winnings(medals)

print("Your prize money is: " + str(num))

exp: looking through this this anwser seemes without flaws and i dont follow

if you can provide what you are not understanding ican an help

The lines that can be formatted to display on the edges of cells are called _______.

style lines
edge lines
borders
underlines

Answers

Answer:

borders

Explanation:

Borders can be formatted in cells of excel or goog.le sheets. You can change width, shape, color, and whole plethora of things!

The lines that can be formatted to display on the edges of cells are called _______.style linesedge linesbordersunderlines

The lines that can be formatted to display on the edges of cells are called \(\boxed{ borders . }\)

a. style lines

b. edge lines

c. borders

d. underlines

\(\large\mathfrak{{\pmb{\underline{\orange{Mystique35 }}{\orange{❦}}}}}\)

Erin would like to add a photo to a presentation. However, she only has the printed copy of the photo. She does not have a digital copy. What should Erin do?

Answers

Answer:

Erin should scan the photo.

Took it on Edge <3

Answer:

Erin should scan the photo.

Explanation:

That´s what I thought :)

With bluetooth printing, the computer and printer need to be within an approximate ______-foot range.

Answers

     The wireless technology used by Bluetooth printers can be set up to work with iOS, Android, and Windows devices. These systems use 2.4GHz low-power radio waves to convey data.

What does the term "wireless printer" mean?

     Wireless printers, also referred to as WiFi printers, may connect to a network without the need for a hard connection or cable. The laptops, cellphones, and tablets linked to a WiFi network can print to a wireless printer once it has been connected to the network.

     Is a Bluetooth printer available?  Inkjets, lasers, and even multifunction devices that print, scan, and copy are all options. A Bluetooth printer is the best option if you want a printer that can go anywhere you do and work with your laptop or other mobile devices.

      If the network is congested, if there is network interference, or if the signal strength is weak, Wi-Fi printers may experience lengthy print times and print problems. With Bluetooth, printing is rapid and interference-free.

     The two most common types of wireless printers are Bluetooth and Wi-Fi. Although Bluetooth is easy to set up and use, it is best suited for small offices with a small number of users. Wi-Fi can accommodate more users across a wider area, but it requires more time to set up.

To Learn more About Bluetooth printer, Refer:

https://brainly.com/question/27408724

#SPJ1

What color would be created by the following hexademical value?
FF00FF

Answers

Answer:

Magenta would be the color created.

which of the following are true with respect to cloud based application configurations. (select three)

Answers

Scalability: Cloud-based applications can be easily scaled up or down depending on the changing needs of the organization. This means that businesses can quickly add or remove resources as required.

Cloud-based applications can be accessed from anywhere with an internet connection, making them ideal for remote teams or employees who need to work from home. This also means that users can access the same application from multiple devices, such as laptops, tablets, or smartphones.

While some organizations may be hesitant to use cloud-based applications due to security concerns, the reality is that many cloud providers offer robust security features and protocols to protect user data. In many cases, cloud-based applications may be more secure than on-premises solutions since cloud providers often have dedicated security teams and resources.

To know more about applications  visit:-

https://brainly.com/question/28206061

#SPJ11

state the difference between Ms Word 2003, 2007 and 2010​

Answers

Answer:

Difference of File Menu between Word 2003, Word 2007 and Word 2010 There is a few difference of the File menu between Classic Menu for Word 2007/2010 and Word 2003. The File drop down menu in Word 2007 and 2010 includes 18 menu items, while 16 menu items in Word 2003.

Explanation:


What is the advantage of a surge protector over a power strip?

Answers

Answer:

When the voltage increases above the norm for at least 3 nanoseconds, the heat generated in the arc can fry your electronics and damage your electrical outlets. A surge protector evens out the sudden peaks of electricity; thus, protecting your electronic devices against random power spike damage.

Explanation:

Write a program that simulates the normal operation of a modern elevator with 25 floors(levels) and that has two buttons: UP and DOWN, except on the lower floor (level), that there is only a call button to UP and the last floor (level) that only exists DOWN button.

Answers

Sure! Here's an example of a program written in Python that simulates the operation of an elevator with 25 floors:

python

class Elevator:

   def __init__(self):

       self.current_floor = 1

       self.direction = None

       self.is_running = False

   def start(self):

       self.is_running = True

   def stop(self):

       self.is_running = False

   def go_up(self):

       if self.current_floor < 25:

           self.current_floor += 1

           print(f"Elevator is now on floor {self.current_floor}")

       else:

           print("Already on the top floor.")

   def go_down(self):

       if self.current_floor > 1:

           self.current_floor -= 1

           print(f"Elevator is now on floor {self.current_floor}")

       else:

           print("Already on the ground floor.")

   def call_elevator_up(self):

       if self.current_floor < 25:

           print("Elevator is on its way...")

           self.direction = "UP"

           self.start()

           while self.is_running and self.current_floor < 25:

               self.go_up()

           self.stop()

           print("Elevator has arrived.")

       else:

           print("Already on the top floor.")

   def call_elevator_down(self):

       if self.current_floor > 1:

           print("Elevator is on its way...")

           self.direction = "DOWN"

           self.start()

           while self.is_running and self.current_floor > 1:

               self.go_down()

           self.stop()

           print("Elevator has arrived.")

       else:

           print("Already on the ground floor.")

# Testing the elevator simulation

elevator = Elevator()

# Calling the elevator up from the ground floor

elevator.call_elevator_up()

# Calling the elevator down from the top floor

elevator.call_elevator_down()

The program creates a class called Elevator that represents the elevator object. It has attributes such as current_floor to keep track of the current floor, direction to store the current direction of the elevator, and is_running to indicate whether the elevator is in operation.

The methods in the class include start() and stop() to control the running state of the elevator, go_up() and go_down() to move the elevator up and down one floor at a time, and call_elevator_up() and call_elevator_down() to simulate the elevator being called from a specific floor.

In the call_elevator_up() and call_elevator_down() methods, the elevator starts running and moves in the specified direction until it reaches the top floor or the ground floor, respectively. The program also handles cases where the elevator is already on the top or ground floor.

The provided program simulates the normal operation of a modern elevator with 25 floors. It allows users to call the elevator from different floors and moves the elevator accordingly. You can further enhance the program by adding more functionality such as handling user input, managing multiple elevator instances, or implementing additional features specific to your requirements.

To learn more about Python, visit

brainly.com/question/26497128

#SPJ11

Which microsoft word tool can help you find synonyms to improve your word choice?.

Answers

Using the thesaurus, you can look up synonyms and antonyms

Other Questions
if a country buys more goods from foreign countries than it sells to foreign countries, what statement is true? Two genes on a linkage map are 9 map units apart. This means that in 9 percent of the offspring, the phenotypes from those genes will The concept of in-groups and out-groups is an integral part of which leadership theory?. Tums antacid stresses the fact that it is a calcium supplement in its advertisements. It also stresses the health benefits of calcium. Most people already know Tums contains calcium. The new promotion is trying to change the attitude toward Tums by: changing the perceived importance of the attribute. adding a new attribute to the product. changing the basic product. adding a new attribute and re-positioning the product. lowering the price. Read Scene 6 Macbeth Underline the positive, benevolent images of nature that Duncan andBanquo use.eIn the margin, explain why this imagery is an example of dramatic irony(lines 1-10). 35)One penny paper, Horace Greeley's ________, established the mass newspaper as a powerful medium of social action through its use of non-sensationalistic, issues-oriented, and humanitarian reporting. By the end of the war, black soldiers wereA. banned from military service.B. only able to serve in segregated units.C. able to serve in units with white soldiers.D. unable to serve in the Pacific Theater. On January 1, 2020, Shay Company issues $700,000 of 10%, 15-year bonds. The bonds sell for $684,250. Six years later, on January 1, 2026, Shay retires these bonds by buying them on the open market for $731,500. All interest is accounted for and paid through December 31, 2025, the day before the purchase. The straight-line method is used to amortize any bond discount.-What is the amount of the discount on the bonds at issuance?-How much amortization of the discount is recorded on the bonds for the entire period from January 1, 2020, through December 31, 2025?-What is the carrying (book) value of the bonds as of the close of business on December 31, 2025?-Prepare the journal entry to record the bond retirement. marla is at a physician's office waiting in the waiting area for her name to be called. she notices that an elderly woman is struggling physically to complete the new patient forms. marla asks the elderly woman if she would like assistance and then proceeds to complete the forms for her. this best demonstrates: please choose the correct answer from the following choices, and then select the submit answer button. answer choices the reciprocity norm. social exchange theory. the social responsibility norm. ingroup bias. Read the excerpt from part one of trifles. sheriff (unbuttoning his overcoat and stepping away from the stove as if to the beginning of official business). how does the use of the word official in this stage direction affect the mood of the scene?a. it suggests that the sheriff is an honest man with great integrity. b. it suggests that the sheriff is pretending to know what he is doing. c. it suggests that the sheriff is going to attempt to act professionally. d. it suggests that the sheriff is very experienced with crimes of this sort. which days were special to slave and why The radius of the spherical ball is 4.32_+0.01m.what does it mean? 4. Oliver just got a new credit card and immediately made a purchase for $2500. The card offers a 0% APR for the first 90 days and a 17.99% APR afterward, compounded daily. Oliver doesn't expect to pay off the $2500 balance on the card for one year, nor does he expect to make any more purchases during the year. He wants to know how much money in interest the 0% APR for the first 90 days will save him. Help Oliver calculate the answer. Ignore any possible late payment fees.Part II: What is the effective interest rate offered by Oliver's credit card? Round your answer to two decimal places.Part III: How much will Oliver pay in interest on the $2500 purchase over the course of the year?Part IV: What would the effective interest rate have been if the APR had been 17.99%, compounded daily, for the whole year? Round your answer to two decimal places.Part V: How much would Oliver have paid in interest on the $2500 purchase over the course of the year with the effective interest rate from Part IV? Part VI: How much money in interest will the 0% APR for the first 90 days save Oliver? a client is taking antiprotozoal medications to prevent a relapse of plasmodium vivax malaria. the nurse is assessing the client during a scheduled follow-up appointment. what assessment finding suggests an increased risk for hepatotoxicity during antimalarial therapy? a stock had returns of 10%, 12%, 3%, and - 9% over the last four years. what is the geometric average return on the stock for this period? 4 Quin es quin?Empareja cada pregunta de la columna I con la respuesta adecuada de la columna II.Usa el rbol genealgico que aparece en el Vocabulario 1.I1. Quin es el padre de Enrique?2. Quines son los padres de Sarita?3. Quines son los abuelos maternos (maternal)de Jos?4. Cmo se llama la mam del padre de Jos?5. Quines son las tas de Mnica?6. Quines son los primos de Natalia?7. Quines son los padres de Rodrigo yCristina?11A. lvaro y CristinaB. Mnica y Josc. AlejandroD. Pedro y Ana MaraE. Ana MaraF. Guillermo y PatriciaG. Cristina y Clara Im A glass jar contains 33 marbles. There are 25 red marbles and 8 blue marbles. Describe the probability of a red marble. all of the following conservative policy initiatives were included in the 1994 contact with america except: Prior to the introduction of a vaccine, what was the leading cause of bacterial meningitis in children younger than 5 years of age The liver cells, called ________, form plates that are separated from each other by capillary spaces called ______