PrepAway - Latest Free Exam Questions & Answers

Category: 98-361

Exam 98-361: Software Development Fundamentals

What option should you use?

You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You have been asked to create a new program for ABC.com. Prior to creating the new program,
you plan to create an algorithm to fully comprehend how the processes of the program must run.
The algorithm will list the required actions for completing a process in the appropriate sequence.
You are informed that your method for creating the algorithm should be as simple, and clear as
possible.
What option should you use?

What action should you take?

You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You have been tasked with creating a new program for ABC.com using C#. The new program will
iterate throughout an assortment of lists and arrays. Every element in this assortment must be
processed just one time.
You are then informed that reading and debugging your code should not be difficult.
What action should you take?

What is the option you should take?

You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You have been instructed to create a new program for ABC.com. The program should be able to
affect integer values, which may be positive or negative and be greater than twelve characters.
You have to make sure that you are able to store this type of variable.
What is the option you should take?

What line of code should be inserted?

You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You have been instructed to create a new application that should include a recursive method that
computes the factorial of a number.
You have written the following code for the method:
01: public static int Factorial(int n)
02: {
03: if (n == 0)
04: {
05: return 1;
06: }
07: else
08: {

09:
10: }
11: }
You have to insert suitable code at line 09 to make sure that the proper outcome is reached.
What line of code should be inserted?


Page 1 of 912345...Last »