FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
PRN221 FE Exam Questions with
Correct Answers
d
Choose the correct statement about key components of the System.Net.* Namespaces
a. HttpServer for consuming HTTP web APIs and RESTful services
b. WebRequest and WebResponse classes for high-level control over client-side TCP or UDP operations
c. All of the others
d. A WebClient facade class for simple download/upload operations via HTTP or FTP
b
To configure a custom number of reconnect attempts before disconnecting or change the reconnect
timing, the withAutomaticReconnect accepts an array of numbers representing the delay in milliseconds
to wait before starting each reconnect attempt. Choose the correct option for making automatically
reconnect.
a. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect(0, 0, 10000) .create();
b. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect([0, 0, 10000]) .build();
c. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect([0], [0], [10000]) .build();
d. None of the others
c
Choose the correct statement related to Networking Definitions
a. Port: unsigned 4-byte integer helps operating system differentiating a network communicating
process
b. IP address includes IPv4 (4-byte) and IPv6 (6-byte)
c. IP address (Internet Protocol): unsigned integer helps to identify a network element(computer,
router, etc)
d. None of the others
d
Which of the following methods of the HttpClient Class can be used to send a POST request to the
specified Uri as an asynchronous operation?
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
a. CreatePostAsync(String, HttpContent)
b. PostRequestAsync(String, HttpContent)
c. PutAsync(String, HttpContent)
d. PostAsync(String, HttpContent)
a
Which of the following classes of the System.Threading.Tasks Namespace provides support for creating
and scheduling Task objects?
a. TaskFactor
b. Task
c. TaskInit
d. None of the others
e. TaskScheduler
c
In the case working ASP.NET SignalR with JavaScript client library, which the following code to create
and start a connection?
a. var connection = new signalR.ConnectionBuilder() .withUrl("/chatHub") .build();
connection.start();
b. var connection = new signalR.HubConnectionBuilder(.withUrl("/chatHub") .create();
connection.start();
c. var connection = new signalR.HubConnectionBuilder().withUrl("/chatHub") .build();
connection.start();
d. var connection = new
signalR.HubBuilder() .withUrl("/chatHub") .build();
connection.start();
c
A hub is a class that serves as a high-level pipeline that handles client-server communication. Create a
SignalR for your application by adding a class named ChatHub that inherits from
Microsoft.AspNetCore.SignalR.Hub
a. public class ChatHub : IHub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
b. public class Hub : ChatHub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
c. public class ChatHub : Hub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}
d. public class ChatHub : IHubContext {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
d
Choose the correct statement related to the HttpClient Class
a. HttpClient was written in response to the growth of TCP-based web APIs and TCP services to provide a
better experience than the WebClient class
b. None of the others
c. HttpClient is a newer API for working with TCP Service and is designed to work well with libraries,
REST-based services, and custom authentication schemes
d. HttpClient provides another layer on top of HttpWebRequest and HttpWeb Response
a
ASP.NET Core SignalR supports two protocols for encoding messages. Each protocol has serialization
configuration options. Please choose the correct protocols.
a. JSON and MessagePack
b. BSON and MessagePack
c. JSON and BSON
d. JSON and XML
a
Which of the following statements related to Worker Service .NET is False?
Statement 1: A worker service is a .NET project built using a template which supplies a few useful
features that turn a regular console application into something more powerful
*Statement 2*: A worker service runs on bottom of the concept of a host, which maintains the lifetime
of the application. The host also makes available some familiar features, such as dependency injection,
logging, and configuration
a. Statement 2
b. Statement 1 and 2
c. Statement 1
d. None of the others
d
Choose the correct option to create hub filters.
a. Create a filter by declaring a class that inherits from Hub<IFilter>, and add the OnConnectedAsync
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
method.
b. Create a filter by declaring a class that inherits from IFilter, and add the InvokeMethodAsync method.
c. Create a filter by declaring a class that inherits from Hub<IHubFilter>, and add the OnConnectedAsync
method.
d. Create a filter by declaring a class that inherits from IHubFilter, and add the InvokeMethodAsync
method.
e. None of the others
a
Which of the following properties of the HttpClient Class can be used to get or set the base address of
Uniform Resource Identifier (URI) of the Internet resource used when sending requests?
a. BaseAddress
b. GetAddress
c. ContentURI
d. BaseURI
d
Which of the following applications that Worker Services will generally be long-running services,
performing some regularly occurring workload?
a. Aggregating data from a data store
b. Reacting to file changes in an object/file store
c. Processing messages/events from a queue, service bus, or event stream
d. All of the others
e. None of the others
b
To enable SignalR in the specific application, call the AddSignalR extension method to configure the IoC
container with services required by SignalR. Choose the following code to add to the ConfigureServices
method (Startup.cs).
a. public void ConfigureServices (IServiceCollection services) {
services.AddSignalR().Start();
}
public void Configure(IApplicationBuilder app, HostingEnvironment env) {
app.UseAuthentication();
app.UseMvc();
app.UseSignalR (builder => { builder.MapHub< ChatHubClass >("/chat").Start(); });
}
b. public void ConfigureServices (IServiceCollection services) {
services.AddSignalR();
}
public void Configure(IApplicationBuilder app, HostingEnvironment env) {
app.UseAuthentication(); app.UseMvc(); app.UseSignalR (builder => { builder.MapHub("/chat"); });
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
PRN221 FE Exam Questions with
Correct Answers
d
Choose the correct statement about key components of the System.Net.* Namespaces
a. HttpServer for consuming HTTP web APIs and RESTful services
b. WebRequest and WebResponse classes for high-level control over client-side TCP or UDP operations
c. All of the others
d. A WebClient facade class for simple download/upload operations via HTTP or FTP
b
To configure a custom number of reconnect attempts before disconnecting or change the reconnect
timing, the withAutomaticReconnect accepts an array of numbers representing the delay in milliseconds
to wait before starting each reconnect attempt. Choose the correct option for making automatically
reconnect.
a. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect(0, 0, 10000) .create();
b. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect([0, 0, 10000]) .build();
c. const connection = new signalR.HubConnectionBuilder() .withUrl("/chathub")
.withAutomaticReconnect([0], [0], [10000]) .build();
d. None of the others
c
Choose the correct statement related to Networking Definitions
a. Port: unsigned 4-byte integer helps operating system differentiating a network communicating
process
b. IP address includes IPv4 (4-byte) and IPv6 (6-byte)
c. IP address (Internet Protocol): unsigned integer helps to identify a network element(computer,
router, etc)
d. None of the others
d
Which of the following methods of the HttpClient Class can be used to send a POST request to the
specified Uri as an asynchronous operation?
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
a. CreatePostAsync(String, HttpContent)
b. PostRequestAsync(String, HttpContent)
c. PutAsync(String, HttpContent)
d. PostAsync(String, HttpContent)
a
Which of the following classes of the System.Threading.Tasks Namespace provides support for creating
and scheduling Task objects?
a. TaskFactor
b. Task
c. TaskInit
d. None of the others
e. TaskScheduler
c
In the case working ASP.NET SignalR with JavaScript client library, which the following code to create
and start a connection?
a. var connection = new signalR.ConnectionBuilder() .withUrl("/chatHub") .build();
connection.start();
b. var connection = new signalR.HubConnectionBuilder(.withUrl("/chatHub") .create();
connection.start();
c. var connection = new signalR.HubConnectionBuilder().withUrl("/chatHub") .build();
connection.start();
d. var connection = new
signalR.HubBuilder() .withUrl("/chatHub") .build();
connection.start();
c
A hub is a class that serves as a high-level pipeline that handles client-server communication. Create a
SignalR for your application by adding a class named ChatHub that inherits from
Microsoft.AspNetCore.SignalR.Hub
a. public class ChatHub : IHub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
b. public class Hub : ChatHub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
c. public class ChatHub : Hub {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}
d. public class ChatHub : IHubContext {
public async Task SendMessage(string user, string message) {
await Clients.All.SendAsync("ReceiveMessage", user, message);
}}
d
Choose the correct statement related to the HttpClient Class
a. HttpClient was written in response to the growth of TCP-based web APIs and TCP services to provide a
better experience than the WebClient class
b. None of the others
c. HttpClient is a newer API for working with TCP Service and is designed to work well with libraries,
REST-based services, and custom authentication schemes
d. HttpClient provides another layer on top of HttpWebRequest and HttpWeb Response
a
ASP.NET Core SignalR supports two protocols for encoding messages. Each protocol has serialization
configuration options. Please choose the correct protocols.
a. JSON and MessagePack
b. BSON and MessagePack
c. JSON and BSON
d. JSON and XML
a
Which of the following statements related to Worker Service .NET is False?
Statement 1: A worker service is a .NET project built using a template which supplies a few useful
features that turn a regular console application into something more powerful
*Statement 2*: A worker service runs on bottom of the concept of a host, which maintains the lifetime
of the application. The host also makes available some familiar features, such as dependency injection,
logging, and configuration
a. Statement 2
b. Statement 1 and 2
c. Statement 1
d. None of the others
d
Choose the correct option to create hub filters.
a. Create a filter by declaring a class that inherits from Hub<IFilter>, and add the OnConnectedAsync
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
,FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~
method.
b. Create a filter by declaring a class that inherits from IFilter, and add the InvokeMethodAsync method.
c. Create a filter by declaring a class that inherits from Hub<IHubFilter>, and add the OnConnectedAsync
method.
d. Create a filter by declaring a class that inherits from IHubFilter, and add the InvokeMethodAsync
method.
e. None of the others
a
Which of the following properties of the HttpClient Class can be used to get or set the base address of
Uniform Resource Identifier (URI) of the Internet resource used when sending requests?
a. BaseAddress
b. GetAddress
c. ContentURI
d. BaseURI
d
Which of the following applications that Worker Services will generally be long-running services,
performing some regularly occurring workload?
a. Aggregating data from a data store
b. Reacting to file changes in an object/file store
c. Processing messages/events from a queue, service bus, or event stream
d. All of the others
e. None of the others
b
To enable SignalR in the specific application, call the AddSignalR extension method to configure the IoC
container with services required by SignalR. Choose the following code to add to the ConfigureServices
method (Startup.cs).
a. public void ConfigureServices (IServiceCollection services) {
services.AddSignalR().Start();
}
public void Configure(IApplicationBuilder app, HostingEnvironment env) {
app.UseAuthentication();
app.UseMvc();
app.UseSignalR (builder => { builder.MapHub< ChatHubClass >("/chat").Start(); });
}
b. public void ConfigureServices (IServiceCollection services) {
services.AddSignalR();
}
public void Configure(IApplicationBuilder app, HostingEnvironment env) {
app.UseAuthentication(); app.UseMvc(); app.UseSignalR (builder => { builder.MapHub("/chat"); });
FE
PRN221
ExamFE
PRN221
Questions
ExamFEQuestions
with
ExamCorrect
Questions
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct
withAnswers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Correct Answers.pdf~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!_(*))))))))))))))))))*@&^#(&^~&*@&*&!~&*@((*~~~~~~~~~~~~~~~~~~~~~