Wednesday, 19 July 2017

interview question Original

Collection of 200+ intervew questions












Additional Interview Questions(Flexera, Koramangala):
(124) If we have static class to create a single object then why we go for Singlton class?
(125) Can an abstract class be inherited from another abstract class?
(126)  Can an abstract class be inherited from in interface?
(127) How to handle concurrency in EF?
(128) When to use Injectable in angular 2?
(129) Difference between var and dynamic in c#
(130) When to choose factory pattern vs Abstract Factory pattern?
(131) Difference between Finalize( ) and Dispose( ).

Additional Interview Questions(Devor, Bagmane TP, CVRamanNgr):
(132) Introduction about career.
(133) Explain MVC life cycle.
(134) What is Action filter in MVC?
(135) Can be JsonResult fit into ActionResult?
(136) How to write custom action filter?
(137) How to decorate Password & Confirm Password in Data Annotation in MVC?
(138) Difference between .Container & Fluid Container in Bootstrap.
(139) Any question from your side?

Societe Generale

(140) Diff. btwn  Readonly & const
(141) If there are 2 or more consructor then will the read only be updated in all constructors?
(142) Yield in c#
(143) Components in Web API
(144) Difference btwn 'IS' & 'AS' in c#
(145) 'AS'  vs Casting in c#
(146) How to unit test Web API
(147) What mock test tool using for Testing.

 COgnizant-Bagmane

(148) What is extension method?
(149) If there are two buttons in a mvc view e.g. Save and Update,then how to handle the controller.
(150) How to implement Security in WCF?
(151) Difference between basicHttpBinding & wsHttpBinding?
(152) As token can be seen through Fiddler then how to handle it.
(153) What is the use of static constructor?
(154) Can a static variable value be changed?
(155) SingleOrDefault and FirstOrDefault Methods in LINQ to SQL



EPSILON-2nd

(156) Life cycle of angularJS application
(157) Difference between services and factory in angularJS.
(158) What are the built-in directives in angularJS?
(159) MVC life-cycle with worker process level.
(160) Checked, yield, volatile key word's usage.
(161) Write code for extension method.
(162) Write a singleton class (It should be thread  safe).
(163) What are the design patterns used in your project.
(164) Write code for validation in angular JS
(165) noValidation in angularJS.

(166) Validation in MVC at client side.
(167) Which methods are override during custom action in MVC
(168) What is dirty in angularJS


Happiest Minds Technology:

(169) What are the methods available in Web API 2?
(170) What  Design Patterns have you used in your projects?
(171) Types of design patterns? S C B , what is S, what is C & B. vocabulary needed otherwise how will you face the client?
(172) There are series of DIVs, how to make border red? write the jQuery.
(173) Write jQuery to make alternate DIVs blue.
(174) How garbage collector works?

EY- RMZ - near Gopalan OldMdrsRd (TL)

(175) Suppose you have to develop a project that will list employees with CRUD operation, what are the technology you have to use.
(176) What is action filter? what are the action filters available in MVC?
(177) If you have a bunch of checkbox controls in a web page, how to make all the check boxes ticked using jquery?
(178) Cluster index vs non-cluster index.
(179) Stored Proc. vs. Function in MVC.
(180) What is service in angularJS?
(181) Any idea about block-chain?
(182)Explain about bundling and minification in MVC.
(183)Can you debug minified and bundled file in MVC?
(184) Is validation(Data-annotation) works at client side or server side?
(185) Use of unobtrusive in jQuery/MVC.
(186) Data Annotation is at server side or client side?
(187) What are the in-built validator in MVC?
(188) What is grid system in bootstrap?


[INTERVIEWER WAS NEEDING IN MORE DETAILS] WITH STRONG VOCABULARY]

SONICWALL - BELLANDUR (TELEPHONIC)

(189) How AntiForgeryToken works in MVC Cross Sit Scripting?
(190) Can we join two table valued function? How?
(191) How many selectors are there in jQuery?
(192) What is lazy loading in Entity framework?
(193) How to perform security in Web API?
(194) How to handle concurrency in EF?
(194-2)  What is L in SOLID principle?

BrandMuscle- Koaramangala

(195) What are the approaches to connect EF to DB in entity f/w?

Conduent - Telephonic

(196) For unit testing what tools are you using for backend-C# code and for front end - angularjs ?

(197) Are you doing continuous integration in your current project ?


TCS

