The Daily CLAD

Community Browser
cancel
Showing results for 
Search instead for 
Did you mean: 

Re: The Dataflow Paradigm (Strikes Back)

SercoSteveB
Active Participant

Assuming an initial value for Numeric Value In of 4, what are the values of Numeric Value In and Numeric Value Out following execution of the VI?

Dataflow Paradigm #2.png

a) Numeric Value In = 8, Numeric Value Out = 10

b) Numeric Value In = 8, Numeric Value Out = 6

c) Numeric Value In = 10, Numeric Value Out = 6

d) Numeric Value In = 10, Numeric Value Out = 10

Comments
crossrulz
Knight of NI

B


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
shree_bala
Member

0 --->     4

             4

1 --->     4

             5

2 --->     5

             6

3 --->     6 (Numeric Value Out)

             8 (Numeric Value In)

Ans : B

nik35324
Member

B

LordNobady
Member

B


Learning LabVIEW since January 2013
ashwinilele
Member

B

aissa.hmd
Member

B

Amiri
Member

B

Kinda tricky...

MrStevenUND
Member

tricky.  B.

pksusic
Member

B

SercoSteveB
Active Participant

Answer: B.  Nice one crossrulz, shree_bala, nik35324, LordNobady, ashwinilele, aissa.hmd, Amiri, MrStevenUND & P.KARUPPASAMY.

Good explanantion shree_bala thanks.

N.UdhayaKamali
Member

B

VijaySekaran
Member

Couldn't get this one..can anybody explain this?Like why does the lower value node transfers the data to the upper value node only in the next iteration?

crossrulz
Knight of NI

The key that you are missing is probably the fact that property nodes execute top to bottom.  So on the second iteration, even though 5 is being written to the control, a 4 is read first.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
VijaySekaran
Member

Thank you very much mate..got the point