Answer:
b)false
Explanation:
Rolling is a process in which work piece passes through rolls to produce desired out put of the work piece.Rolling is a metal forming process.
We know that friction force is responsible for motion of work piece between rolls.If friction force is so small at the entrance side then work piece will not enter in the forming zone and forming process will not occurs.So the friction force should be high at the entrance side and low at the exit side.
So given statement is wrong.
Well, I do know that polarity affects the voltage.
<h3><u>CSMA/CD Protocol:
</u></h3>
Carrier sensing can transmit the data at anytime only the condition is before sending the data sense carrier if the carrier is free then send the data.
But the problem is the standing at one end of channel, we can’t send the entire carrier. Because of this 2 stations can transmit the data (use the channel) at the same time resulting in collisions.
There are no acknowledgement to detect collisions, It's stations responsibility to detect whether its data is falling into collisions or not.
<u>Example:
</u>
, at time t = 10.00 AM, A starts, 10:59:59 AM B starts at time 11:00 AM collision starts.
12:00 AM A will see collisions
Pocket Size to detect the collision.

CSMA/CD is widely used in Ethernet.
<u>Efficiency of CSMA/CD:</u>
- In the previous example we have seen that in worst case
time require to detect a collision.
- There could be many collisions may happen before a successful completion of transmission of a packet.
We are given number of collisions (contentions slots)=4.
Distance = 1km = 1000m

Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).
Answer:
Q = 424523.22 kw
Explanation:

k = 48.9 W/m - K
c = 0.115 KJ/kg- K


T_∞ = 35 degree celcius
velocity of air stream = 15 m/s
D = 40 cm
L = 200 cm
mass flow rate




solving for h

h = 675.6 kw/m^2K

Q = 675.6*2.513*(285-35)
Q = 424523.22 kw