LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

CLDR Sample Exam Question

Solved!
Go to solution

I was going through the CLD recertification sample exam (here), and one of the questions has me stumped.  For question 39, I understand what the code is doing and the right answer, but I can't seem to find how to place this code on a block diagram.  I'm referring to the function with the -3->, ?, and i on the icon.  Can anyone tell me where on the function pallete to find this (LV2009 or 8.6)?

 

Thanks ahead!

 

 

==============================================

Message 1 of 25
(11,345 Views)
Solution
Accepted by topic author Dave_Kaufman

Wow, that one took me a while to figure out.  That object is a Feedback Node, but with a funky configuration.  You have to change its direction (so it's a feed forward node), then you have to right-click and choose "Properties" to change the delay to '3'.  Once you do that it should be configured like the one in the screenshot of the exam, as so:

 

feedback_node_with_delay.png

Message 2 of 25
(11,333 Views)

I'm still stumped here.  I haven't installed 2009 yet and can't find the delay properties in 8.6, was is added for LV 2009?

Also, the possible answers are

a. {-2, -1, 0, 1, 2, 3}
b. {-2, -1, 0, 0, 1, 2}
c. {2, 1 0, 0, 1, 2}
d. {2, 1, 0, -1, -2, -3} 

With "C" being listed as the correct answer.  My answer would be "E" none of the above.  You can't have a for loop iterating 6 times with 5 indexed outputs. So based on this the answer would have to be missing a comma or else I really have no understanding here. 

Now the most important question, name one instance where you would use this rediculous function?

Thanks,

Dave

0 Kudos
Message 3 of 25
(11,263 Views)

Hi Dave,

 

Yes, the properties for the Feedback Node were added in LabVIEW 2009.  Also, you're right about the missing comma.  Answer (c) should be {2,1,0,0,1,2}.

 

I have already given some feedback (haha) to the certification team that, in my opinion, esoteric Feedback Node questions really have no place in these exams.

Message 4 of 25
(11,248 Views)

Thanks for the clarification Darren.  I understand that they want to keep the tests current but this seems ludicrous.  Few people seem to use feedback nodes anyway.

 

I do think I'm starting to understand the function, I just can't grasp a possible use case.  At least now that I'm aware of it the use case may just smack me upside the head one day.   

Thanks,

Dave

0 Kudos
Message 5 of 25
(11,241 Views)

Well it's the same like this:

 Example_VI.png

 

Allthough it is quite unclear to me why I had to reverse the first part of the array.

 

But a very advanced functionality, I like the way to initialize with an array.

 

Ton

Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas

LabVIEW, programming like it should be!
Message 6 of 25
(11,189 Views)

TCPlomp wrote:

 

 

Allthough it is quite unclear to me why I had to reverse the first part of the array.

 

But a very advanced functionality, I like the way to initialize with an array.

 

Ton


I would say that you had to reverse the array because you wired the shift registers in reverse order.  Smiley Wink  Following the arrows of the SR, the first initial value out is the bottom of the stack.  This very reason is why I, like you, really like the new capability to initialize with an array.

 

I think a question like this is ok for the tests (especially since I don't take them) if it is just one or two.  I'd really love to know what percentage of people would get this right if it weren't multiple choice.

 

 

0 Kudos
Message 7 of 25
(11,146 Views)

These feedback node configurations are used to make pipelined designs to run on FPGAs, where there is a common need to balance delays in parallel data paths. The feedback node gets you a much cleaner and more readable diagram for these applications; the multiple delay feature is just an extension to allow an efficient FPGA implementation and a more compact diagram representation for these delay balancing use cases.

 

That said, I agree that this should not be exam material unless knowledge of the FPGA module is a requirement of the test.

Message 8 of 25
(10,973 Views)
Thanks for that info, Jim...I was not aware of the FPGA use case for Feedback Nodes.  Knowledge of FPGA is not a requirement for the CLAD (nor is it for the CLD or CLA).
Message 9 of 25
(10,952 Views)

Darren wrote:

Hi Dave,

 

Yes, the properties for the Feedback Node were added in LabVIEW 2009.  Also, you're right about the missing comma.  Answer (c) should be {2,1,0,0,1,2}.

 

I have already given some feedback (haha) to the certification team that, in my opinion, esoteric Feedback Node questions really have no place in these exams.


 

More than that. Some of us work for folks who can't yet afford the latest and greatest. I think any single version/latest version- unique question has no place in these exams. It's bad enough it costs 5K up front then another 1K every year to stay with the latest version. Smiley Mad 
PaulG.

LabVIEW versions 5.0 - 2020

“All programmers are optimists”
― Frederick P. Brooks Jr.
Message 10 of 25
(10,780 Views)