What is the difference between a constructor and a method?
What are constructors used for? How are they defined?
Think about representing an alarm clock as a software object. Then list some characteristics of this object in terms of states and behavior. Draw the class in UML diagram.
Repeat the previous question for a Toaster Object.

Answers

Answer 1

A constructor is a special method that is used to initialize objects and allocate memory to them. On the other hand, a method is a set of instructions or code that defines the behavior of an object. Constructors and methods are both used in object-oriented programming (OOP) to define the properties and behavior of objects.

Some of the differences between constructors and methods are given below:

1. A constructor is called automatically when an object is created. In contrast, a method must be called explicitly to be executed.

2. A constructor does not have a return type, while a method has a return type.

3. A constructor is used to initialize the instance variables of an object, while a method is used to perform some specific action on an object. Constructors are used for initializing objects in a class. They are used to set default values for instance variables.

Learn more about constructor:

https://brainly.com/question/13267121

#SPJ11


Related Questions

an mri uses a magnetic field rather than an x-ray to produce an image.
a. true
b. false

Answers

The statement is true because MRI (magnetic resonance imaging) uses a strong magnetic field, radio waves, and a computer to produce detailed images of the body.

Unlike X-rays, which use ionizing radiation, MRI uses non-ionizing radiation. The magnetic field generated by the MRI machine aligns hydrogen atoms in the body, and then the radio waves cause the atoms to emit signals that are detected by the machine and turned into images.

MRI is particularly useful for soft tissue imaging, such as the brain, spine, and joints, where X-rays would not provide enough detail. Additionally, MRI can show the difference between normal and abnormal tissue, making it a valuable tool for diagnosing a variety of medical conditions.

Learn more about magnetic field https://brainly.com/question/14848188

#SPJ11

8. The sugar content in a one-cup serving of a certain breakfast cereal was measured for a sample of 140 servings. The average was 11.9 g and the standard deviation was 1.1 g. a. Find a 95% confidence interval for the mean sugar content. b. Find a 99% confidence interval for the mean sugar content c. What is the confidence level of the interval (11.81, 11.99)?

Answers

(a) Confidence Interval ≈ (11.72, 12.08). (b) Confidence Interval ≈ (11.64, 12.16) and (c) The confidence level of the interval is at least 95%.

To find the confidence intervals for the mean sugar content, we can use the formula:

Confidence Interval = Sample Mean ± (Critical Value * Standard Error)

where the critical value is based on the desired confidence level and the standard error is calculated as the standard deviation divided by the square root of the sample size.

a. 95% confidence interval:

The critical value for a 95% confidence level is approximately 1.96.

Standard Error = 1.1 / sqrt(140) ≈ 0.093

Confidence Interval = 11.9 ± (1.96 * 0.093)

Confidence Interval ≈ (11.72, 12.08)

b. 99% confidence interval:

The critical value for a 99% confidence level is approximately 2.58.

Standard Error = 1.1 / sqrt(140) ≈ 0.093

Confidence Interval = 11.9 ± (2.58 * 0.093)

Confidence Interval ≈ (11.64, 12.16)

c. The given interval is (11.81, 11.99). This interval falls entirely within the 95% confidence interval calculated in part a. Therefore, the confidence level of the interval is at least 95%.

Learn more about Standard Error  :

https://brainly.com/question/13179711

#SPJ11

Technician A says that the airbag computer retains power in case the power is lost after an initial collision.
Technician B says that rescue personnel may cut the negative battery cable after a collision to disable the airbag system.
Who is right?
A. A only
B. B only
C. Both A and B
D. Neither Anor B

Answers

Answer:

A. A only

Explanation:

Airbags are safety features added to vehicles to prevent or reduce the shock impact during a collision.

Disconnecting the negative battery cable would prevent power from reaching the airbag system, but the airbag system has a capacitor that stores charges at initial incidents and would deploy the bags. After a collision, the airbag leads are shot off preventing the airbag system power.

9.6 lab: find student with highest gpa complete the course class by implementing the find student highest gpa() instance method, which returns the student object with the highest gpa in the course. assume that no two students have the same highest gpa.

Answers

Java is a network-centric, object-oriented, and multi-platform language. One of the most popular programming languages is this one. Another platform for computers is Java.

What is Different Types of Java Platforms?

1. Java Platform, Standard Edition (Java SE): The Java SE API provides the fundamental features of the Java programming language. It outlines every type and object's fundamentals for high-level classes. It is utilised for graphical user interface (GUI) development, networking, security, database access, and XML parsing.

2. Java Platform, Enterprise Edition (Java EE): The Java EE platform provides an API and runtime environment for creating and utilising massively scalable, multi-tiered, dependable, and secure network applications.

3. Java Programming Language Platform, Micro Edition (Java ME): Java ME is a platform for executing Java programmes on mobile phones and other small devices. It includes an API and a small-footprint virtual machine.

4. Java FX: Using a simple user-interface API, JavaFX provides a platform for creating sophisticated internet applications. In order to benefit from higher-performance clients, a contemporary look and feel, and high-level APIs for connecting to networked data sources, Java uses hardware-accelerated graphics and media engines.

To Learn more About Java refer to:

https://brainly.com/question/25458754

#SPJ4

Consider the following class definition. public class BoolTest { private int one; public BoolTest(int newOne) { one = newOne; } public int getOne() { return one; } public boolean isGreater (BoolTest other) ܕܝܢ /* missing code */ } } The isGreater method is intended to return true if the value of one for this BoolTest object is greater than the value of one for the BoolTest parameter other, and false otherwise. The following code segments have been proposed to replace /* missing code */. I. return one > other.one; II. return one > other.getOne(); III. return getOne() > other.one; Which of the following replacements for /* missing code */ can be used so that isGreater will work as intended? A I only B Il only с III only I and II only E I, II and III

Answers

I, II AND III are the right  /* missing code */ that can be used so that isGreater will work as intended. Hence, option E is correct.

What is missing code?

Computer coding, also referred to as computer programming, is a method of instructing a computer on what to do.

Coding is a method of telling the computer how it should behave in general - what actions it should take and how to do them effectively and efficiently.

Coding is the process of creating and then giving a detailed set of instructions to a computer that must be carefully executed in sequential order.

return one>other.one;

In this case, we are comparing other object values in the class BoolTest. As a result, it works flawlessly.

return one > other.getOne;

We are comparing values here by calling another object's public function. As a result, it returns the value. This also works flawlessly.

return getOne() > other.one;

In this case, we're calling a function to get the value of the first object and comparing it to the values of other objects in the class. As a result, this also works perfectly.

Thus,  I, II AND III are the right  /* missing code */ that can be used so that isGreater will work as intended.

Learn more about Coding

https://brainly.com/question/24085882

#SPJ4

A frequenter of a pub had observed that the new barman poured in average 0.47 liters of beer into the glass with a standard deviation equal to 0.09 liters instead of a half a liter with the same standard deviation. The frequenter had used a random sample of 47 glasses of beer in his experiment. Consider the one-sided hypothesis test for volume of beer in a glass: H0: u=0.5 against H1: u<0.5. Determine the P-value of this test.
Round your answer to four decimal places (e.g. 98.7654).

Answers

Answer:

P-value = 0.0011

Explanation:

Formula for the test statistic is;

z = (x¯ - μ)/(σ/√n)

We have;

Sample mean;x¯ = 0.47

Population mean; μ = 0.5

Standard deviation; σ = 0.09

Sample size; n = 47

Thus;

z = (0.46 - 0.5)/(0.09/√47)

z = -3.05

From z-distribution table attached, the p-value corresponding to z = -3.05 is;

P = 0.00114

To four decimal places gives;

P-value = 0.0011

A frequenter of a pub had observed that the new barman poured in average 0.47 liters of beer into the

NatGas Corporation obtains a federal license to operate a gas pipeline through a certain area of Oregon. The Oregon state legislature enacts a law that bans gas pipelines in that area. Most likely, the state law violates:________

a. the due process clause.
b. the supremacy clause.
c. the U.S. Constitution.
d. the commerce clause.

Answers

Answer:

c. the U.S. Constitution.

Explanation:

A Constitution refers to a set of written laws and principles which is typically used to determine the power and authority of the government, as well as guarantee the fundamental rights of its citizens.

Basically, the Constitution accords powers to the national or federal government and these includes; enumerated or delegated, reflected, and concurrent powers. Therefore, base on the US Constitution, any law, act, or license issued and approved by the federal government supercedes or overrides any state law.

In this scenario, NatGas Corporation obtains a federal license to operate a gas pipeline through a certain area of Oregon. The Oregon state legislature enacts a law that bans gas pipelines in that area. Most likely, the state law violates the U.S. Constitution because a federal law is supreme.

