Skip to main content

Posts

Showing posts with the label MVC

Is AngularJs MVVM or MVC? | MVVM vs MVC

Is AngularJs MVVM or MVC? AngularJs is MVVM not MVC and the MVVM stand for Model-View-View Model. AngularJs is a framework for writing Single Page applications (SPA). It is just one of many JavaScript frameworks for developing SPA, but it is widely used.   What are the differences between MVC and MVVM? MVC - 1.        MVC is a design pattern 2.        MVC work like disconnected mode 3.        MVC supported only one-way binding 4.        In MVC, not update UI automatically when your data model update. Need event to call data model and update it 5.        In MVC, model parts directly bind with the view page MVVM – 1.        MVVM is a design pattern 2.        MVVM supported two ways binding 3.        The UI is upda...

.NET Core MVC Interview Questions and Answers

» OOPs Interview Questions Object Oriented Programming (OOP) is a technique to think a real-world in terms of objects. This is essentially a design philosophy that uses a different set of programming languages such as C#... Posted In .NET » .Net Constructor Interview Questions A class constructor is a special member function of a class that is executed whenever we create new objects of that class. When a class or struct is created, its constructor is called. A constructor has exactly the same name as that of class and it does not have any return type… Posted In .NET » .NET Delegates Interview Questions Delegates are used to define callback methods and implement event handling, and they are declared using the "delegate" keyword. A delegate in C# is similar to function pointers of C++, but C# delegates are type safe… Posted In .NET » ASP.Net C# Interview Questions C# was developed by Microsoft and is used in essentially all of their products. It is mainly used for ...

15 Best Sails.js Interview Questions and Answers

What Is Sails.js? Sails.js is a Real-time MVC frameworks  for Node.js . Sails.js is a Node.js framework that allows you to build enterprise-ready, MVC (model, view, and controller) application on-the-go. Sails.js has built-in features such as an API creator, and its socket integration in every route and database ORM makes. Sails.js is very useful and helps speed up development. What are the features of Sails.js? Sails.js has lots of features which will help you to build custom, enterprise-ready applications. Some of them are as follows - 1.       Auto generated API 2.       Database ORM 3.       Inbuilt task runner 4.       Security code 5.       Built-in web sockets in routes. Sails.js is one of the best MVC frameworks and can help you to rapidly develop web applications. For those who don’t want to reinvent the wheel ...

How knockoutJs different from MVC?

1.        KnockoutJs is a MVVM pattern. 2.        MVC is a design pattern. 3.        Knockoutjs work like connected mode. 4.        MVC work like disconnected mode. 5.        Knockoutjs supported two types of binding a.        One-way binding b.        Two-way binding 6.        MVC supported only one-way binding. 7.        In Knockoutjs, UI part automatically update when your data model update. 8.        In MVC, not update UI automatically when your data model update. Need event to call data model and update it. 9.        In MVC, model part directly binds with the view page. 10.    In KnockoutJs, model part is not directly bind ...

ASP.Net, C#, MVC and OOPs Concepts Tutorial and Sample Application!

Basic OOPs Concepts Delegates Events Generics Indexers Out keyword Ref keyword Property Struct Arrays Collection of Classes Class Library Virtual | Override | new Keyword Objects|Classes Abstraction Encapsulation Inheritance ASP.Net, C#, MVC Concepts Difference Between MVC 3, MVC 4, MVC 5 and MVC 6 Custom Roles Base Authorization in ASP.NET MVC Redirecting unauthorized controller in ASP NET MVC Windows Authentication in MVC 4 with IIS Express 13 New Key Features of MVC 6 - [vNext Architecture] The ASP.Net MVC Process Request Life Cycle? Import export excel file in MVC 5 How to get values from form collection in ASP.net MVC 4? Export Grid-view Data to Excel in ASP.Net ASP.NET MVC 4.0 Features Get base URL of an ASP.NET MVC Application Web grid in MVC 4 razor ...