Reader small image

You're reading from  FPGA Programming for Beginners

Product typeBook
Published inMar 2021
Reading LevelIntermediate
PublisherPackt
ISBN-139781789805413
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Frank Bruno
Frank Bruno
author image
Frank Bruno

Frank Bruno is an experienced high-performance design engineer specializing in FPGAs with some ASIC experience. He has experience working for companies like SpaceX, GM Cruise, Belvedere Trading, Allston Trading, and Number Nine. He is currently working as an FPGA engineer for Belvedere Trading.
Read more about Frank Bruno

Right arrow

Questions

  1. If we have a large dynamic range in our numbers, what are we better off using?

    a. Integers

    b. Fixed point

    c. Floating point

    d. Imaginary

  2. Which order represents the number complexity from least complex to most complex?

    a. Fixed point, integers, floating point

    b. Integer, fixed point, floating point

    c. Floating point, fixed point, integer

    d. Integer, floating point, fixed point

  3. The following code is an example of what kind of design?
    always @(posedge clk) begin
      if (stage[0]) out[0] <= fp_out[0];
      if (stage[1]) out[1] <= out[0] + fp_out[1];
      if (stage[2]) out[2] <= out[1] + out[0] + fp_out[2];
    end

    a. Pipelined

    b. Parallel

    c. State machine

  4. The following code is an example of what kind of design?
    always @(posedge clk) begin
      for (int i = 0; i < 128; i++) dout[i] <= din[i*2] + din[i*2+1];
    end 

    a. Pipelined

    b. Parallel

    c. State machine

  5. Which of the following signals makes up an AXI streaming interface?

    a. tdata

    b. tvalid...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
FPGA Programming for Beginners
Published in: Mar 2021Publisher: PacktISBN-13: 9781789805413

Author (1)

author image
Frank Bruno

Frank Bruno is an experienced high-performance design engineer specializing in FPGAs with some ASIC experience. He has experience working for companies like SpaceX, GM Cruise, Belvedere Trading, Allston Trading, and Number Nine. He is currently working as an FPGA engineer for Belvedere Trading.
Read more about Frank Bruno