14. Low resistance combined with current flow is the description of a/an
A. heater
B. impedance mismatch.
C. electric shock.
D. electrical circuit.

Answers

I think b I’m for sure tho

draw the flowchart or write the pseudocode for an application that allows a bowler to enter scores for three bowling games and then displays the average.

Answers

The pseudocode for an application that allows a bowler to enter scores for three bowling games and then displays the average is stated below;.

What does pseudocode mean?

Pseudocode is a made-up, unofficial computer language that aids in the creation of algorithms by programmers. Pseudocode, as used in computer science, is a straightforward explanation of an algorithm's or another system's stages.

#include <iostream>

using namespace std;

int main()

{

int score1, score2, score3, averageScore;

cout << "Enter the bowler's score for the 1st game: ";

cin >> score1;

cout << "Enter the bowler's score for the 2nd game: ";

cin >> score2;

cout << "Enter the bowler's score for the 3rd game: ";

cin >> score3;

The averageScore = (score1 + score2 + score3) / 3;

cout << "The bowler's average score is :";

cout << averageScore << endl;

return 0;

}

To learn more about pseudocode, visit:

https://brainly.com/question/13208346

#SPJ4

The efficiency of a steam power plant can beincreased by bleeding off some of the steam thatwould normally enter the turbine and usingit topreheat the water entering the boiler. In this process,liquid water at 50oC and 1000 kPa is mixed withsuperheated steam at 200oC and 1000 kPa. If the plantoperators want to produce a saturated liquid at 1000kPa, what ratio of mass flow rates of water andsuperheatedsteam are required

Answers

Answer:

Explanation:

This is Answer....

The efficiency of a steam power plant can beincreased by bleeding off some of the steam thatwould normally
The efficiency of a steam power plant can beincreased by bleeding off some of the steam thatwould normally

When measuring a Brake Drum, the Brake Micrometer is set to a Base Drum Diameter of 10 Inches plus four notches, and the dial reads 22. What is the diameter of this drum

diameter of this drum?

Answers

Answer:

10.5

Explanation:

Measuring a Brake Drum, the Brake Micrometer is set to a Base Drum Diameter of 10 Inches plus four notches, and the dial reads 22.  Diameter of the drum is 10.5.

What is diameter?

Any straight line segment that cuts through the center of a circle and has ends that are on the circle is considered a circle's diameter in geometry. It is also known as the circle's longest chord.

The diameter of a sphere can be defined using either of the two methods. In more recent usage, the diameter can also refer to a diameter's length, or displaystyle d.

As opposed to a diameter, which refers to the line segment itself, one uses the term "diameter" in this context since all diameters of a circle or sphere have the same length, which is equal to twice the radius "displaystyle r.

Therefore, Measuring a Brake Drum, the Brake Micrometer is set to a Base Drum Diameter of 10 Inches plus four notches, and the dial reads 22.  Diameter of the drum is 10.5.

To learn more about diameter, refer to the link:

https://brainly.com/question/5501950

#SPJ5

Hãy tính phản lực liên kết tại ngàm A, bản lề C và gói di động D biết p=400N/m
P1=100N
P2=200
P3=300
M1=100N/m
N2=200N/m

Answers

Answer:

say in English plz I don't understand

Most solar hot water systems are fitted with gas or electric "boosters" that can also heat the water. Describe why you think these are necessary.

Answers

Most solar water heaters have a gas or electric booster to give hot water on overcast days or when supply is insufficient.

Except when heat pumps are employed or renewable electricity is used, a gas booster often emits fewer greenhouse gases. In most parts of the world, a home's roof and walls receive far more solar energy than its people use in a year. We can get all the energy we require in a clean, easy, and natural method by harnessing the light and heat of this sun. In homes and commercial buildings, it can be absorbed in solar collectors to provide hot water or space heating. Parabolic mirrors may focus it to produce heat that can reach temperatures of up to several thousand degrees Celsius.

Learn more about heat here-

https://brainly.com/question/13155544

#SPJ4

in a regular pyramid, the slant height is always longer than a lateral edge of the pyramid. true or false

Answers

The statement "In a regular pyramid, the slant height is always longer than a lateral edge of the pyramid" is false.

In a regular pyramid, the slant height refers to the distance from the apex (top) of the pyramid to any point on the lateral face, measured along the slanted surface. A lateral edge, on the other hand, refers to the length of an edge that connects the apex to a vertex of the base.

