Store the following information (excluding the first line) in a 2D array, while preserving the order of the information: Name Emirate Major University Amna RAK RAK University Noor Al Ain Physics Al Ain University Ahmad Sharjah Chemistry Sharjah University CE Then, write a MATLAB program that asks the user to enter either the student name, emirate, major or university. The MATLAB program should search all fields in the 2D array and stop (break) the search if the entered string matches any of the fields in the array. The program prints the type of query entered (i.c. name, emirate, major, or university) and the whole row must be printed to the user following the example given below. Otherwise, the program should notify the user that the query is not found. Hint: Use the MATLAB function stremp. Output: Please enter your query: Abu Dhabi University Query Not Found Please enter your query: Sharjah University University found The student name is Ahmad, the student is from Sharjah, the student is majoring in Chemistry, at Sharjah University Please enter your query: Physics Major found The student name is Noor, the student is from Al Ain, the student is majoring in Physics, at Al Ain University 31 Page

Answers

Answer 1

You can run this MATLAB program and enter your queries to search for specific fields in the 2D array. The program will print the type of query entered and the corresponding row if a match is found. Otherwise, it will notify the user that the query is not found.

Sure! Here's a MATLAB program that stores the given information in a 2D array and allows the user to search for specific fields:

% Store the information in a 2D array

data = [

   "Amna" "RAK" "RAK University";

   "Noor" "Al Ain" "Physics" "Al Ain University";

   "Ahmad" "Sharjah" "Chemistry" "Sharjah University"

];

% Ask the user for a query

query = input("Please enter your query: ", 's');

% Search for the query in the data array

found = false;

for i = 1:size(data, 1)

   % Check if the query matches any field in the current row

   if strcmp(query, data(i, 1)) || strcmp(query, data(i, 2)) || strcmp(query, data(i, 3))

       % Print the type of query entered

       if strcmp(query, data(i, 1))

           queryType = "name";

       elseif strcmp(query, data(i, 2))

           queryType = "emirate";

       else

           queryType = "major";

       end

       

       % Print the result

       fprintf("%s found\n", queryType);

       fprintf("The student name is %s, the student is from %s, the student is majoring in %s, at %s\n", data(i, 1), data(i, 2), data(i, 3), data(i, 4));

       

       found = true;

       break;

   end

end

% If the query is not found

if ~found

   fprintf("Query Not Found\n");

end

Know more about MATLAB program here;

https://brainly.com/question/30890339

#SPJ11


Related Questions

Discuss typical advantages and disadvantages of an irrigation system?

Answers

Advantages include low costs and minimal labor.Water stays in the root zone, and foliage stays dry. Drawbacks to surface irrigation include potential overwatering and wasteful runoff.

Select the correct answer.
Which chemical can you use to assist with your motor fuel needs?
O A.
ethylene glycol
OB.
ethanol
O c.
butanol
OD.
pentanol
O E.
propranolol
Reset
Next

Answers

The answer is either b or e search it up and you will know the answer by definition

Answer: Ethanol

Explanation:

define the following terms as they pertain to semiconducting materials: intrinsic, extrinsic, compound, elemental. provide an example of each.

Answers

The definition of intrinsic is a pure semiconducting material; extrinsic is a semiconducting material that has intentional impurities added; compound is a semiconducting material made up of two or more different elements; elemental is a semiconducting material made up of a single element.

Semiconductors are solid materials which have a resistivity value between 10-2 – 109 Ω.cm.  

The following is the complete information of types of semiconducting materials with each example:

Intrinsic: Refers to a pure semiconducting material, meaning it contains no intentional impurities. Intrinsic materials have a specific number of free electrons and holes that are determined by the temperature and bandgap energy of the material. An example of an intrinsic semiconductor is pure silicon.

Extrinsic: Refers to a semiconducting material that has intentional impurities added to it in order to modify its electrical properties. These impurities, known as doppants, can either introduce additional free electrons (n-type) or holes (p-type) into the material. Examples of extrinsic semiconductors include n-type silicon dopped with phosphorus, or p-type silicon d0pped with boron.

Compound: Refers to a semiconducting material made up of two or more different elements, typically from groups III and V or II and VI in the periodic table. Examples of compound semiconductors include gallium arsenide (GaAs) and indium phosphide (InP).

Elemental: Refers to a semiconducting material made up of a single element. Silicon is the most commonly used elemental semiconductor, but other examples include gerrmanium (Ge) and carbon (in the form of diamond or graphene).

To know more about Semiconductors visit:

https://brainly.com/question/30762892

#SPJ11

Which of the following types of constructs should be called when the programmer wants to stop program execution?
a. Raise NotImplementedError
b. Print a "FIXME" message and return -1
c. return None
d. Use a pass statement

Answers

When a programmer wants to halt the running of a program, should they print a "FIXME" message and return -1.

Counting noun A computer uses a set of instructions known as a program to carry out a task. counting noun A collection of predetermined actions or events makes up a program of actions or occurrences. A program is a collection of instructions that process input, change data, and produce a result. It is sometimes referred to as a program or application. For instance, users of the word processing tool Microsoft Word can generate and compose documents. A program's objective is to use artistic expression to address an issue or pursue an interest. Basically the justification behind the developer's decision to make this software. For instance, "this program's goal is to promote recycling among other things."

Learn more about program from

brainly.com/question/23275071

#SPJ4

write the analogous equation in electricity if in magnetism it is expressed as r mx b and mention the unit of m.

Answers

Electric circuits and magnetic circuits are similar. The following list includes some of the numbers. Electric Circuit Magnetic Circuit.

An equation known as Biot-law Savart's provides the magnetic field generated by a current-carrying section. This section is considered to be the current element, a vector quantity.

Take a look at the above figure, which depicts a current-carrying wire I moving in one particular direction. Select a brief section of wire measuring ds in length. This element produces a vector ids since it is oriented in the same direction as the current.

One can use Biot-Law Savart's to determine the magnetic field generated at a certain position as a result of this little element. Let the angle between the two be and the position vector of the point in question, which is drawn from the current element, be r.

Know more about element here:

https://brainly.com/question/13581933

#SPJ4

The duplex receptacle outlets in the Drugstore basement storage area are to be connected to which branch circuit(s)

Answers

The duplex receptacle outlets in the Drugstore basement storage area should be connected to the general-purpose branch circuit(s).

Explanation: The general-purpose branch circuit is commonly used for outlets in residential or commercial areas where standard electrical appliances and devices are connected. The duplex receptacle outlets in the Drugstore basement storage area are likely intended for general-purpose use, such as powering various electrical devices or providing power for storage-related equipment. Therefore, they should be connected to the general-purpose branch circuit(s) designated for that area.

To learn more about connected click on the link below:

brainly.com/question/30134429

#SPJ11

to condition ecg raw signals, you need to build the circuit with an amplifier and a band pass filter. draw a complete sketch of your circuit diagram. (for your ecg recording, you can consider electrode from right arm (ra) as a negative terminal and from left arm (la) as a positive terminal of your input). mark pin numbers of the amplifier and output of the circuit in your diagram

Answers

To condition ECG raw signals, a circuit consisting of an amplifier and a bandpass filter can be used. The circuit diagram for this can be drawn as follows:

Input (RA- right arm, LA- left arm) --> Pin 2 of Instrumentation Amplifier (INA) --> Pin 6 of INA --> 0.1 μF capacitor --> Pin 5 of INA --> 100 kΩ resistor --> Pin 4 of INA --> 0.1 μF capacitor --> Pin 3 of INA --> Ground

The INA is a differential amplifier that amplifies the ECG signals and removes common mode noise. The output of the INA is then passed through a bandpass filter to remove unwanted frequencies and enhance the desired frequencies. The bandpass filter can be designed using passive components such as resistors and capacitors.

The output of the circuit can be taken from the output pin of the bandpass filter. The pin numbers of the amplifier and output of the circuit are marked in the diagram as Pin 2 and Pin 5 of INA and the output pin of the bandpass filter, respectively.

This circuit can be useful for conditioning ECG signals for further analysis and diagnosis of heart conditions.

To know more about ECG raw signals visit:

https://brainly.com/question/18915805

#SPJ11

Feature toggles are useful for which activity?a) To enable continuous testingb) To prevent testing complexityc) To decouple deployment from released) To enable continuous code integeration

Answers

It is to be noted that Feature toggles are useful "To enable continuous code integration" (Option D)

What are Feature Toggles?

A feature toggle is a method in software development that allows code to be turned "on" or "off" remotely without the need for a deploy. Product, engineering, and DevOps teams frequently employ feature toggles for canary releases, A/B testing, and continuous deployment.

