Preguntas de entrevista de Net lead
113
Preguntas de entrevista para Net Lead compartidas por los candidatosPrincipales preguntas de entrevista

how to handle fresher s
2 respuestas↳
Show them the growth path. Allow them to solve the problem themselves. Own project responsibility and don't blame fresher in front of your seniors for mistakes which you have overlooked. Menos
↳
Show them the growth path. Allow them to solve the problem themselves. Own project responsibility and don't blame fresher in front of your seniors for mistakes which you have overlooked. Menos

How to divide a round two layer cake into 8 pieces in three cuts.
2 respuestas↳
Two across the top of the cake in an "X" and across the side.
↳
Cut into four then cut the top from the bottom.

There were 2 Programs questions 1. Converting Java variable to cpp and vice versa e.g. if this_is_a_variable is CPP varaible and need to convert thisIsAVariable is java variable and if java variable is provided then need to convert into CPP (using any programming language)
2 respuestas↳
## JavaScript Solution /** * Convert Java Variable into CPP Variable * Example: * "this_is_a_variable" ------> "thisIsAVariable" */ function javaVariableToCPP(str){ let inputArr = str.split('_'); let arr = []; for(let char of inputArr){ arr.push(char.charAt(0).toUpperCase() + char.slice(1)); } return arr.join(''); } console.log(javaVariableToCPP("this_is_a_variable")); /** * Convert CPP Variable into Java Variable * Example: * "thisIsAVariable" ------> "this_is_a_variable" */ function cppVariableToJava(str){ let arr = []; for(let char of str){ if(char === char.toUpperCase()){ char = '_'+ char.charAt(0).toLowerCase() + char.slice(1); } arr.push(char); } return arr.join('') } console.log(cppVariableToJava("thisIsAVariable")); Menos
↳
I used c# to implement it.

How will you design database table for fast insert.
2 respuestas↳
It may possible to have identity column in it.
↳
i said don't keep any keys, so insert will be fast. Interviewer didn't seem interested. Menos

What is Model Binding?
2 respuestas↳
Model binding is the technique to strongly bind your view with any specific model which suits your operation. Menos
↳
Maps http request to perticular action methods.

Why we use angularjs?
2 respuestas↳
Angular js is used to manage DOM of the html generated.
↳
Could you please share your email id. ? Would it be possible to share list of interview questions? Menos

Inheritence related
1 respuestas↳
Extension of a base functionality or specialization of a type. He had his own ideea of how this works and it degenerated to the "why do we need an interface" question from him with examples that we actually don't need an interface (keep in mind he has 10 years of exp) Menos

What do you keep in mind when you write code.
1 respuestas↳
The interviewer possibly was just looking for the world SOLID principles.

Do you know design patterns?
1 respuestas↳
Ofcourse yes, explained the categories like creational, structural and behavioural also other fundas from Head First book. Menos

Have you used LINQ to SQL!!
1 respuestas↳
I said LINQ to SQL is deprecated and we use LINQ to Entity instead. Both are very much same except LINQ to Entity has not support from Microsoft and better optimized. Perhaps interviewer was using LINQ to SQL and didn't like criticism of it. Menos