answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

Which pair of loops causes a statement or set of statements to repeat as long as a condition is true?

A while loop repeats until the condition becomes false, and may never execute: int a = 4; while (a > 5) { //Do something } or int a = 4; while (a > 0) { //Do something a--; }


What are control structures used in javascript?

The control structures used in java script are if-statement, for-loop, for-in loop, while loop,do-while loop, switch-statement, with-statement. try-catch-finally statements.


What is the significance of test condition in a loop?

The test condition in a loop is what's used to determine when the loop should end.


Why AM is used for long distance communication?

AM has a frequency range of 531 kHz to 1602 kHz and on the other hand FM has a frequency range between 8705 MHz to 108 MHz. If we talk about the bandwidth of AM then it is 1071 KHz and bandwidth of FM is 20.5 MHz.According to the bandwidth FM should be used for long distance transmission but it is not used for long distance but AM is used fir long distance transmissions. the answer is here.Long distance transmissions are also decided by the Spectrum of the Signal in frequency domain by doing the Fouriertransform of the Signal.If we draw the Spectrum of AM waves the we find that their is a main loop in the central part of the spectrum with a high frequency and on the left and right side of this loop their are side loop which are very smaller then the main loop. In FM information can be recover from the main loop only not from the side loops. On the other hand in AM waves all the loops in spectrum is of same size and information can be recover from all the loops.That is why AM is used for long distance transmission.Thnx -Vipin Jasoria


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).

Related Questions

Can Demerol be used with a loop diuretic?

Yes, Demerol can be used with a loop diuretic


Which loop is used when two things are done at the same time?

A loop inside a loop, which is known as a nested loop.


Which pair of loops causes a statement or set of statements to repeat as long as a condition is true?

A while loop repeats until the condition becomes false, and may never execute: int a = 4; while (a > 5) { //Do something } or int a = 4; while (a > 0) { //Do something a--; }


What statement is used to skip a part of loop?

The continue statement is used to skip the balance of a loop.


What are the release dates for The Long Loop on the Pecos - 1927?

The Long Loop on the Pecos - 1927 was released on: USA: 9 January 1927


What are control structures used in javascript?

The control structures used in java script are if-statement, for-loop, for-in loop, while loop,do-while loop, switch-statement, with-statement. try-catch-finally statements.


What is the significance of test condition in a loop?

The test condition in a loop is what's used to determine when the loop should end.


Why AM is used for long distance communication?

AM has a frequency range of 531 kHz to 1602 kHz and on the other hand FM has a frequency range between 8705 MHz to 108 MHz. If we talk about the bandwidth of AM then it is 1071 KHz and bandwidth of FM is 20.5 MHz.According to the bandwidth FM should be used for long distance transmission but it is not used for long distance but AM is used fir long distance transmissions. the answer is here.Long distance transmissions are also decided by the Spectrum of the Signal in frequency domain by doing the Fouriertransform of the Signal.If we draw the Spectrum of AM waves the we find that their is a main loop in the central part of the spectrum with a high frequency and on the left and right side of this loop their are side loop which are very smaller then the main loop. In FM information can be recover from the main loop only not from the side loops. On the other hand in AM waves all the loops in spectrum is of same size and information can be recover from all the loops.That is why AM is used for long distance transmission.Thnx -Vipin Jasoria


What kind of loop is used to perform the loop until a special value is entered?

while


What is loop used for woman to avoid pregnancy?

"Loop?" It's called the vaginal ring.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).


What does a for next loop do?

A for loop is typically used to implement a counted loop: for x=0 to 100 step 1 print x next x