In a regular pyramid, the slant height and the lateral edge are typically not equal to each other. The slant height is generally longer than a lateral edge. This can be understood by considering the shape of a regular pyramid, where the slant height forms a diagonal along the lateral face, while the lateral edge is a straight line connecting the apex and a vertex of the base.

However, it is important to note that the specific lengths of the slant height and lateral edge depend on the dimensions of the pyramid, such as the base size and the height. The relationship between the slant height and lateral edge can vary depending on the specific measurements of the regular pyramid.

To practice more problems on pyramid: https://brainly.com/question/18994842

#SPJ11

2. Because she has a Victim mindset and having low grade in her Math class, Julianna believes
O a. her low grades are the fault of her unfair teacher.
O b. she needs to take an easier class.
O c. that working with a tutor is the only way for her to pass the class.
O d. she can improve her grades if she studies more.

Answers

Because she has a Victim mindset and having low grade in her Math class, Julianna believes: A. her low grades are the fault of her unfair teacher.

What is a Victim mindset?

A Victim mindset is also referred to as victim mentality and it can be defined as an acquired personality trait in which an individual tends to recognize and believe that the negative and unfair actions of others towards him or her, is responsible for the bad and unpleasant things that happens.

This ultimately implies that, an individual with a Victim mindset is prejudiced and strongly believes that every other person is against him or her, and as such these people are responsible for their failures.

Read more on Victim mindset here: https://brainly.com/question/17116209

#SPJ1

how long in minutes would it take to fabricate a 4 colored ball in diameter using fdm? assume a layer thickness of , a width of , and the extrudate being deposited at a rate of . the stage movement time is per layer, and it takes to switch between any two materials. assume the support structure has a volumetric fill ratio of .

Answers

FDM is a manufacturing process that creates objects layer by layer by depositing molten thermoplastic material.

The length of time it takes to create a four-colored ball with a diameter using FDM is determined by a variety of variables.

These variables are layer thickness, nozzle width, extrudate deposition rate, stage movement time per layer, and the time it takes to change between any two materials.

The ball's construction time can be calculated using these variables.

The following formula can be used to calculate the ball's production time:

Volume of Sphere = 4/3 * pi * r³

Volume of the sphere = 4/3 x pi x 2²³

Volume of the sphere = 33.51 cm³

The total volume of the ball will be 33.51 cm³.

We'll use this to figure out how long it will take to manufacture this ball.

We can use the following formula:

Time = (Layer height x Layer width x 60) / Extrudate Deposition Rate x Stage Movement Time x Fill ratio x Volume of sphere

Time = (0.15 x 0.4 x 60) / 6 x 1 x 0.3 x 33.51The time it takes to fabricate the ball is calculated as follows:

Time = 5.13 hours or 308 minutes

it will take around 308 minutes to fabricate a 4 colored ball in diameter using FDM,

assuming a layer thickness of 0.15mm, a width of 0.4mm, and the extrudate being deposited at a rate of 6 cubic mm per second.

Additionally, it is supposed that the stage movement time is 1 minute per layer, and it takes 1 minute to switch between any two materials.

Finally, assume the support structure has a volumetric fill ratio of 30%.

To know more about thermoplastic visit:

https://brainly.com/question/33512414

#SPJ11

A ___________ is defined as a change in shape of the part between the damaged and undamaged area hat is smooth and continuous . When the part is straightened, it is returned to proper shape and state without any areas of permanent deformation.

Answers

A bend is defined as a change in the shape of the part between the damaged and undamaged area that is smooth and continuous.

What is a kink?

A kink can be defined as a sharp bend with a small radius over a short distance.

So when any part is kinked it must be replaced without any doubt. A part is kinked if it just doesn't work on the repair.

What is a bend?

Unlike a kink, a bend can be restored. That is after a bend also  a part can be bought back to its original position.

When the part is straightened, it is returned to proper shape and state without any areas of permanent deformation.

To know more about bend visit:

https://brainly.com/question/27937041

#SPJ9

T/F there is a limit of 35 changing cells in the edit scenario dialogue box

Answers

To answer the question: "T/F there is a limit of 35 changing cells in the edit scenario dialogue box"

True, there is a limit of 35 changing cells in the Edit Scenario dialogue box in Microsoft Excel.

Learn more about dialogue box: https://brainly.com/question/30667459

#SPJ11

Doubling the diameter of a solid, cylindrical wire doubles its strength in tension.

