100% SOLVED| GRADED A+
Which of the following statements related to the limitations of ASP.NET is True?
a. ASP.NET Web Form suffered from many issues, especially when building larger applications
b. Auto-generated HTML does not provide full control to the developers
c. All of the others
d. ASP.NET lack of testability, a complex stateful model, and limited influence over the
generated HTML led developers to evaluate other options C
Which of the following is one of the new features of Entity Framework Core?
a. On mobile devices, EF Core supports only access to the local database such as SQL Server
Database
b. Entity Framework Core runs not only on Windows, Linux, and macOS but also on mobile
devices running Windows 10, iOS, and Android
c. None of the others
d. Entity Framework Core have slowly execution speeds and especially when reading data
exceed 1.000 records B
Which of the following provides temporary storage for a stream of bytes that may be
committed to storage at a later time?
a. BinaryReader
b. BufferedReader
c. BufferedStream
d. FileReader C
Which of the following statements related to Entity Framework Core (EF Core) is True?
a. EF Core allows interaction with data from relational databases using a database model that
maps directly to the business objects in the application
,b. None of the others
c. Entity Framework Core supports only database provider to access to MS SQL Server
d. EF Core is a lightweight, extensible, open-source, and cross-platform version of the popular
Entity Framework data access technology D
Which of the following is one of the features of ASP.NET Core?
a. Good community base
b. A system that is set to work on cloud
c. All of the others
d. Streamlined Web development C
Which of the following statements related to Object-Relational Mapper is True?
a. To make the handling of relational databases more natural in object-oriented systems, the
software industry has been relying on object-relational mappers
b. In the database world, relational databases are prevalent and the programming world is all
about objects
c. Working with objects as instances of classes in memory is at the core of object-oriented
programming (OOP)
d. All of the others D
Which event should be used to detect whenever the text in a TextBox or RichTextBox changes?
a. KeyUp
b. Click
c. KeyDown
d. TextChanged D
Which of the following packages used to connect to MS SQL Server Database by Entity
Framework Core?
a. Oracle.ManagedDataAccess.Core
, b. Microsoft.EntityFrameworkCore.SqlServer
c. Microsoft.EntityFrameworkCore.Sqlite
d. MySQL.Data.EntityFrameworkCore B
Which of the following statements related to Object-Relational Mapper is True?
a. To make the handling of relational databases more natural in object-oriented systems, the
software industry has been relying on object-relational mappers
b. In the database world, relational databases are prevalent and the programming world is all
about objects
c. Working with objects as instances of classes in memory is at the core of object-oriented
programming (OOP)
d. All of the others
Which of the following consisted of a REST request generally?
a. HTTP verb: This denotes what kind of operation the requests want to perform on the server
b. RequestHeader: This element of the REST request allows the client to get more information
about the request object
c. URLAction: The virtual path to the resource that the REST request wants to operate on
d. None of the others
Which of the following statements correctly describes the "FileInfo.CreateText ()" method?
a. Creates a StreamWriter that writes a new text file
b. Creates a StreamWriter that writes a new binary file
c. Creates a StreamWriter that appends text to the file
d. Return a StreamReader to open and read file from the stream A
Choose the correct statement related to the File in .NET?
a. All of the others