Envié una solicitud electrónica. El proceso duró 1 día. Acudí a una entrevista en VVDN Technologies (Chennai) en sept 2014
Entrevista
Best Interview process ever i have attended. Interview Process includes Two rounds
1) Written Test( Subjective type- Fill in the Blanks)
2) Technical Interview
WRITTEN TEST
Totally 70 Questions. 20 Aptitude, 30 Electronics , 20 C questions
Aptitude questions are not difficult rather Basic questions only. Main Topics are Boats&streams,Ages, Number Series and Probability
Electronics Questions were quite Difficult. U can clear this section only if you have strong Knowledge in Basic Electronics. Questions were From Digital Electronics, Circuit Theory
C questions were not much Difficult. Questions Were mainly from Pointers, arrays, strings.
TECHNICAL INTERVIEW
They wont ask any irrelavent Questions. Deduction of Gates from Universal gates, Basics from Your area of Interest, Basic Electronics such as Op-Amps, Diodes, Transistors. Some Questions from Microprocessors and Microcontrollers. They will ask the questions from the written test for which you Haven't answered.
Preguntas de entrevista [1]
Pregunta 1
Write a C program to print a statement without using semicolon.
Envié una solicitud electrónica. Acudí a una entrevista en VVDN Technologies
Entrevista
At first there was a writen test consist of 20 basic electronics 30 C questions and 10 embedded related question.Test was some what difficult.Then went to the interview panel contain three interviewers.They asked mainly relate to our writen exam.They cross examine our writen exam.Then analyse it and asked about the question which were not attended.Then give time to solve the unanswerd or wrongly marked questions.
Test questions
from basic electronics,
- voltage divided rule 3 qns
- Nortan equalent
- 8:1 mux related
- Electronic circuit with diode,zener diode,LED,transistors,capacitors,counter,Logic gate
- 20 bits can address how much kilobytes
- adrrs rage of 8085 for the given circute with A12-A15
from C program
- pointers
- structures
- array
- typedef union
- ++i and i++
- pointer with array many qns
- int const *p and int *const p(something like this)
- function with in fuction
from embedded,
- diff b/w embd os & gen purps os
- what is malloc and alloc
- architecture based on instruction set
- total number of addrs space for 8085(some thing like that)
Preguntas de entrevista [5]
Pregunta 1
Q:What is the condition required to get the output "I Love C Language" from the given code?
#include<stdio.h>
int main()
{
if(condition)
{
printf("I Love");
}
else
{
printf("C Language");
}
return 0;
}