True

False

Answers

Answer:

True ❤️

-Solid by solid can make Cylindrical wire doubles Strengths in tension

Find the volume of the rectangular prism
9 cm
10 cm

Answers

Answer:

V= 90h cm³ where h is the height of the rectangular prism.

Explanation:

The formula for volume of a rectangular prism is ;

V=l*w*h  where;

V=volume in cm³

l= length of prism=10cm

w =width of the prism = 9 cm

Assume the height of the prism as h cm then the volume will be;

V= 10* 9*h

V= 90h cm³

when the value of height of the prism is given, substitute that value with h to get the actual volume of the prism.

Compute the repeat unit molecular weight of PTFE. Also compute the number-average molecular weight for a PTFE for which the degree of polymerization is 10,000

Answers

Answer:

a) the repeat unit molecular weight of PTFE MW = 100.015 g/mole

b) the number-average molecular weight for a PTFE for which the degree of polymerization is 10,000 щₙ = 1000150 g/mole

Explanation:

Given that;

PTFE which is also called Polytetrafluoroethylene

structure  of repeat unit of Polytetrafluoroethylene

(C2F4)n

a)

To compute the repeat unit molecular weight

we say

MW = 2( atomic weight of C ) + 4( atomic weight of F)

MW = 2 (12.0107) + 4 ( 18.9984)

MW = 100.015 g/mole

therefore the repeat unit molecular weight of PTFE MW = 100.015 g/mole

b)

To compute the number-average molecular weight for  PTFE of which the degree of polymerization is 10,000

we say

DP = щₙ / MW

where щₙ is the number of average molecular weight,

MW is the repeat unit molecular weight give as 100.015 g/mole

DP is degree of polymerization which is 10,000

Now we substitute

10,000 = щₙ / 100.015

щₙ = 10,000 × 100.015

щₙ = 1000150 g/mole

Therefore the number-average molecular weight for a PTFE for which the degree of polymerization is 10,000 щₙ = 1000150 g/mole

what is the term Self-induced EMF (Induction) ​

Answers

Self induction and Mutual induction

If the current through the coil changes, the flux through the coil changes and an emf is induced. Since the emf is induced in the coil due to its own field, it is called self–induced emf and the phenomenon is called self–induction.

Answer:

Self induced EMF is the electro-motive force that is generated due to change in flux in the coil caused by the change in current in the same coil.

Consider an FSM with 1024 states and a 2-bit input (00, 01, 10, 11). How many flip-flops will you need to construct the FSM

Answers

Answer:

468

Explanation:

What is risky about daisy-chaining hubs on a 100Base-T network? (Choose all that apply.)A. Too many hubs will cause errors in addressing data for its proper destination.B. Too many hubs will cause the network to exceed its maximum length.C. Too many hubs will increase the attenuation of a data signal.D. Too many hubs will increase the possibility for errors in data encryption and decryption.

Answers

A, C, and possibly B are risky about daisy-chaining hubs on a 100Base-T network.

A: Daisy-chaining hubs can cause issues with addressing data for its proper destination. As the number of hubs in the chain increases, the network becomes more complex, and it becomes more difficult for the network to properly route data packets to their intended destinations.C: Each hub in the chain adds a certain amount of attenuation to the data signal. As the number of hubs in the chain increases, so does the amount of attenuation. This can eventually result in signal degradation and data loss.B: Each segment of a 100Base-T network is limited to a maximum length of 100 meters. When hubs are daisy-chained, the total length of the network can quickly exceed this limit, resulting in signal degradation and data loss.

To learn more about network click the link below:

brainly.com/question/30410570

#SPJ11

What are door knob parts called?

Answers

Every handle is unique. Whether you choose a doorknob, a lever-on-backplate, or a lever-on-rose,

The lever or knob, the latch mechanical, the strike plate, and the door lock, if your door requires one, are the four basic parts that are common to all of them. A wheel and axle is a type of simple mechanism that is used in doorknobs. The circular wheel and axle that make up the wheel and axle machine are designed to rotate in tandem. This straightforward device functions in a manner similar to a premium lever. Since this plate is located behind the lever or knob, it is known as a backplate. If a backplate is circular in shape, it is often referred to as a rosette or rose.

Learn more about mechanical here-

https://brainly.com/question/20434227

#SPJ4

The term _______________refers to the science of using fluids to perform work.

Answers

The term is hydraulics.

Answer:

Hi, there your answer is hydraulics

Explanation:

A 1-ft rod with a diameter of 0.5 in. is subjected to a tensile force of 1,300 lb and has an elongation of 0.009 in. The modulus of elasticity of the material is most nearly:

Answers

Answer:

E = 8.83 kips

Explanation:

First, we determine the stress on the rod:

\(\sigma = \frac{F}{A}\\\\\)

where,

σ = stress = ?

F = Force Applied = 1300 lb

A = Cross-sectional Area of rod = 0.5\(\pi \frac{d^2}{4} = \pi \frac{(0.5\ in)^2}{4} = 0.1963\ in^2\)

Therefore,

\(\sigma = \frac{1300\ lb}{0.1963\ in^2} \\\\\sigma = 6.62\ kips\)

Now, we determine the strain:

\(strain = \epsilon = \frac{elongation}{original\ length} \\\\\epsilon = \frac{0.009\ in}{12\ in}\\\\\epsilon = 7.5\ x\ 10^{-4}\)

Now, the modulus of elasticity (E) is given as:

\(E = \frac{\sigma}{\epsilon}\\\\E = \frac{6.62\ kips}{7.5\ x\ 10^{-4}}\)

E = 8.83 kips

what are the reasons why fine grained of alkali igneous rocks can not be used in cement

Answers

Fine grained of alkali igneous rocks cannot be used in cement because of the volume expansion caused by the Alkali-silica reaction, fine-grained igneous rocks cannot be used as aggregates in cement.

What does fine grained mean in an igneous rock?

Extrusive igneous rocks have a fine-grained or aphanitic texture, with grains that are too small to see without a magnifying glass. The fine-grained texture suggests that the rapidly cooling lava did not have enough time to form large crystals. A petrographic microscope can be used to examine these tiny crystals.

The texture of an igneous rock (fine-grained vs coarse-grained) is determined by the rate at which the melt cools: slow cooling produces large crystals, while fast cooling produces small crystals.

The chemical reaction that occurs in both alkali cations and hydroxyl ions in the pore solution of hydrated cement paste and certain reactive silica phases present in concrete aggregates is known as the alkali-silica reaction (ASR).

Learn more about cement on:

https://brainly.com/question/14323034

#SPJ1

a square metal bar with length 6 m has a width of 9 mm on each side. it is subjected to a tensile axial tensile force of 2,095 kn. assume that e =110 gpa and ν= 0.34.What is the change in the width in millimeters? Even though the answer is negative, enter a positive value for your answer.

Answers

To calculate the change in width of the square metal bar, we need to use the Poisson's ratio (ν) and the axial strain formula. Here are the given values:

Length = 6 m
Width = 9 mm
Axial tensile force = 2,095 kN
E = 110 GPa
ν = 0.34

First, calculate the cross-sectional area of the bar (A):
A = width² = (9 mm)² = 81 mm²
Next, convert the axial tensile force to Newtons and calculate the axial stress (σ):
Force = 2,095 kN * 1000 N/kN = 2,095,000 N
σ = Force / A = 2,095,000 N / 81 mm² ≈ 25,864 N/mm²
Now, calculate the axial strain (ε):
ε = σ / E = 25,864 N/mm² / 110,000 N/mm² ≈ 0.000235

Next, find the lateral strain (ε_L) using Poisson's ratio:
ε_L = -ν * ε = -0.34 * 0.000235 ≈ -0.00008
Finally, calculate the change in width (Δw) using the lateral strain:
Δw = ε_L * initial width = -0.00008 * 9 mm ≈ -0.00072 mm

Since we need to enter a positive value for the answer, the change in width is approximately 0.00072 mm.

To know more about Axial tensile visit:

https://brainly.com/question/30881562

#SPJ11

Which of the following workers are not likely to be paid during an election?
campaign press secretary
volunteer coordinator
poll worker
director of communications

Answers

Answer:

volunteer coordinator

Explanation:

because they are volunteering for that and in most of the cases they do not expect to be paid