In software development, a feature toggle is an alternative to keeping numerous feature branches in source code. During runtime, a condition in the code enables or disables a functionality. In agile environments, the toggle is used in production to turn on a feature on demand for certain or all users.

Feature flags and toggles are no longer merely best practices for software delivery, but are now increasingly essential for business operations. With the correct feature management platform, you can test new code securely, receive real-time feedback, and iterate rapidly.

Learn more about Feature Toggles:
https://brainly.com/question/19594286
#SPJ1

A student lives in an apartment with a floor area of 60 m2 and ceiling height of 1.8 m. The apartment has a fresh (outdoor) air exchange rate of 0.5/hr. The stove in the apartment heats by natural gas. The student cooks a meal using two gas burners that each emit carbon monoxide (CO) at a rate of 100 mg/hr. The outdoor CO concentration can be assumed to be negligible (0 ppm). The initial (time = 0) indoor CO concentration can be assumed to be 0 ppm (except for problem 4). Carbon monoxide can be considered as an inert gas, i.e., it does not stick to or react with any surfaces or other gases in air.
1. Assume that the student cooks for a long enough period of time to achieve a steady-state CO concentration in the apartment. What is that concentration in ppb?
2. Assume that the student cooks for only 45 minutes and turns off both burners at that time. What is the CO concentration in ppb at the end of 45 minutes?
3. Repeat problem 2 for air exchange rates that vary from 0.1 to 1/hr and plot the concentration at 45 minutes (in ppb) versus air exchange rate.
4. Assume that for the conditions of problem 2, the student waits 25 minutes after turning the burners off and then starts cooking again with two burners on. How long will it take to reach a concentration that is 95% of steady-state under this condition?
Note that you can actually address this question with an eloquent mathematical derivation (preferred) or simply by crunching the concentration profile in a spreadsheet.
What is the concentration at 95% of steady-state?
Compare your result with the time that would be required to reach 95% of steady-state had the initial indoor CO concentration been 0 ppm.

Answers

Answer:

4

Explanation:

Determine the dimension of a cylindrical riser to be used for the casting as aluminium cube of sides 15cm. The volume shrinkage of aluminium during the solidification is 6.5%.Hint: Volume of the riser = 3% (Shrinkage volume of the casting)

Answers

The correct answer is To determine the dimension of a cylindrical riser for the casting of an aluminum cube of sides 15 cm, we need to consider the shrinkage that occurs during solidification.

The volume of the cylindrical riser should be equal to the volume of the aluminum cube plus the shrinkage volume. Since the shrinkage volume is given to be 6.5% of the volume of the aluminum cube, we can calculate it as follows:Shrinkage volume = \(6.5/100 * (15)^3\)\(= 172.6875 cm^3\)To find the volume of the cylindrical riser, we can use the formula:  Volume of a cylinder = \(πr^2h\)  Let's assume the height of the riser to be h and the radius to be r. We know that the volume of the riser should be 3% of the shrinkage volume plus the volume of the aluminum cube:

Volume of riser\(= 3/100 * 172.6875 + 15^3\)\(= 221.78 cm^3\) Substituting this value into the formula for the volume of a cylinder, we get: \(πr^2h = 221.78\)  Since we don't have any information about the height of the riser, we can assume it to be h. Solving for r, we get: \(r = sqrt(221.78/(πh))\) Therefore, the dimension of the cylindrical riser would depend on the height of the riser, which is not given in the problem statement. We would need to know the height to calculate the radius of the cylindrical riser.

To learn more about cylindrical riser click on the link below:

brainly.com/question/16344141

#SPJ1

A circular hoop sits in a stream of water, oriented perpendicular to the current. If the area of the hoop is doubled, the flux (volume of water per unit time) through it:___________

Answers

Answer:

The flux (volume of water per unit time) through the hoop will also double.

Explanation:

The flux = volume of water per unit time = flow rate of water through the hoop.

The Flow rate of water through the hoop is proportional to the area of the hoop, and the velocity of the water through the hoop.

This means that

Flow rate = AV

where A is the area of the hoop

V is the velocity of the water through the hoop

This flow rate = volume of water per unit time = Δv/Δt =Q

From all the above statements, we can say

Q = AV

From the equation, if we double the area, and the velocity of the stream of water through the hoop does not change, then, the volume of water per unit time will also double or we can say increases by a factor of 2

