Posts

Showing posts from 2014

Viva - Cifalo

1) EF Code first Reverse Engineering 2) OOP 3) SOLID 4) Patterns specially Repository, Unit Of Work, Facade, Facoty, Builder, Service Locator 5) C# with Async (must) 6) MVC5 7) Refactoring Knowledge 8) Unit Test , Integration Test and Good knowledge on refactoring 9) Bootstrap, jQuery, KnockOut 10) you dont need any advance DB knowledge Jaxara Written : Duration of Test :  Approximately 2 hours. You need to attend a test on general topics like, Programming logic, .Net, ASP.Net, Algorithms, C#, SQL, Design Patterns, Design Methodologies and OOD Principals, etc. Algorithm Binary  Random Recursive  

jQuery

Java Script Debug https://scotch.io/tutorials/debugging-javascript-with-chrome-devtools-breakpoints jquery http://www.c-sharpcorner.com/UploadFile/219d4d/basics-of-jquery-part-2-selectors-in-jquery/ http://www.dotnetfunda.com/interviews/cat/95/jquery http://tutoriz.com/Thread-JQUERY-INTERVIEW-QUESTIONS-AND-ANSWERS-SET-PDF-1-TOP-30 http://www.codeproject.com/Articles/618484/Latest-jQuery-interview-questions-and-answers http://career.guru99.com/top-50-jquery-interview-questions/

Viva - AngularJS

Introduction Angular.js is an open-source Javascript MVC (Model-View-Controller) framework developed by Google. It gives Javascript developers a highly structured approach to developing rich browser-based applications which, leads to very high productivity. https://leanpub.com/recipes-with-angular-js/read http://blog.pourbrain.com/basics-of-angularjs/ http://theprofessionalspoint.blogspot.com/2014/02/basic-angularjs-interview-questions-and.html   http://blog.pourbrain.com/basics-of-angularjs/ http://jharaphula.com/interview-questions-for-angularjs http://softtechhelp.blogspot.com/2013/07/angular-js-basic-terms.html http://toddmotto.com/ultimate-guide-to-learning-angular-js-in-one-day/

Common Design Pattern

http://mohammadnazmul.blogspot.com/2014/02/design-patterns-gof-design-patterns-are.html Behavioral ·          Strategy  ·          State  http://www.dreamincode.net/forums/topic/185616-design-patterns-state/ ·          Template method   Creational Patterns ·          Factory  ·          Abstract Factory   ·          Singleton  Structural Patterns ·           Proxy ·          Decorator  ·           Adapter /Wrapper ·           Facade                                              (sp) pdaf Repository http://www.remondo.net/repository-pattern-example-csharp/ http://www.codeguru.com/csharp/.net/net_asp/mvc/using-the-repository-pattern-with-asp.net-mvc-and-entity-framework.htm Unit of Work Pattern http://csharppulse.blogspot.com/2013/09/learning-mvc-part-6-generic-repository.html http://www.asp.net/mvc/tutorials/getting-started-with-ef-5-using-mvc-4/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application Co

Viva-Entity Framework

Image
1.        What is Entity Framework? Entity Framework is an additional layer between application and database that enables the developers to program against the conceptual application model instead of programming directly against the relational storage schema. 2.        Will there be any issues adding a table without primary keys to a data model? Every entity must have a key, even in the case where the entity maps to a view. When you use the Entity Designer to create or update a model, the classes that are generated inherit from EntityObject, which requires EntityKey. So, we have to have a primary key in the table to add it to the data model. 3.        How do you truncate a table using entity data model? Unfortunately Entity Framework doesn't include anything straight forward to handle this. But we can still call a T-SQL statement using entity framework that will still minimizes the developers work. We can call ExecuteStoreCommand() methond on ObjectContext as shown belo