Answer:
128 is ur answer
Explanation:
please mark me as brainilist
You can access sites else by ip address.
Answer:
C. 14.4 kwhr.
Explanation:
To calculate the energy used by appliance first calculate the power. The formulae for calculating power(<em>P</em>) is
, where V stands for voltage and I stands for current.
In the given problem, V = 240 volts and I = 15 amp. Therefore,

Now, formulae for calculating energy used i.e. work(W) is
, where <em>t</em> is the time.
In the given question time is 4 hr. Therefore energy used will be,
Energy used (W) =
.
Answer:
The typedef struct is as follows:
typedef struct jumper_t {
char name[16];
double tries[N_TRIES];
double best_jump;
double deviation;
} jumper_t;
The declaration of jlist is:
jumper_t jlist[10];
Explanation:
This defines the typedef structure
typedef struct jumper_t {
The following declares the variables as stated in the question
<em> char name[16];
</em>
<em> double tries[N_TRIES];
</em>
<em> double best_jump;
</em>
<em> double deviation;
</em>
}
This ends the typedef definition
jumper_t;
(b) The declaration of array jlist is:
jumper_t jlist[10];