A California freeway has four lanes in each direction and carries a traffic volume of 4000 veh/hour. There is a l mile long section of this freeway that has a 6% upgrade. It is known that on this segment 5% of the traffic is trucks. There are also 5% RVs but no buses. The drivers are all familiar with the road, and the lane width is 11 ft, right shoulder lateral clearance is 4 ft, and there are three interchanges in every three miles of this freeway. Peak-hour factor (PHF) is 0.80. (a) Find the LOS for this segment. (b) Suppose that there are an additional 1000 veh/hour of traffic added to this freeway and both the peak hour factor and the percentage of RVs remain the same. What is the maximum percentage of trucks on this freeway such that the LOS of this freeway will not go to F?

Answers

(a) To determine the level of service (LOS) for this segment, we need to calculate the flow rate, capacity, and density.

Flow rate = 4000 veh/hourLane width = 11 ftRight shoulder lateral clearance = 4 ftGrade = 6%Speed = 60 mphCapacity:The capacity of each lane can be calculated using the following formula:Capacity = (k/3.5) x w x swhere k is the lane factor, w is the lane width, and s is the speed.For a 6% grade, the lane factor k is 1350.Capacity = (1350/3.5) x 11 x 60Capacity = 28114.29 veh/hourTotal capacity = 4 x CapacityTotal capacity = 112,457.16 veh/hourDensity:Density = flow rate / speedDensity = 4000 / 60Density = 66.67 veh/mileLOS:To determine the LOS, we need to calculate the density-to-capacity ratio (D/C). The LOS is determined based on the following table:LOS A: D/C < 0.35LOS B: 0.35 ≤ D/C < 0.50LOS C: 0.50 ≤ D/C < 0.65LOS D: 0.65 ≤ D/C < 0.80LOS E: 0.80 ≤ D/C < 0.95LOS F: D/C ≥ 0.95D/C = 66.67 / 112,457.16D/C = 0.0006Based on the D/C ratio, the LOS for this segment is A.

To learn more about density click the link below:

brainly.com/question/30410770

#SPJ11

In the figure show, what's the distance from point H to point C?

A. 2'
B. 18'6"
C. 18'
D. 2'6"

In the figure show, what's the distance from point H to point C?A. 2'B. 18'6"C. 18'D. 2'6"

Answers

Answer:

B.

Explanation:

I think not sure hehe

A model with a positive mean forecast error suggests that, on average, the model underforecasts. Answer:True or false

Answers

False. A model with a positive mean forecast error suggests that, on average, the model overforecasts, not underforecasts.

Mean forecast error (MFE) is a measure of the accuracy of a forecasting model, and it is calculated as the average difference between the forecasted values and the actual values.

If the MFE is positive, it means that, on average, the model is forecasting values that are higher than the actual values, resulting in overforecasts. Conversely, if the MFE is negative, it means that, on average, the model is forecasting values that are lower than the actual values, resulting in underforecasts.

Therefore, a positive MFE indicates that the model is overforecasting, while a negative MFE indicates that the model is underforecasting.

Learn more about model  here:

https://brainly.com/question/30564902

#SPJ11

Calculate the passband(s) of a filter consisting of an alternating configuration of two different lossless dielectric layers, one with εr=3, ur=1, thickness of l1=3cm and another with εr=7, ur=1 and thickness of 12=2cm.

Answers

To calculate the passband(s) of a filter with alternating dielectric layers, we need to determine the phase constants and characteristic impedances of each layer.

The passband(s) of the filter are determined by the phase constants and characteristic impedances of the alternating dielectric layers. In the first layer with a relative permittivity of εr = 3 and a thickness of l1 = 3 cm, we can calculate the phase constant β1 and characteristic impedance Z1 using the given formulas.

Similarly, in the second layer with a relative permittivity of εr = 7 and a thickness of l2 = 2 cm, we can calculate the phase constant β2 and characteristic impedance Z2. The passband(s) occur when the phase constants of the two layers are approximately equal, indicating that the phase shifts introduced by the layers cancel each other out, allowing significant signal transmission within that frequency range. By comparing the phase constants, we can identify the passband(s) of the filter.

To learn more about impedance, click here: brainly.com/question/1532269

#SPJ11

What motivates businesses to produce and sell goods and services?

Answers

Answer:

desire to make money that motivates people to produce and sell goods and services. ... rivalry among producers or sellers of similar goods and services to win more business. economic efficiency. wise use of available resources so that costs do no exceed benefits.

More cash in their pockets

When using a GET request, parameters are included as part of the URL and are thus found in the HEADER portion of the HTTP. true

Answers

