Answer:
Explanation:
A spectrogram is a Visual representation of the spectrum of frequencies in a sound or other signal as the vary with time or some other variable, hope this helps :)
4.11 LAB: Mileage tracker for a runner Given the MileageTrackerNode class, complete main() in the MileageTrackerLinkedList class to insert nodes into a linked list (using the insertAfter() method). The first user-input value is the number of nodes in the linked list. Use the printNodeData() method to print the entire linked list. DO NOT print the dummy head node. Ex. If the input is:
Using the knowledge of computational language in C++ it is possible to write a code that user-input value is the number of nodes in the linked list
Writting the code:#include "MileageTrackerNode.h"
#include <string>
#include <iostream>
using namespace std;
int main(int argc, char *argv[]) {
// References for MileageTrackerNode objects
MileageTrackerNode *headNode;
MileageTrackerNode *currNode;
MileageTrackerNode *lastNode;
double miles;
string date;
// Front of nodes list
headNode = new MileageTrackerNode();
lastNode = headNode;
// Read in the number of nodes
int no_nodes;
cin >> no_nodes;
// For the read in number of nodes, read in data and insert into the linked list
MileageTrackerNode *tail = headNode;
for (int i = 0; i < no_nodes; ++i) {
double milesInit;
cin >> milesInit;
cin >> date;
MileageTrackerNode *newNode = new MileageTrackerNode(milesInit, date, nullptr);
tail->InsertAfter(newNode);
tail = newNode;
}
// Call the PrintNodeData() method to print the entire linked list
MileageTrackerNode *cur = headNode->GetNext();
while (cur != nullptr) {
cur->PrintNodeData();
cur = cur->GetNext();
}
// MileageTrackerNode Destructor deletes all following nodes
delete headNode;
}
See more about C++ at brainly.com/question/12975450
#SPJ1
Refrigerant blends that are approved for use in mvac systems can a) be topped off b) never be topped off c) never be recycled and re-charged into a system d) both b and c are correct
The refrigerant blends that are approved for use in MVAC systems can never be topped off never be recycled and re-charged into a system. The correct option is d.
What is MVAC system?Refrigeration is used in motor vehicle air conditioning (MVAC) equipment to cool the driver's or passenger's compartment. Section 609 of the Clean Air Act governs the maintenance of these systems.
The United States Environmental Protection Agency (EPA) currently does not require the recovery and recycling of natural refrigerants such as carbon dioxide; HCs such as propane, isobutane, blends such as R-441A, or ethane; or ammonia.
This is such a blatant air conditioning myth that it inspired the title of this blog post. You should never have to "top off" or "refill" the refrigerant in your air conditioner.
Thus, the correct option is d.
For more details regarding MVAC system, visit:
https://brainly.com/question/24524971
#SPJ1
Select a movement with which you are familiar and list at least five questions that you, as a movement analyst, might ask the performer of the movement to gain additional knowledge about a performance
A movement that I am familiar is a religious movement known as Heavenly conscious movement and the things i want them to gain additional knowledge about a performance on:
The right way to live.The right way to pray.Becoming closer in our walk with God.Becoming closer in our work with God.Helping others to see the light.What in history is a movement?A movement is known to be one that make use of planning as well as unpredictability. The movement is one that is given identity, leadership, as well as coordination by one or more organizations.
Therefore, A movement that I am familiar is a religious movement known as Heavenly conscious movement and the things i want them to gain additional knowledge about a performance on:
The right way to live.The right way to pray.Becoming closer in our walk with God.Becoming closer in our work with God.Helping others to see the light.Learn more about religious movements from
https://brainly.com/question/28336385
#SPJ1
which of the following statements best explains why we don't create micrometers with 10 times the discrimination they presently have
The statements that best explains why we don't create micrometers with 10 times the discrimination they presently have is option:
b) The diminutive size of the device would make it impractical to make measurements.
c) While gaining precision, the micrometer would have a much smaller range and be useful in very few applications.
What is a micrometer used for?The micrometer is known to be a tool that is used to measure solid objects' lengths, thicknesses, as well as other dimensions precisely and also linearly.
A micrometer is a tool that is known to have a calibrated screw that is frequently used for precise component measurement.
Therefore, The statements that best explains why we don't create micrometers with 10 times the discrimination they presently have is option:
b) The diminutive size of the device would make it impractical to make measurements.
c) While gaining precision, the micrometer would have a much smaller range and be useful in very few applications.
Learn more about micrometer from
https://brainly.com/question/15612200
#SPJ1
Which of the following statements best explains why we don't create micrometers with 10 times the discrimination they presently have?
a) A micrometer with this type of precision would be much too difficult to read, therefore increasing the amount of errors
b) The diminutive size of the device would make it impractical to make measurements
c) While gaining precision, the micrometer would have a much smaller range and be useful in very few applications
d) The technology does not currently exist to increase the discrimination beyond its present level
A large commercial truck has a 12 volt battery system with a very large starting load, the vehicles original system only has one 12 volt battery, but due to age, the truck is slow to start. how would you maintain the necessary starting voltage but increase the available current to turn over the motor? would you need additional batteries? if so, what connection type would be required.
The necessary voltage can be obtained by recharging the batteries if they are drained or replacing them if they are aged therefore, no additional batteries would be required beyond the number of them in the original design and to increase the current capabilities they should be connected parallel.
A battery develops internal resistance with the age and runs out of capability to provide the desired output. That is when they should be recharged if they are rechargeable and nevertheless the type should be replaced aged too much. With this, the truck may take too long or never start.There is an initially designated amount of batteries in a battery pack for each vehicle. That number cannot be changed at one's wish as it could cause many issues to the performance of the vehicle. If one wishes more amperage, he could use batteries of higher capacities of the same voltage outputs.A system of batteries connected in parallel is capable of running for an extended time compared to a single one as the drawn current is provisionally provided by each battery in the system. A vehicle needs more current only during the startup. As mentioned already in compliance with the original design one can use batteries of higher capacity if he wishes to improve the startup behaviour. Otherwise, if the battery pack comes in a set of several batteries (of 12V) they should be connected parallel.
#SPJ4
the -- resistance fault cause an abnormally_ current flow in the circuit and may cause the circuit protection devices, such as fuses or circuit breakers, to _ the circuit.
The low-resistance fault causes abnormally high current flow in the circuit and may cause the circuit protection devices, such as fuses or circuit breakers, to open the circuit.
What is an open circuit fault?An open circuit fault is any error that prevents a machine from operating because a wire or other component is exposed.
An open circuit is typically brought on by a conductor breaking. If the circuit is not closed and there is a break somewhere in the loop, no current can pass. A circuit becomes open as a result o the above.
Therefore, The low-resistance fault causes abnormally high current flow in the circuit and may cause the circuit protection devices, such as fuses or circuit breakers, to open the circuit.
Learn more about circuit protection devices from
https://brainly.com/question/28499212
#SPJ1
Fill in the missing words below:
The I in immigration is just like the I in the word ______?
The E in emigration is just like the E in ______?
Better be Correct
Answer:
1. illegal. 2. expand
Explanation:
I am assuming that you want the sound to be the same and so I have given you an example each. Not much to explain.
Tech a states that the scrub braking system worked well in rubber tires. tech b states that the scrub braking system worked reasonably well on dry wheel surfaces made of wood or steel. who is correct?
select one:
a. tech a
b. tech b
c. both a and b
d. neither a nor b
Tech A is correct with respect to the scrub braking system that really worked well in rubber tires. Thus, the correct option for this question is A.
What is a Scrub braking system?A scrub braking system may be defined as a type of system that significantly utilizes leverage to force a friction block against one or more wheels and allow it to stop from movement.
This scrub braking system actually works well on rubber tires because it involves a diagonal braking system. The suspension of this geometry typically compensates for the sudden braking of the rubber tires.
Therefore, tech A is correct with respect to the scrub braking system that really worked well in rubber tires. Thus, the correct option for this question is A.
To learn more about the braking system, refer to the link:
https://brainly.com/question/27799529
#SPJ1
On a split hose lay, which water source does the initial attack engine use to fight the fire until the supply engine is ready to pump?
Answer:
Booster tank
Explanation:
I come from a family of people who like water supplies
2.1.2. List TWO design specifications for the- a) Structure that houses the electrical system?
The two design specifications for the structure that houses the electrical system are Electrical system design and mini-pat electronic systems.
What are design specifications?The design specification is a system by which the specific design and set exactly the procedure and or the product will come out. Design specifications contain environmental factors and dimensions.
The two designs are electrical system design and mini-pat electronic systems for the structure of the electrical system of a house.
Thus, the two systems are electrical system design and mini-pat electronic systems.
To learn more about design specifications, refer to the link:
https://brainly.com/question/28166552
#SPJ1
What arethe two tag codes for performing ordered and un ordered lits using HTML
Answer:
The HTML ul tag is used for the unordered list. There can be 4 types of bulleted list: To represent different ordered lists, there are 4 types of attributes in <ul> tag. This is the default style. In this style, the list items are marked with bullets.
Answer:
Ordered
[tex]{ \tt{ < ol > .... < / ol > }}[/tex]
Unordered
[tex]{ \tt{ < ul > .... < /ul > }}[/tex]
D. heat fade and walek ase technician a/technician b-style que 1. technician a says that an antilock brake system prevents wheel lockup during hard braking. technician b says that a traction control system prevents tires from losing traction during acceleration. who is correct? a. technician a b. technician b c. both technician a and technician b d. neither technician a nor technician b
Since Technician a says that an antilock brake system prevents wheel lockup during hard braking and technician b says that a traction control system prevents tires from losing traction during acceleration, option c. both technician a and technician.
How does an antilock brake system work?In regards to the use of an anti-lock braking system, the car's wheel speed is one that is often monitored as well as if wheel lock is seen to be found or detected, a sensor is one that often helps to sends a message to the controller that helps to releases as well as it applies to the brake up to 20 times per second, and then hinders the lock up and helps a person to be able to keep control of their vehicle.
Therefore, Since Technician a says that an antilock brake system prevents wheel lockup during hard braking and technician b says that a traction control system prevents tires from losing traction during acceleration, option c. both technician a and technician.
Learn more about antilock brake system from
https://brainly.com/question/23879105
#SPJ1
Which osi layer is responsible for dividing the transmitted bit stream into frames?
Answer:
Data Link Layer
Explanation:
I come from a family of computer networkers
Kim deposits her annual bonus into a savings account that pays 8% interest compounded annuallyThe size of her bonus increases by $2,000 each year, and the initial bonus amount is $5,000. Determine how much will be in the account immediately after the fifth deposit
The amount that would be in Kim's account immediately after the fifth deposit would be $50,998.0
How to find the amount that would be in the accountWe have the amount in Year 0 to be the first deposit. This is given as $5000.
The formula used to calculate this is
P x (1+r) + T
Where P = principal
r = interest rate, hence 1 + 8% = 1.08
T is the increases of 2000
The bonus is said to increase by 2000 every year
2000 + 5000 = $7000
In year 1.
5000 x 1.08 + 7000
= 12,400
In year 2 add 2000 to 7000
(12,400 * 1.08) + 9000
= 22,392
Do the same for year 3
(22,392 * 1.08) + 11,000
= 35,183.36
Do the same for the 4th year
(35,183.36 * 1.08) + 13,000
= $50,998.0288
Therefore we can see that after the deposit is done 5 times the account would have $50,998.02 in it
Read more on compound interest here:
https://brainly.com/question/24274034
#SPJ1
Where can you adjust view manipulation settings?
Answer:
I don't know man read your self and give answer
What is the correct order of steps in the scientific method
Answer:
1) Make a hypothesis, about what u think will happen if you do something
2) conduct the experiment
3) analyze and see what happens
4) do it several more times and compare ur answers
5) make a conclusion from ur answers
6) celebrate bc u done
Which of the following best describes a desktop computer?
Responses
a portable personal computer with a screen and keyboard
a very large and powerful computer used for intensive computing tasks
a personal computer designed to be used on an office desk
a portable personal computer with a touchscreen
The option that is the best option to describes a desktop computer is option C: personal computer designed to be used on an office desk.
What qualities do desktop computers have?A desktop computer is a piece of personal technology made to sit on top of an ordinary office desk. It links to input devices like the monitor, keyboard, and mouse that users use to talk with a computer's actual hardware.
Desktop computer is seen as a computer that can fit on or under a desk and is intended to be used as a stationary tool.
Therefore, based on the above, The option that is the best option to describes a desktop computer is option C: personal computer designed to be used on an office desk.
Learn more about desktop computers from
https://brainly.com/question/24309282
#SPJ1
A vehicle comes into the shop for repairs. technician a says to check with the service writer for the details of the customer complaint. technician b says to check with the shop supervisor to get information on the complaint. who is correct? group of answer choices neither techs tech a tech b both techs
When a vehicle comes to a shop for repairs, the details of the customer complaint is checked with the service writer. Thus , the correct option is (b) i.e tech a.
Service writer in an auto repair workshop handles tough situations like customers complaints. The service writer listens to customers’ complaint about repairs, determines the kind of services required, prepares orders for service with labor, cost and time estimates, schedules service oppoitments, reviews and closes repairs and complaints orders to ensure that the orders are completed. When a vehicle for repairs comes to the shop, it is essential for technicians to check the details of the customer complaint with the service writer so that the required rapair services with appropriate technicians can be offered.
Technician b is not correct that the information of the complaint needs to checked with the shop supervisor. It is because the duty of a supervisor in an auto repair workshop is to determine, supervise, and inspect the work of service writer and technicians.
You can learn more about customer service at
https://brainly.com/question/4110146
#SPJ4
15. The overwhelming reasons vehicles fall from lifts are because technicians don't spot
vehicles properly, miscalculate the center of gravity, or don't use wheel chocks.
A) True
B)O False
The answer is true, the overwhelming reasons vehicles fall from lifts are because technicians don't spot the vehicle properly and miscalculate the center of gravity.
What is the procedure to place the vehicle on the automotive lift?Close all the doors, put the engine off, shift into neutral, and look up for obstructions like radio aerials if necessary.Before raising a car on a drive-on or runway lift, make sure the automated chock devices are set. Make sure there are enough permanent barriers to halt a car. Make sure the automated chocks at the drive-on end of the lift runners function properly as the lift is lifted.Use the mechanical locking device to lock the lift, or use the proper jack stands.Be alert to circumstances that can change the vehicle's center of gravity and make it tumble.Recheck to make sure that all adapters and contact pads are correctly configured and that no loads are being applied to any vulnerable vehicle components.These are some measures can be taken to protect the vehicle from lift fall.
To get more information about Automotive lift :
https://brainly.com/question/25107401?referrer=searchResults
#SPJ1
A Concrete has a height of 5 meters and mass of 30,000kg, Determine the Stress, the strain and the change height.
3. Once a person has been trained to operate a lift truck, they are authorized to use any type of lifting device.
a) true.
b) false
When installing a new wiper arm on a splined post, if it is installed in the wrong position, what can happen?
Answer:
It can break the windshield or hit the side.
Explanation:
BOOLEAN datatype is used for an attribute that takes a single character value.
It is incorrect to say that a Boolean datatype is used for an attribute with a single character value.
What exactly is the Boolean datatype?The Boolean data type is used in computer science to represent the two truth values of logic and Boolean algebra. It has one of two possible values (usually stated as true or false).
The Boolean Data Type can be used to represent two-state values such as true/false, yes/no, or on/off.
Boolean's default value is usually False. Boolean values are not grabbed as numbers, and the stored values are not required to be numerically equivalent.
Thus, the given statement is false.
For more details regarding datatype, visit:
https://brainly.com/question/179886
#SPJ1
A picture showing the actual parts of a circuit and their connection is called_______ diagram
Answer:
a picture showing the actual parts of a circuit and their connection is call a Circuit diagram
A town has two fire engines operating independently. The probability that a
specific engine is available when needed is 0.96.
a. What is the probability that neither is available when needed?
b. What is the probability that a fire engine is available when needed?
If town has two fire engines operating independently. The probability that a specific engine is available when needed is 0.96. The probability that neither is available when needed is 0.0016 and the probability that a fire engine is available when needed is 0.9984 .
A. Probability that neither is available
Probability that a fire engine is unavailable when needed= 1−0.96
Probability that a fire engine is unavailable when needed=0.04
Hence,
P (A’ ∩ B’) = P (A’) P(B’)
P (A’ ∩ B’) =0.04×0.04
P (A’ ∩ B’) =0.0016
b. Probability of fire engine available when needed
P(atleast one engine is available )=1−P(Engine unavailable )
Or
1 – P(A’ ∩ B’) = 1 – P (A’) P(B’)
1 – P(A’ ∩ B’)= 1− (0.04×0.04)
1 – P(A’ ∩ B’)= 1−0.0016
1 – P(A’ ∩ B’)= 0.9984
Therefore If town has two fire engines operating independently. The probability that a specific engine is available when needed is 0.96. The probability that neither is available when needed is 0.0016 and the probability that a fire engine is available when needed is 0.9984 .
Learn more about probability here:https://brainly.com/question/24756209
#SPJ1
what is the purpose of a cold solvent
Answer:
Cold solvent cleaning is a process used to remove grease, wax and other impurities from metal and other parts. The process is also called degreasing or parts washing.
Explanation:
The US navy recently funded the development of submersible drones to investigate shipwrecks located
on the ocean floor of the Marianas Trench. In this region of the world the ocean floor is located about
7.0 miles below sea level. Calculate the pressure a submersible drone would need to withstand 7 miles
below the surface of the ocean.
The pressure a submersible drone would need to withstand 7 miles is given to be 114.49 MPA
How to solve for the pressure of the submersible droneWer have P = rho x H
Where Rho s is the Sp x the weight of the sea water
= 10163 . 16n/m²
We are to proceed to find the value of H
H = 7. 0 miles below sea water
= 11265.408m
P = 11265.408m x 10163 . 16n/m²
= 114,492.144
= 114.49 MPA
Hence we can say that the pressure of the submersible drone should be equal to 114.49 MPA
Read more on pressure here:
https://brainly.com/question/28012687
#SPJ1
A distance was measured four times and the results are as follows: 125.9m,
125.8m, 125.9m and 125.6m. It was then revealed that the known distance is
135.9m +/- 0.3m. Determine (showing calculations) whether the results were
accurate and/or precise stating reason(s) for your answer
The accurate distance between particles is in the range of 136.2 to 135.6 m. But the average distance is 125.8 m.
What is the average distance?
The distance measured is 125.9 m, 125.8 m, 125.9 m, and 125. 6 m.
The known distance given is 135.9 +/- 0.3 m.
If we add 135.9 + 0.3 = 136.2
If we subtract 135.9 - 0.3 = 135.6
If we add all distance given = 125.9 + 125.8 + 125.9 + 125.6 / 4
= 125.8
Therefore, The accurate distance between particles is in the range of 136.2 to 135.6 m. But the average distance is 125.8 m.
To learn more about accurate distance, refer to the link:
https://brainly.com/question/15172156
#SPJ1
Two circular rods support the 3800 lb weight of a space heater in a warehouse. Each rod has a diameter of 0. 375 in and carries 1/2 of the total load. Compute the stress in the rods
Answer:
Force carried by each rod, F = 3800 / 2 = 1900 lb
Cross-sectional area of each rod, A = pi ( d^2) / 4
A = pi * 0.375 * 0.375 / 4 = 0.1104 in^2
Stress in each rod = F / A = 1900 / 0.1104
= 17.21 * 1000 psi
= 17.21 ksi
Explanation:
help
In addition to having a first aid kit, osha recommends that shop owners also have an automated external defibrillator (aed) nearby to be used in case of an emergency.
It is true that in addition to having a first aid kit, osha recommends that shop owners also have an automated external defibrillator (AED) nearby to be used in case of an emergency.
What is OSHA?The Occupational Safety and Health Administration (OSHA) is a sizable compliance agency of the United States Department of Labor with federal visitorial powers to inspect and examine workplaces.
OSHA recommends that shop owners have an automated external defibrillator (AED) nearby in case of an emergency, in addition to a first aid kit.
Thus, the given statement is true.
For more details regarding OSHA, visit:
https://brainly.com/question/9178716
#SPJ1