04-26-2018 04:45 PM
After I run this VI I keep getting answer 1 or (A) this happens no matter what numbers I put into rate or number of samples per channel.
The answer for this question is 3 or (C). Am I missing something here?
04-26-2018 05:27 PM
To figure out how many times the loop will run, consider what the timer will read on each loop. It will take ~2s to collect all the samples (20k/10k). On the first iteration the timer will read 0, on the 2nd it will read 2, on the 3rd it will read 4, on the 4th it will read 6 and cause the stop condition to be true. So it will run 4 times.
04-26-2018 08:15 PM
Thanks