You are here
Home > Analog >

MediaTek interview questions and experience

MediaTek interview questions and experience

Here are some MediaTek interview questions and experiences which had been will be shared. Refer to these interview questions and experience words prepare accordingly.

As we all know MediaTek is a fabless semiconductor hardware company. The company provides or produces the processor IC chips for wireless communication. Most of the time the company hires communication stream aspirants, but it also prefers VLSI specialization aspirants as it works on semiconductor hardware physical design.

The company MediaTek conducted the test through cocubes online exam.

The online test included around 49 objective questions and was given a time limit of 65 minutes. Solving the online test very fast was a must need. The online test had a total of four sections which are

Aptitude (Ten questions)
C (Ten questions, most of them were based on pointers)
Basic Electronics (Fourteen questions)
Optional based on profile Software or Hardware

MediaTek aptitude questions:

The aptitude section was moderate level. The topics which were included in the aptitude section were Number series, Data sufficiency, logical reasoning (Matching of images), paragraph based, and a question in which three connected gears which are rotated three times in the clockwise direction…, the number on the arrow of each gear will be?.

Also go through,

Few questions are

1. Find the missing term in the below-given series pattern.
TIME, UHND, VGOC, ____, XEQA, YDRJ, ZCSY
Options:

  1. WPFB
  2. WPBF
  3. WFBP
  4. WFPB

2. Two statements 1 and 2 for the question are given below. You need to answer the question using or without using the help of the given statements and decide whether these statements 1 and 2 are sufficient to answer the question or not. The question is WHAT IS THE AGE OF A STUDENT?
Statement 1: Ten years ago the student’s age was half as old as his father’s.
Statement 2: Five years from now his father’s age will be 61 years.
Options:

  1. Anyone statement is sufficient to answer
  2. Only one is sufficient but another statement is not.
  3. Both are required to answer.
  4. Both are not sufficient to answer.

MediaTek basic electronics questions:

1. Which one is correct about logic circuits?
Options:

  1. The sink current in the logic circuits flows from the driver gate to the driven gate.
  2. The source current in the logic circuits is greater than the sink current.
  3. The sink current in the logic circuits is greater than the source current.
  4. None of the above four options.

2. Chose the right answer among the given following sentences.
Options:

  1. The MOS device has a certain amount of drain current Id even when the gate to source voltage Vgs is zero is called a depletion mode device.
  2. The MOS device that is normally in the Cut-off region at zero value of gate to source voltage is called a depletion mode device.
  3. The MOS device has Id = 0, at Vgs = 0. is called an enhanced depletion mode device.
  4. The MOS device is normally ON at zero gates to source voltage is called an enhancement mode device.
3. How many logic states are there, for a 4-bit synchronous counter?
Options:

  1. 8
  2. 4
  3. 16
  4. 32
4. In two’s complement addition, a negative number -B = 1011. what is the value of +B?
Options:
  1. 0110
  2. 0011
  3. 0101
  4. 1000
5. What is the major difference between microprocessors and microcontrollers?

Options:

  1. Data memory and Program memory storage model
  2. Input-Output components.
  3. The total number of registers
  4. All of the above.
6. The microprocessor 8086 provides N number of 16-bit registers, where the value of N is ____?

Options:

  1. 16
  2. 8
  3. 14
  4. None of these
7. The right shift bit operation is equaled to the ____, and the left shift bit operation is equaled to ___.

Options:

  1. A and B
  2. Addition and Division
  3. Division and Multiplication
  4. Multiplication and Division
8. Which of the below logic gate function can be used as a frequency multiplier?

Options:

  1. NAND gate
  2. AND gate
  3. XOR gate
  4. None of these.
9. In the VHDL code
entity counter is
port ( clk: in std_logic ;
Q: out std_logic_vector (3 downto 0);
TC: out std_logic);
end counter;
architecture arch of counter is
signal cntr : std_logic_vector (3 downto 0) := "1111" ;
signal TC_T: std_logiv := '0';
begin
process(clk,cntr)
begin
if(clk'event and clk='1') then
cntr<=cntr+'1';
if(cntr="1111") then
TC_T<='1';
else
TC_T<='0';
end if;
end if;
end process;
Q<=cntr;
TC<=TC_T;
end arch;
The value of TC will be 1 on the
Options:

  1. 16th clock
  2. 1st clock
  3. 15th clock
  4. None of these
10. Hamming codes are an example of which one of these options?
Options:

  1. Source coding
  2. Cryptographic coding
  3. Line coding
  4. Channel coding
11. The NAND operation is
Options:
  1. Associative
  2. Commutative
  3. Distributive
  4. Both Associative and Distributive
12. The purpose of the following Verilog code is?
module clock_divider(clock,reset,clock_out);
input clock;
input reset;
output clock_out;
reg [1:0] register1;
wire [1:0] next_reg;
reg clock_track;
always @ (posedge clock or posedge reset)
begin
if(reset)
begin
register1 <= 0;
clock_track <= ~clock_track;
end
else
register1 <= next_reg;
end
assign next_reg = register1 + 1;
assign clock_out = clock_track;
endmodule
Options:

  1. Divides the clock by 2
  2. Divides the clock by 4
  3. Divides the clock by 3
  4. None of these.

13. What will be the voltage at node G? Assume the initial voltage at every node is 0.75V. And supply voltage Vdd = 1.5V, Vss = 0V, Threshold voltage Vth = 0.4V, and |Vtp| = 0.35V.

Options:

  1. 0.85V
  2. 0V
  3. 1.0V
  4. 0.7V

MediaTek Engineering Basics questions

1. A problem that arises in multitasking when a process is perpetually denied the necessary resources is called ___.
Options:

  1. Starvation
  2. Deadlock
  3. Inversion
  4. Aging
2. When will be the thrashing occurs?
Options:

  1. When too much time is spent waiting to swap the contents between memory and disk.
  2. When the size of the data to be inserted is less than the size of the page in memory.
  3. When the two processor’s mapping table discovers that the program is trying to use an address, that currently does not exist.
  4. When the two processors try to access the same resource.
3. In a priority scheduling algorithm, With what priority is compared when a process arrives at the ready queue?
Options:

  1. init process
  2. parent process
  3. currently running process
  4. all the process
4. How many numbers of processors are required to execute the process in 150 seconds if the process takes 300 seconds to execute a single processor? Given: A processor works independently to carry out 40 percent of its execution since 40 percent is mostly sequential.
Options:

  1. 8
  2. 5
  3. 6
  4. 7

Leave a Reply

Top