Showing posts with label BCA. Show all posts
Showing posts with label BCA. Show all posts

Tuesday, March 29, 2022

Emerging Trends and Applications in IT(ET & IT)

 Emerging Trends and Applications in IT(ET & IT)

Download Syllabus

Complete Assignment Questions

Download ETIT MCQ Practice Questions and Answers

Unit 1

Unit 2

Unit 3

Unit 4

Unit 4 Excel Format

ETIT QUIZ 2022

Click here to start Quiz 17-Mar-22(3)
Click here to start Quiz 17-Mar-22(2)
Click here to start Quiz 17-Mar-22(1)
Click here to start Quiz 16-Mar-22
Click here to start Quiz 15-Mar-22
Click here to start Quiz 14-Mar-22
Click here to start Quiz 9-Mar-22
Click here to start Quiz 8-Mar-22
Click here to start Quiz 7-Mar-22
Click here to start Quiz 3-Mar-22
Click here to start Quiz 2-Mar-22
Click here to start Quiz 1-Mar-22
Click here to start Quiz 28-Feb-22
Click here to start Quiz 23-Feb-22
Click here to start Quiz 22-Feb-22
Click here to start Quiz 21-Feb-22
Click here to start Quiz 19-Feb-22
Click here to start Quiz 18-Feb-22

Click on Read more for more content on Emerging Trends and Applications in IT(ET & IT)

Wednesday, March 02, 2022

.NET Programming Quiz 2022

Click here to start Quiz 18-Mar-22
Click here to start Quiz 17-Mar-22
Click here to start Quiz 15-Mar-22
Click here to start Quiz 14-Mar-22
Click here to start Quiz 12-Mar-22
Click here to start Quiz 11-Mar-22
Click here to start Quiz 10-Mar-22
Click here to start Quiz 08-Mar-22
Click here to start Quiz 04-Mar-22
Click here to start Quiz 03-Mar-22
Click here to start Quiz 28-Feb-22
Click here to start Quiz 26-Feb-22
Click here to start Quiz 25-Feb-22
Click here to start Quiz 24-Feb-22
Click here to start Quiz 22-Feb-22
Click here to start Quiz 21-Feb-22
Click here to start Quiz 19-Feb-22

Tuesday, February 15, 2022

Introduction to ASP.NET Core (Questions and Answers)


1. Describe the ASP.NET Core.

ASP.NET Core is an open-source, cross-platform, cloud based and high performance platform that allows you to build modern applications. With ASP.NET Core we can build
  • web applications,
  • IoT (Internet of things) apps,
  • services
  • mobile apps.
  • we can do our development on Linux, Windows and MacOS.
  • deploy our code to cloud or on-premises.




Introduction to MVC (Model-View-Controller) (Questions and Answers)

MVC (Model-View-Controller) (Interview Questions)

  • The Model-View-Controller (MVC) architectural pattern separates an app into three main components: Model, View, and Controller. The MVC pattern helps you create apps that are more testable and easier to update than traditional monolithic apps.
  • It supports separation of concern as Model describes data, View represents UI and Controller manages the presentation logic which handles user request.
  • Using the MVC pattern for websites, requests are routed to a Controller that is responsible for working with the Model to perform actions and/or retrieve data. The Controller chooses the View to display and provides it with the Model. The View renders the final page, based on the data in the Model.