The statement given, when using a GET request, the parameters are included as part of the URL and are therefore in the HEADER part of the HTTP request, is true.

This is true because when using a GET request, the parameters that are sent with the request are included as part of the URL. This means that the parameters are part of the HEADER part of the HTTP request.

An HTTP request is a request for data sent from a web browser or other client to a web server. The web server then processes the request and returns a response, which may include data, a web page, an error message, or other information.

HTTP requests are used to make dynamic webpages, send and receive data, and perform other tasks.

Complete question:

When using a GET request, parameters are included as part of the URL and are thus found in the HEADER portion of the HTTP. True or false?

Learn more about HTTP request:

https://brainly.com/question/12921030

#SPJ4

determine the application of star connected network​

Answers

Answer:

fijixuc uckyc7fmtjjr hcumffjmfumfnng

Answer:

a method of connecting polyphrase circuits in which one end of each phase line is connected to a common neutral point that may be connected to the earth as protection against lightning or to a wire to which all the other neutral points of the system are connected

Explanation:

a voltage amplifier with an input resistance of 20 k, an output resistance of 100 , and a gain of 1000 v/v is connected between a 100-k source with an open-circuit voltage of 10 mv and a 100- load. for this situation: (a) what output voltage results? (b) what is the voltage gain from source to load?

Answers

(a) The output voltage can be calculated using the voltage gain of the amplifier, which is 1000 V/V.

Output voltage = Gain * Input voltage

= 1000 * 10 mV = 10 V

(b) The voltage gain from source to load can be calculated using the input resistance of the amplifier, output resistance of the amplifier, and the load resistance.

The voltage gain from source to load (Av) can be given as:

Av = (Output voltage) / (Input voltage)

= (Vout * Rload) / (Vin * (Rin + Rload))

= (10V * 100Ω) / (10 mV * (20 kΩ + 100Ω))

= (1000) / (0.01 * 20.1 kΩ)

= 49.5

So, the voltage gain from source to load is 49.5.

In summary, a voltage amplifier is an electronic circuit that amplifies the input voltage to produce a larger output voltage. The voltage gain of an amplifier is a measure of how much the output voltage is greater than the input voltage. The voltage gain from source to load takes into account not only the amplifier gain but also the input and output resistance of the amplifier and the load resistance. By calculating the voltage gain from source to load, we can determine the total amplification that occurs from the source to the load, including the effects of the source impedance and load impedance.

To know more about voltage: https://brainly.com/question/29445057

#SPJ4

An alternator has no output. Technician A says that the alternator field circuit may have an open circuit. Technician B says that the fusible link may be open in the alternator to battery wire. Who is right

Answers

Both technicians could be right. An open circuit in the alternator field circuit or a blown fusible link in the alternator to battery wire can both cause an alternator to have no output.

A communications system transmits a message. The probability that the message will be received is p. To be confident that a message is received at least once, the system transmits it n times. If a message is received, the receiver turns off and does not turn back on.

a. Assuming all transmissions are independent, what is the PMF of K, the number of times the pager receives the same message?
b. Assume p=0.8. What is the minimum value of n that produces a probability of 0.95 of receiving the message at least once?

Answers

Answer:

Follows are the solution to the given points:

Explanation:

In point a:

In the PMF of K, that pager receives its same message number of times, that is  \(=\tiny \binom{n}{k}p^{k} (1-p)^{n-k}\)

In point b:

The possibility of getting number of cultural at least once in x:

\(\to 1-P(\text{not receiving it at all})\\\\\to 1-(0.2)x\\\\\to 1-(0.2)x>0.95\\\\\to (0.2)x<0.05 \\\\\)

appling the \(\log\):

\(\to x>0.25\)

The value x is equal to 3.

ppose a linear programming (maximization) problem has been solved and the optimal value of the
objective function is $300. Now assume that a constraint is removed from this problem. Explain how
this might affect each of the following:
(a) the feasible region
(b) the optimal value of the objective function

Answers

When a constraint is removed from a linear programming (LP) problem, it can have the following effects:

(a) The feasible region:

The feasible region is the set of all possible solutions that satisfy the constraints of the LP problem. When a constraint is removed, the feasible region typically expands, as there are fewer restrictions on the possible solutions. In some cases, removing a constraint may have no effect on the feasible region if the removed constraint did not impact the original feasible region.

(b) The optimal value of the objective function:

Since the feasible region expands when a constraint is removed, it is possible that a new, better solution may become available. This can potentially increase the optimal value of the objective function, especially in a maximization problem.

However, it is also possible that the optimal value remains the same if the removed constraint did not affect the original optimal solution. In other words, if the optimal solution found in the original problem still lies within the expanded feasible region and no better solution is available, the optimal value of the objective function will not change.

Removing a constraint from a linear programming problem can result in an expanded feasible region and may lead to an increased optimal value of the objective function in a maximization problem. However, it is also possible that the optimal value remains unchanged if the removed constraint did not impact the original optimal solution.

What is "Engineering"?

Answers

Engineering is when both the application of science and math are used to solve problems. An engineer is a person who designs, builds, or maintains engines, machines, or public works. There are six large branches of engineering such as Mechanical, Chemical, Civil, Electrical, Management, and Geotechnical, they all have hundreds of subcategories of engineering under each different branch.

a turbine is supplied with 0 6 m3 s of water from a 0.3 m diameter pipe; the discharge pipe has a 0.4 m diameter. determine the pressure drop across the turbine if it delivers 60 kw

Answers

The pressure drop across the turbine if it delivers 60 kw is 75.4KPa.

The task of providing usable output shaft power to drive the propeller falls on the turbine section of the gas turbine engine. It must also deliver energy to run the compressor and other engine accessories. This is accomplished by expanding the gas at high pressure, temperature, and velocity and transforming the resulting gaseous energy into mechanical energy in the form of shaft power.

The turbine needs a significant volume of air to generate the required amount of electricity. The compressor provides this volume of air by pulling it into the engine and compressing it to provide high-pressure air for the turbine.

Learn more about presssure  here:

https://brainly.com/question/15175692

#SPJ4

The Environmental Protection Agency (EPA) has standards and regulations that says that the lead level in soil cannot exceed the limit of 400 parts per million (ppm) in public play areas designed for children. Mike is an inspector, and he takes 50 randomly selected soil samples from a site where they are considering building a playground.

These data show a sample mean of x = 390.25 ppm and standard deviation of Sx = 30.5 ppm. Answer the following:

1. Determine the critical t value and along with the confidence interval for 95% level of

confidence. 2. What does this interval suggest?

Answers

Answer:

See below

Explanation:

Check One-Sample T-Interval Conditions

Random Sample? √

Sample Size ≥30? √

Independent? √

Population Standard Deviation Unknown? √

One-Sample T-Interval Information

Formula --> \(CI=\bar{x}\pm t^*(\frac{S_x}{\sqrt{n}})\)Sample Mean --> \(\bar{x}=390.25\)Critical Value --> \(t^*=2.0096\) (given \(df=n-1=50-1=49\) degrees of freedom at a 95% confidence level)Sample Size --> \(n=50\)Sample Standard Deviation --> \(S_x=30.5\)

Problem 1

The critical t-value, as mentioned previously, would be \(t^*=2.0096\), making the 95% confidence interval equal to \(CI=\bar{x}\pm t^*(\frac{S_x}{\sqrt{n}})=390.25\pm2.0096(\frac{30.5}{\sqrt{50}})\approx\{381.5819,398.9181\}\)

This interval suggests that we are 95% confident that the true mean levels of lead in soil are between 381.5819 and 398.9181 parts per million (ppm), which satisfies the EPA's regulated maximum of 400 ppm.

Who does each person work for? Monica works for a power company, Travis works for a utilities company, and Maggie is self-employed. All three people work for a power company. All three people are self-employed. Monica works for a utilities company, Travis is self-employed, and Maggie works for a power company.

Answers

Answer:

A per the chart given, it can be clearly said

Monica works for a utilities company, Travis is self-employed, and Maggie works for a power company.

Explanation:

Monica probably works for a utilities company since she is responsible for checking gas meters on houses, while Travis is more likely to be self-employed since he installs solar panels on houses – though he can be employed by a company which sells solar company installation services, but the option is available. Since Maggie works on power lines, she is most definitely employed by a power company.

Answer:

The correct answer is D!

Explanation:

youre welcommee!

Which of the following is NOT a factor that contributes to the annual cost to own an automobile

a
vehicle color

b
repairs

c
fuel

d
maintenance

Answers

Answer:

  a. vehicle color

Explanation:

One might expect that the cost of owning a vehicle would not be a function of its color. There is no reason to believe that a blue car gets better gas mileage than a green car of the same make, model, and equipment. So, the appropriate choice is ...

  a. vehicle color

