Question 1

Answer saved
Marked out of 1.00
Flag question

Question text

Consider 5 different processors listed below, executing the same instruction set with the clock rates and cycles per instruction given in the following table:

 Choose the one that has the best performance.

Select one:

Question 2

Answer saved
Marked out of 1.00
Flag question

Question text

What is the logic equation for the circuit below? The "!" symbol must be considered as negation indicator.

Select one:

Question 3

Answer saved
Marked out of 1.00
Flag question

Question text

Considering the figure below, t1, t2, t3 and t4 correspond, respectively, to wich timing characteristics? 

Select one:

Question 4

Answer saved
Marked out of 1.00
Flag question

Question text

Wich structure dies the code below implements?

--------------------------------------------------- library ieee ; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; --------------------------------------------------- entity example is port( I: in std_logic; clock: in std_logic; load: in std_logic; clear: in std_logic; Q: out std_logic ); end example; ---------------------------------------------------- architecture behv of example is signal Q_tmp: std_logic; begin process(I, clock, load, clear) begin if clear = '0' then
Q_tmp <= '0';
elsif (clock='1' and clock'event) then
if load = '1' then
Q_tmp <= I;
end if; end if; end process; Q <= Q_tmp; end behv; ---------------------------------------------------
Select one:

Question 5

Answer saved
Marked out of 1.00
Flag question

Question text

What logic gate does the CMOS layout below represents?

Select one:

Question 6

Not yet answered
Marked out of 1.00
Flag question

Question text

Wich logic gate does the circuit below implement?

Select one:

Question 7

Answer saved
Marked out of 1.00
Flag question

Question text

In a Moore type finite state machine, the output signals depend on __________________.

Select one:

Question 8

Answer saved
Marked out of 1.00
Flag question

Question text

What does the circuit below implement?

 

Select one:

Question 9

Answer saved
Marked out of 1.00
Flag question

Question text

Considering that E1, E2 and E3 are input signals and S is an output signal, the waveforms below represent the behavior of a/an ______________ logic gate.

Select one:

Question 10

Answer saved
Marked out of 1.00
Flag question

Question text

In Object-Oriented Programming (OOP) the term class means to a set of:

Select one:

Question 11

Answer saved
Marked out of 1.00
Flag question

Question text

The Karnaugh's map shown below corresponds to the following logic function: _____________________ (being '!' the negation of the variable).



Select one:

Question 12

Answer saved
Marked out of 1.00
Flag question

Question text

The function below can be used to calculate _____________.

 

int x(int in) {

int i;

for (i=2;i<in;i++) {

if (in == i*i) {

return i;

};

};

return 0;

};

 

Choose an alternative:

Select one:

Question 13

Answer saved
Marked out of 1.00
Flag question

Question text

The logical equation (S = a + b + c) corresponds to a:

Select one:

Question 14

Answer saved
Marked out of 1.00
Flag question

Question text

The device depicted below is a __________ transistor.



Select one:

Question 15

Answer saved
Marked out of 1.00
Flag question

Question text

What does the code below implement?

 

module x(out,data1,data2,op);

    input [2:0] op;

    input [3:0] data1,data2;

    output reg [3:0] out;

 

  always @(op or data1 or data2)

  case (op)

    3'b001: out = data1 | data2;

    3'b010 : out= data1 ^ data2;

    3'b101 : out = ~data1;

    default : out = 4'b0;

   endcase

endmodule

Select one: