Net Lead Interview Questions

119

Net Lead interview questions shared by candidates

Top Interview Questions

Sort: Relevance|Popular|Date
Nineleaps Technology Solutions
.NET Team Lead was asked...13 August 2018

how to handle fresher s

2 Answers

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. Less

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. Less

Techlens Global

How will you design database table for fast insert.

2 Answers

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. Less

Nagarro

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 Answers

## 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")); Less

I used c# to implement it.

Vivint

How to divide a round two layer cake into 8 pieces in three cuts.

2 Answers

Two across the top of the cake in an "X" and across the side.

Cut into four then cut the top from the bottom.

Techlens Global

What is Model Binding?

2 Answers

Model binding is the technique to strongly bind your view with any specific model which suits your operation. Less

Maps http request to perticular action methods.

EY

Why we use angularjs?

2 Answers

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? Less

Techlens Global

Have you used LINQ to SQL!!

1 Answers

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. Less

Siemens

Do you know design patterns?

1 Answers

Ofcourse yes, explained the categories like creational, structural and behavioural also other fundas from Head First book. Less

HARMAN

What do you keep in mind when you write code.

1 Answers

The interviewer possibly was just looking for the world SOLID principles.

Ness Digital Engineering

Inheritence related

1 Answers

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) Less

Viewing 1 - 10 of 119 interview questions

See Interview Questions for Similar Jobs

net managerlead developersoftware managertechnical leadteam leadnet architectnet developer

Glassdoor has 119 interview questions and reports from Net lead interviews. Prepare for your interview. Get hired. Love your job.