__

However, vehicle color may play a role in ownership costs if more money is spent on washing a white car than would be spent on a black or beige car. Similarly, a light-colored car may require less use of an air-conditioner in the summer sun than does a dark-colored car, ultimately affecting fuel cost. It isn't always obvious what the features of a vehicle are that contribute to ownership cost.

What are the two tools used to create an HTML code? Name one example of each tool.

Answers

Answer:

please mark me as BRAINLIEST

Explanation:

There are so many software packages available to develop HTML. The software packages can be grouped into two main categories: text-based (or code-based) editors.

...

WYSIWYG editors

Macromedia Dreamweaver.

Microsoft FrontPage.

Adobe GoLive.

Which of the following TWO choices would be TRUE characteristics of "democratic" systems of government?
Group of answer choices

Loyalty to a leader

Equal Opportunity

No Due Process

Limited Free Speech

Free and Open Elections

Answers

The TWO alternatives would be Genuine hallmarks of "democratic" forms of government: equal opportunity and free and open elections.

What are the two types of democracy that are most prevalent?

The two types of democracy that are most prevalent now are representative democracy and indirect democracy. When citizens choose representatives to enact laws on their behalf, this is known as indirect democracy or representative democracy.

What two forms of democratic government exist?

A representative democracy that upholds the rule of law and protects people's rights to their property is referred to as a liberal democracy. The ability of elected representatives to rule however they choose is weakly or not at all constrained in an illiberal democracy.

To know more about democratic visit:-

https://brainly.com/question/30189685

#SPJ1

40. AASHTO assumes a deceleration value in calculating SSD of:
a. 14 ft /sec2
b. 11.2 ft /sec2
c. 9.6 ft /sec2
d. 10.2 ft /sec2

Answers

AASHTO assumes a deceleration value in calculating stopping sight distance (SSD) of B. 11.2 ft/s^2. This doesn't take any road defects into account.

Other Questions
In QUW, point T is the centroid, and VT = 8. Find QT and VQ. Kragan Clothing Company manufactures its own designed and labeled athletic wear and sells its products through catalog sales and retail outlets. While Kragan has for years used activity-based costing in its manufacturing activities, it has always used traditional costing in assigning its selling costs to its product lines. Selling costs have traditionally been assigned to Kragans product lines at a rate of 70% of direct materials costs. Its direct materials costs for the month of March for Kragans "high-intensity" line of athletic wear are $395,000. The company has decided to extend activity-based costing to its selling costs. Data relating to the "high-intensity" line of products for the month of March are as follows. Activity Cost Pools Cost Drivers Overhead Rate Number of Cost Drivers Used per Activity Sales commissions Dollar sales $0.05 per dollar sales $940,000 AdvertisingTV Minutes $300 per minute 230 AdvertisingInternet Column inches $10 per column inch 2,000 Catalogs Catalogs mailed $2.50 per catalog 62,400 Cost of catalog sales Catalog orders $1 per catalog order 8,750 Credit and collection Dollar sales $0.03 per dollar sales $940,000Requied:Compute the selling costs to be assigned to the "high-intensity" line of athletic wear for the month of March (1) using the traditional product costing system (direct materials cost is the cost driver), and (2) using activity-based costing. Use the equation from the previous problem to predict the price of bzg stock on day 30. a company has nine projects under consideration. the npv added by each project and the capital required by each project during the next two years is given in table 9. all figures are in millions. for example, project 1 will add $14 million in npv and require expenditures of $12 million during year 1 and $3 million during year 2. fifty million is available for projects during year 1 and $20 million is available during year 2. assuming we may undertake a fraction of each project, how can we maximize npv? according to the European union's fourth directive the threshold for the entities obliged to report suspicious transactions decreased to What term did don norman define as story that puts the operation of the system into context, weaving together all of the essential components, providing a framework, a context, and reasons for understanding?. I NEED AN EXPERT PLZZZZ!! ITS A QUESTION OF MISS AWFULHow did roger feel about Miss Orville at the beginning of the story During 2022, its first year of operations as a delivery service, Indigo Corporation entered into the following transactions. 1. Issued shares of common stock to investors in exchange for $150,000 in cash. 2. Borrowed $40,000 by issuing bonds. 3. Purchased delivery trucks for $55,000 cash. 4. Received $17,000 from customers for services performed. 5. Purchased supplies for $6,700 on account. 6. Paid rent of $4,200. 7. Performed services on account for $11,700. 8. Paid salaries of $26,800. 9. Paid a dividend of $11,200 to shareholders.Using the following tabular analysis, show the effect of each transaction on the accounting equation. Put explanations for changes to Stockholders Equity in the far right column.Assets = Liabilities + Stockholders' EquityCash+Accounts Accounts Bonds+Common Retained Receivable+Supplies+Equipment= Payable Payable Stock Earnings Revenue-Expense-Dividends12345678910 5) Choose what postulate proves the triangles congruent. *SSSSASAC bisects ZBAD, AC bisects ZBCDASAAASAHLBD If we change the distance to 6 meters apart, what will happen to the gravitational force each mass puts on the other ??Question 1 options:A The force of gravity will not change as the masses move away from each otherB The force of gravity will increase as the masses move away from each otherC The force of gravity will decrease as the masses move away from each other the resistivity of a material is doubled when heated a certain amount. what happens to the resistance of a device made of this material when heated the same amount? what is a part of operational crm that automates service requests, complaints, product returns, and information requests? Answer the following questions:1- Write SQL code to list all employees who are working more than 17 years.(2 Marks2 Write SQL code to list all assignments of employee whose first name start with the (3 Marks)3 Write SQL code to list the job description for all employees who have assignments letter "A" belong to a project that its name is "Evergreen" .4 Write PL/SQL procedure that accept the employee first name then the procedure display the number of his/her assignments. (4 Marks) (6 Marks) Based on the information in the model, which equation represents the Pythagorean theorem? PLSS HELPPThe Equation of a line in slope y-intercept form y=mx+b NEED HELP 40 POINTS !!!!Question 3 (1 point) Saved3. Read the passage below from The Tell-Tale Heart by Edgar Allan Poe.TRUE! -- nervous -- very, very dreadfully nervous I had been and am; but why will you say that I am mad? The disease had sharpened my senses -- not destroyed -- not dulled them. Above all was the sense of hearing acute. I heard all things in the heaven and in the earth. I heard many things in hell. How, then, am I mad? Hearken! and observe how healthily -- how calmly I can tell you the whole story.It is impossible to say how first the idea entered my brain; but once conceived, it haunted me day and night. Object there was none. Passion there was none. I loved the old man. He had never wronged me. He had never given me insult. For his gold, I had no desire. I think it was his eye! yes, it was this! He had the eye of a vulture --a pale blue eye, with a film over it. Whenever it fell upon me, my blood ran cold; and so by degrees -- very gradually --I made up my mind to take the life of the old man, and thus rid myself of the eye forever.The narrator asserts that he suffers from anxiety but he isnt a madman. Which of the following is evidence the narrator gives to support this assertion?Question 3 options:I heard all things in the heaven and in the earth. I heard many things in hell. How, then, am I mad?I made up my mind to take the life of the old man, and thus rid myself of the eye forever.TRUE! --nervous --very, very dreadfully nervous I had been and am; but why will you say that I am mad?Object there was none. Passion there was none. I loved the old man. He had never wronged me.Question 4 (1 point) Saved4. Based on the excerpt of this story, the narrator seems to believe that:Question 4 options:Someone who is reckless must be insane.Madness prevents a person from exercising careful thought.Murder is acceptable if you do it with care.Working slowly would have meant he was mad.Question 5 (1 point) Saved5. Which of the following quotes best supports your answer to #4? (Choose 2)Question 5 options:Now this is the point. You fancy me mad. Madmen know nothing. But you should have seen me. You should have seen how wisely I proceeded --with what caution --with what foresight --with what dissimulation I went to work!And have I not told you that what you mistake for madness is but over acuteness of the senses? --now, I say, there came to my ears a low, dull, quick sound, such as a watch makes when enveloped in cotton. It took me an hour to place my whole head within the opening so far that I could see him as he lay upon his bed. Ha! --would a madman have been so wise as this?Yet, for some minutes longer I refrained and stood still. But the beating grew louder, louder! I thought the heart must burst. And now a new anxiety seized me --the sound would be heard by a neighbor! Find the equation of the tangent line to the graph of the function f(t)=sin (7/2) at the point (2,0) Enclose numerators and denominators in parentheses. For example, (a-b)/(1+n). Include a multiplication sign between symbols. For example, a find the mean of x,+2,3x,-4,3x+2 and 2x help asap please ill give brainliest pls help asap will give brainliest!!!