1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
algol [13]
3 years ago
10

Given numRows and numColumns, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print

a space after each seat, including after the last. Ex: numRows = 2 and numColumns = 3 prints:
Engineering
1 answer:
Arada [10]3 years ago
3 0

Answer:

#include <stdio.h>

int main(void)

{

  int Rows = 2;

  int Col = 3;

  int row = 0;

  char colm = 'A';

  char var = 'A';

   for (row = 1; row<=Rows; ++row){

 for (colm = 0; colm<Col; colm++){

    printf("%d", row);

    printf("%c ", var + colm % 3);

 }

}

        ++var;

     }

  }

  printf("\n");

  return 0;

}

You might be interested in
We can process oil into a lot of useful fuels to run our cars, trucks, and even airplanes. Oil is used for making lots of other
Ostrovityanka [42]

Answer:

Explanation:

Products of oil in our everyday life:

(1) Petro-Chemical Feedstock: These are by product of Refining of Oil which it is used extensively to make PET bottles, Paints, Polyester Shirts, Pocket combs e.t.c

(2) Asphalt : Used extensively to make Motor Road, highways

(3) Plastics : we use plastics in our everyday life, this is also a product of Refining of crude oil e.g PVC, Telephone casing, Tapes e.t.c

(4) Lubricating Oil/Grease : This is another product from crude oil Fractional Distillation.

(5) Propane/ Cooking Gas: This is also a product from oil which is used in our everyday life for cooking, grilling etc.

4 0
3 years ago
The drag force, Fd, imposed by the surrounding air on a
Ad libitum [116K]

Answer:

a)  23.551 hp

b)  516.89 hp

Explanation:

<u>given:</u>

F_{d} =\frac{1}{2} C_{d} A_{p} V^{2} \\V_{a}=25 m/hr-->25*\frac{5280}{3600} =36.67ft/s\\V_{b}=70 m/hr-->70*\frac{5280}{3600} =102.67ft/s\\\\C_{d}=.28\\A=25 ft^2\\p=.075lb/ft^2

<u>required:</u>

the power in hp

<u>solution:</u>

(F_{d})_{a}  =\frac{1}{2} C_{d} A_{p} V_{a} ^{2}.............(1)

by substituting in the equation (1)

         =353.27 lbf

(F_{d})_{b}  =\frac{1}{2} C_{d} A_{p} V_{b} ^{2}..........(2)

by substituting in the equation (2)

         = 2769.29 lbf

power is defined by

             P=F.V

     P_{a}=353.27*36.67

           =12954.411 lbf.ft/s

           =12954.411*.001818

           =23.551 hp

      P_{a}=2769.29*102.67

           = 284323 lbf.ft/s

           = 284323*.001818

           = 516.89 hp

3 0
3 years ago
Radioactive wastes are temporarily stored in a spherical container, the center of which is buried a distance of 10 m below the e
a_sh-v [17]

Answer:

Outside temperature =88.03°C

Explanation:

Conductivity of air-soil from standard table

   K=0.60 W/m-k

To find temperature we need to balance energy

Heat generation=Heat dissipation

Now find the value

We know that for sphere

q=\dfrac{2\pi DK}{1-\dfrac{D}{4H}}(T_1-T_2)

Given that q=500 W

so

500=\dfrac{2\pi 2\times .6}{1-\dfrac{2}{4\times 10}}(T_1-25)

By solving that equation we get

T_2=88.03°C

So outside temperature =88.03°C

6 0
3 years ago
Which of the following describes all illustrations created by freehand?
Klio2033 [76]

extension lines,sketches,leader lines,dimensions describes all illustrations created by freehand.

5 0
3 years ago
Read 2 more answers
Ughhh I feel so moody rn and I’m cramping so bad
padilas [110]
Explanation:!!

I hope you Feel better :)
3 0
3 years ago
Read 2 more answers
Other questions:
  • A 55-μF capacitor has energy ω (t) = 10 cos2 377t J and consider a positive v(t). Determine the current through the capacitor.
    12·1 answer
  • There are 30 students in a class. Choose the statement that best explains why at least two students have last names that begin w
    12·1 answer
  • In casting experiments performed using a certain alloy and type of sand mold, it took 170 sec for a cube-shaped casting to solid
    11·2 answers
  • A non-linear analog force sensor outputs the following voltages for different forces.
    7·1 answer
  • REVIEW QUESTIONS
    11·1 answer
  • Mining is an example of this type of business
    7·1 answer
  • Write a program that uses the function isPalindrome given below. Test your program on the following strings: madam, abba, 22, 67
    13·1 answer
  • How does the two-stroke Otto cycle differ from the four-stroke Otto cycle?
    6·1 answer
  • Which of the following sentences uses the word malleable correctly?
    7·2 answers
  • What are the partial products of 2.3 x 2.6
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!