HITEQUEST
technical interview Q & A for high-tech professionals
 
 
Interview Questions
Electronics Hardware
Computer Software
General questions
Brain teasers

Resources
Resume and interview
How to get a job in Silicon Valley
How much are you worth on market?
Do you need an agent?

Break time stories
Tomato company

About Hitequest
About Hitequest
Join us
Home page

 
 
 
 
 
 
   

 
=Electronics Hardware Questions=

     
   

 
  • Two capacitors are connected in parallel through a switch. C1= 1uF, C2= 0.25uF.
    Initially the switch is open, C1 is charged to 10V. What happens if we close the switch? No losses in wires and capacitors. 

    Answers & follow ups

  • There are 2 switches that control the light in the long corridor. Each one can turn the light on and off. How would you do the wiring circuit?
    Answers & follow ups

  • What will be the voltage level between the two capacitors? The Vcc = 10v DC.
    Answers & follow ups

  • Suppose, you work on a specification for a system with some digital parameters. Usually a spec table has Min,Typ and Max colomns for each parameter. In which column would you put a Setup time and a Hold time?
    Answers & follow ups

  •   Design a simple circuit based on combinational logic to double the output frequency. 

    Answers & follow ups

  • 8bit ADC with parallel output converts an input signal into digital numbers. You have to come up with an idea of a circuit , that finds the MAX  of every 10 numbers at the output of the ADC.
    Answers & follow ups

  • For an 8-bit flash A/D converter with an input range from 0V to 2.55V, describe what happens when the input voltage changes from 1.27V to 1.28V
    Answers & follow ups

  • Our system has CPU, ALU and two 8bit registers but no memory. How to exchange the data inside registers ?
    Answers & follow ups

  • We swapped 2 transistors in CMOS inverter (put n-transistor at the top and p-transistor at the bottom). Can this circuit work as a non-inverting buffer?

    Answers & follow ups

  • To enter the office people have to pass through a hallway. Once someone gets into the office the light turns on. The light turns off when noone is present in the room. There are two registration sensors in the hallway. Build a state machine diagram and design a circuit to control the light.


    Follow Ups



     
  • Draw a CMOS inverter. Why does CMOS technology dominate in VLSI manufacturing?
    Follow Ups



     
  • Design a FIFO 1 byte wide and 13 words deep. The FIFO is interfacing 2 blocks with different clocks. On the rising edge of clk the FIFO stores data and increments wptr. On the rising edge of clkb the data is put on the b-output,the rptr points to the next data to be read.
    If the FIFO is empty, the b-output data is not valid. When the FIFO is full the existing data should not be overriden.
    When rst_N is asserted, the FIFO pointers are asynchronously reset.

    module fifo1 (full,empty,clk,clkb,ain,bout,rst_N)
    output [7:0] bout;
    input [7:0] ain;
    input clk,clkb,rst_N;
    output empty, full;
    reg [3:0] wptr, rptr;
    ...

    endmodule

    Hint from Hitequest


     
  • We have a circular wheel with half painted black and the other half painted white. There are 2 censors mounted 45 degree apart at the surface of this wheel( not touching the wheel) which give a "1" for black and "0" for white passing under them. Design a circuit to detect which way the wheel is moving. Can not assume any fixed position for start.
    Follow Ups



     
  • You have a circuit operating at 20 MHz and 5 volt supply. What are the options to reduce the power consumption of the circuit - change operating frequency or the power supply voltage or else?
    Follow ups



     
  • What is the purpose of a diode next to relay on schematics?

    Answers & follow ups


  • Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that result in heads.
    Follow Ups



     

  • How many bit combinations are there in a byte?
    Follow Ups



     
    More questions and answers here...