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
Thoughts about drinking and driving
poizon [28]

Answer: it’s very bad behavior and can be dangerous

Explanation:

8 0
3 years ago
Read 2 more answers
PLEASE ANSWER FOR DRIVERS ED! WILL GIVE BRAINLIEST
Zepler [3.9K]

Answer:D

Explanation:

Google it it’s 100 ft

8 0
3 years ago
A series AC circuit contains a resistor, an inductor of 250 mH, a capacitor of 4.40 µF, and a source with ΔVmax = 240 V operatin
slega [8]

Answer:

Explanation:

Inductance = 250 mH = 250 / 1000 = 0.25 H

capacitance = 4.40 µF = 4.4 × 10⁻⁶ F ( µ = 10⁻⁶)

ΔVmax = 240, f frequency = 50Hz and I max = 110 mA = 110 /1000 = 0.11A

a) inductive reactance = 2πfl =  2 × 3.142 × 50 × 0.25 H =78.55 ohms

b) capacitive reactance = \frac{1}{2\pi fC} = 1 / ( 2 × 3.142× 50 × 4.4 × 10⁻⁶ ) = 723.34 ohms

c) impedance = \frac{Vmax}{Imax} = 240 / 0.11 = 2181.82 ohms

7 0
3 years ago
Read 2 more answers
How many hours should I charge a 4.8v 600mah battery (I need it by today please)
prohojiy [21]

The number of hours that will be needed to charge a 600mah battery will be 1.5 hours.

<h3>What is a battery?</h3>

It should be noted that an electric battery simply means a source of electric power that consist of one or more electrochemical cells that are with external connections that are important for powering electrical devices.

It should be noted that when a battery is supplying power, then the positive terminal is the cathode while the negative terminal is the anode.

In conclusion, the number of hours that will be needed to charge a 600mah battery will be 1.5 hours.

Learn more about battery on:

brainly.com/question/16896465

#SPJ1

5 0
2 years ago
why is the thermal conductivity of super insolation order of magnitude lower than the thermal conductivity of ordinary insulatio
Anni [7]

Answer:

Super insulation are obtained by using layers of highly reflective sheets separated by glass fibers in an vacuumed space. Radiation heat transfer between any of the surfaces is inversely proportional to the number of sheets used and thus heat lost by radiation will be very low by using these highly reflective sheets which will an effective way of heat transfer.

Explanation:

3 0
3 years ago
Other questions:
  • A brittle intermetallics specimen is tested with a bending test. The specimen's width 0.45 in and thickness 0.20 in. The length
    5·1 answer
  • 6. Staples are the most common item used to secure and support cables in residential wiring.​
    14·1 answer
  • Why is a building considered a type of system?
    6·1 answer
  • An n- channel enhancement- mode MOSFET with 50 nm thick HfO2 high- k gate dielectric (Pr = 25) has a flat band voltage of 0.5 V,
    5·1 answer
  • A simple Rankine cycle coal-fired power plant has given states identified in the following table. The power plant produces 2.1 b
    9·1 answer
  • A railroad runs form city A to city B, a distance of 800km, through mountainous terrain. The present one-way travel time (includ
    13·1 answer
  • Has anyone lost faith in humanity ✌️
    7·1 answer
  • How many times has the ITU-R revised the CCIR 601 international standard? A. four B. five C. six D. seven
    8·1 answer
  • Can someone please help me with this <br>I've an exams tomorrow ​
    7·1 answer
  • A golfer and her caddy see lightning nearby. the golfer is about to take his shot with a metal club, while her caddy is holding
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!