(198) Chaning in angularJS
(199) How you implememt token based authentication in Web API explain.
(200) What is repository pattern? How is your MVC application to fit the repository in MVC?
(201) Any idea on .Net core? and implementing .net Core?
(202) What is "base" class in C#?

Moody's Analytics

(203) What is continous intergration? How are you doing it? whether using TFS or GITHUB.
(204) Explain about your project.
(205) Are you unit testing all the methods or some methods in .net app?

Microsoft Hyderabad - telephonic
(206) Is test cases without assert possible? if yes, what will be the output?
(207) Write JOIN in LINQ
(208) How to write Left outer Join & Right Outer Join?
(209) Did you use merge clause in SQL server 2012?
(210) What mock test you are using? How to write mock test?
(211) Which Unit Test framework you are using?
(212) Suppose you have a overloading functions:
function f()
           {
                   method m(int i, int j) { }
                   method m(long i, int j) { }
                   method m(long i, long j) { }
           }
if calling m(4,5); which one will be called?

TALENT
ANYWHERE

(213) wsHttpBinding can be used in Message or Transport or both level security?

UDM Global
(224) What is difference between delegate & event?
(225) Building automation of your project.
(226) Continuous integration.
(227) What are the conditions for Liskov Substitution Principle to be satisfied?

OneIdentity (MG road)

(228) What will the out put of the below code:

public class a
    {
        public virtual void m()
        {
            Console.Write("A");
        }
    }
    public class b:a
    {
        public override void m()
        {
            Console.Write("B");
        }
    }
    public class c : b
    {
        public new void m()
        {
            Console.Write("C");
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            
            a aNewB = new b();
            aNewB.m();

            a aNewC = new c();
            aNewC.m();
            ////////////////////////////
            Console.ReadLine();
        }
    }

CenturyLink [Bellandur- Salarpuria TouchStone]:

(229) What is Factrory Pattern? What is Factory Method Pattern?
(230) What is SOLID principle? How it improved from S to D?
(231) If WCF REST then why Web API?
(232) What is Directives in Angular?
(232-a) Services vs. Provider in Angular.
(232-b) What is application pool in IIS?

EY - Doddanekundi

(233) What is Factrory Pattern? What is Factory Method Pattern? What is Abstract Factory Pattern?
(234) What is User management in ASP.net MVC? Explain.

Legato - HealthCare ( Manyata )

(235) Design patterns you know. Explain Factory Design Pattern.
(236) SOLID principle.
(237) Deleting duplicate records from Sql server tables.
(238) What is application pool in IIS? How to set permission in application pool?
(239) If there are many GET verbs in a controller then how to handle it. Attribute[] what is that?

Relievance Lab Sarjapur road

(240) What is garbage collection?
(241) What is Liscov Substitution Principle?

Schnider Telephonic

(242) What is @Injectable in Angular?
(243) What is circular reference in C#?
(244) What is interpolation in Angular?
(245) Header in Angular?
(246) Observable in Angular?
(247) What is RxJs in Angular?
(248) How to link two table in EF?
(249) How to host angular application?
(250) What is Http Interceptor in Angular?
(250-a) Event-emitter in angular?

IBM angular interview
(251) How do you handle error in angular?
(252) What is @ViewChild & @ViewParent in angular?
(253) How to send data from component to other component?

KPMG angular interview
(254) How do you handle error in angular?
(255) How to pass data from parent component to child in angular? write code
(256) How to pass data from child component to parent in angular? write code
(257) How to send data from component to other component?
(258) Explain the life-cycle hook of angular
(259) Difference between Observable & Promise
(260) Write code for a simple Component.
(261) What is provider in Module?
(262) What is routing in Angular?
(263) What is Lazy Loading in Angular?
(264) How to fetch data from Web API?
(265) What is AuthGuard in Angular?
(265-a) What is your project structure of angular in ur project?
(265-b) How to pass parameters through httpClient to web API?

Conduent angular interview
(266) How router works in angular?
(267) How to pass data from parent component to child in angular?
(268) How to pass data from child component to parent in angular?

Genesys interview

(267) What is new in MVC 5 over MVC 4?
(268) What is CORS? How to handle it?
(269) How to pass data from parent component to child and vice versa in angular?
(270) How to handle multiple events in jquery? One click many events.
(271) What are the filters in MVC 5?
(272) How to update the null values of a column "DeptName" of "Employee" table using "Department" table.

write the update statement.

(273) Async...await.. then how to notify...publisher ..etc.