Other Questions
You are at the home of a 92-year-old male patient. He is alert and oriented and in good spirits and, although mildly hearing impaired, can hear you if you speak clearly and face him as you speak. He has no teeth and is not wearing dentures. His speech is indistinct and difficult to understand. Which of the following is the best course of action? construct max-heap and min-heap for the given numbers and sort the elements of the max-heap using heap sort. show all the steps: 50, 60, 26, 42, 30, 71, 35, 13, 55, 65, 15 What kind of language does Robert Frost use? In 2018, the United States had a population of 325.7 million people. Of these, 11.66 million lived in Ohio. What percent of all people in the United States lived in Ohio in 2018? round your answer to the nearest tenth of a percent Type the correct answer in the box. Spell the word correctly.Identify the type of source based on the passage provided.Ronald Reagan was the second son of Nellie and John Reagan. Reagan attended high school in Dixon, Illinois. He entered Eureka College andgraduated in 1932. He served as a one-time president of the student body and majored in economics and sociology. He became the president ofthe United States in 1980.The passage is from aights reserved.source.ResetNext Leroy's total employee compensation was $50,150 last year. His total job expenses for traveling and for professional developement for the year were $3,500. Which of the following represents his total job benefits At a movie theater, the size of popcorn bags decreased 33\frac{1}{3} 31 %. If the old bags held 24 cups of popcorn, how much does the new bags hold? What is the estimated value of the linear correlation coefficient and how do we best interpret this value? Select one: a. r=0.0643, so 6.43% of the variation in body temperature can be explained by the linear relationship between body temperature and heart rate. b.r 0.2536, so 25.36 % of the variation in body temperature can be explained by the linear relationship between body temperature and heart rate. c. r0.2536, so 6.43% of the variation in body temperature can be explained by the linear relationship between body temperature and heart rate. d r=0.0643, so 25.36% of the variation in body temperature can be explained by the linear relationship between body temperature and heart rate. e.r=0.0041, so 0.41% of the variation in body temperature can be explained by the linear relationship between body temperature and heart rate Compare the interview "On the Front Lines with Thurgood Marshall" with the informational piece "'Equal Justice Under Law': Thurgood Marshall".What key information is expanded on in the interview that is not deeply explored in the informational piece?1. The interview gives more specific examples of how segregation in education is inherently unequal and unfair.2. The interview includes Marshall's own struggle to get into law school which fueled his sense of injustice.3. The interview provides a more detailed account of the Supreme Court's opinion on Brown v. Board of Education.4. The interview mentioned more about the opposition Marshall faced in the African American community. What does Hamilton mean when he says he would rather be divisive than indecisive? Food doesn't taste good during common cold. why? A company's competitive strategy is a combination of its ______ with its competitive advantage. a. vision statement b. mission statement c. absolute advantage d. core values e. business definition A Man Riding A Scooter Travels A Distance Of 70 Meters In 20 Seconds. What Is The Speed Of The Scooter? At time to 0 electrons in a short neutral vertical copper wire are accelerated very briefly upward (+y direction), by a power supply which is not shown. Detectors of electric and magnetic fields are placed at location A, 10 meters from the wire, as shown in the diagram. (The diagram is not to scale; the length of the bar is only a few centimeters. Location A lies in the x-y plane.) 45 copper bar (a) [2 points] At what time ty do the detectors at location A first detect radiative electric and magnetic fields? = 10 A. t = 0 s C. t = 3.0 x 108 s B. t = 3.0 x 107 s Et=3.3 x 10- s 3*10* = 3.33*10 D. t = 3.3 x 10-9 s (b) [2 points] Which arrow best describes the direction of the radiative electric field detected at time at time t? at A. B. C. D. E (c) [4 points] At time t=0, the magnitude of the acceleration of the electrons is 4.0 x 10 m/s. What is the magnitude of the radiative electric field at location A, measured at time t, due to ONE of the accelerating electrons in the wire? (Note the net electric field will be much larger, because there are many accelerated electrons in the wire.) A 1.44 x 10- V/m B. 6.40 x 10-8 V/m C. 4.53 x 10-18 V/m D. 2.13 x 10-26 V/m E = 910 * 1.602*10 10 10 meters ---------- E. 1.51 x 10-20 V/m = 1.44*10" Select all of the terms that are "like." x^22x^2y-xy1/2 xyxy^22xy another one OMG lol sorry Please Help, step by step needed What is the value of the w ?1/7 w=1/2Enter your answer in the box.w= The population of bees worldwide has been in decline. There are estimated to be 2,000,000,000 bees worldwide and each year there is estimated to be 10% less. How many bees worldwide will there be in 10 years? consider the three-hop scenario shown below, where the first and third links have capacity r, and the link between the routers has capacity r/2. what is the maximum throughput of the red connection, given that the red and blue connections are similarly controlled, and therefore have the same maximum throughput?