Software Development Fundamentals 98-364 Practice Questions (solved)

About This Presentation
Title:

Software Development Fundamentals 98-364 Practice Questions (solved)

Description:

Enjoy your success in Microsoft Certification Exams with our Software Development Fundamentals Customization and Configuration Exam Dumps!!! 98-364 Dumps with Questions and their Answers for Software Development Fundamentals Customization and Configuration Practice Test software is a success leading way towards your Microsoft 98-364 Exam. All the 98-364 solved Questions are tested and approved by professional experts to assure 100% success in Software Development Fundamentals Customization and Configuration exam. Visit us for more information on – PowerPoint PPT presentation

Number of Views:2

less

Transcript and Presenter's Notes

Title: Software Development Fundamentals 98-364 Practice Questions (solved)


1
98-361
Software Development Fundamentals Exam 98-361
Demo Edition
2011 - 2012 Test Killer, LTD All Rights Reserved
http//www.troytec.com
2
98-361
  • QUESTION 1
  • You need to gain a better understanding of the
    solution before writing the program. You decide
    to develop an algorithm that lists all necessary
    steps to perform an operation in the correct
    order. Any technique that you use should minimize
    complexity and ambiguity. Which of the following
    techniques should you use?
  • flowchart
  • decision table
  • C program
  • A paragraph in English
  • Answer A
  • QUESTION 2
  • Which of the following languages is not
    considered a high-level programming language?
  • C
  • Visual Basic

http//www.troytec.com
3
98-361
  • You are developing a C program. You write the
    following code int x 10 int y x int x
    y
  • What will be the variable z after all the above
    statements are executed?
  • 10
  • 11
  • 12
  • 13
  • Answer B
  • QUESTION 5
  • You are writing a method named PrintReport that
    doesn't return a value to the calling code.
    Which keyword should you use in your method
    declaration to indicate this fact?
  • void
  • private

http//www.troytec.com
4
98-361
  • ensure that your code is easy to read and debug.
    Which of the following C statements provide the
    best solution for this requirement?
  • while
  • for
  • foreach
  • do-while
  • Answer C
  • QUESTION 8
  • You are developing a C program that needs to
    perform 5 iterations. You write the following
    code
  • 01 int count 0
  • 02 while (count lt 5)
  • 03
  • 04 Console.WriteLine("The value of count 0",
    count) 05 count
  • 06

http//www.troytec.com
5
98-361
  • Answer B
  • QUESTION 10
  • You are writing a C program that needs to
    manipulate very large integer values that may
    exceed 12 digits. The values can be positive or
    negative. Which data type should you use to
    store a variable like this?
  • int
  • float
  • double
  • long
  • Answer D
  • QUESTION 11
  • You have written a C method that opens a
    database connection by using the SqlConnect
    object. The method retrieves some information
    from the database and then closes the
    connection. You need to make sure that your code
    fails gracefully when there is a database error.
    To handle this situation, you wrap the database
    code in a try-catch-finally block. You use two
    catch blocksone to catch the exceptions of type
    SqlException and the second to catch the
    exception of type Exception. Which of the
    following places should be the best choice for
    closing the SqlConnection object?

http//www.troytec.com
6
98-361
  • catch(DivideByZeroException dbze)
  • //exception handling code
  • catch(NotFiniteNumberException nfne)
  • //exception handling code
  • catch(ArithmeticException ae)
  • //exception handling code
  • catch(OverflowException oe)
  • //exception handling code
  • To remove the compilation error, which of the
    following ways should you suggest to rearrange
    the code?

http//www.troytec.com
7
98-361
  • //exception handling code
  • catch(OverflowException oe)
  • //exception handling code
  • try
  • bool success ApplyPicardoRotation(100, 0)
  • // additional code lines here
  • catch(DivideByZeroException dbze)
  • //exception handling code
  • catch(NotFiniteNumberException nfne)
  • //exception handling code

http//www.troytec.com
8
98-361
  • //exception handling code
  • Answer C
  • QUESTION 13
  • You are developing a C program. You write a
    recursive method to calculate the factorial of a
    number. Which of the following code segment
    should you use to generate correct results?
  • public static int Factorial(int n)
  • if (n 0)
  • return 1
  • else

http//www.troytec.com
9
98-361
  • return n Factorial(n - 1)
  • Answer A
  • QUESTION 14
  • You are developing a C program. You write the
    following code 01 int count 0
  • 02 while (count lt 5)
  • 03
  • 04 if (count 3)
  • 05 break
  • 06 count
  • 07
  • How many times will the control enter the while
    loop?
  • 5

http//www.troytec.com
10
98-361
  • Answer B
  • QUESTION 16
  • You are writing a C program and need to select
    an appropriate repetition structure for your
    requirement. You need to make sure that the test
    for the termination condition is performed at
    the bottom of the loop rather than at the top.
    Which repletion structure should you use?
  • The while statement
  • The for statement
  • The foreach statement
  • The do-while statement
  • Answer D
  • QUESTION 17
  • You are writing a C program. You write the
    following method public static void
    TestSwitch(int op1, int op2, char opr)

http//www.troytec.com
11
98-361
  • After each case, add the following code line
  • break
  • After each case, add the following code line
  • continue
  • After each case, add the following code line
  • goto default
  • After each case, add the following code line
  • return
  • Answer A
  • QUESTION 18
  • You are developing an algorithm for a retail Web
    site. You need to calculate discounts on certain
    items based on the quantity purchased. You
    develop the following decision table to
    calculate the discount
  • If a customer buys 50 units of an item, what
    discount will be applicable to the purchase?
  • 5 percent
  • 10 percent
  • 15 percent
  • 20 percent
  • Answer C
  • QUESTION 19
  • You are developing an algorithm before you write
    the C program. You need to perform some
    calculations on a number. You develop the
    following flowchart for the calculation

http//www.troytec.com
12
98-361
If the input value of n is 5, what is the output
value of the variable fact according to this
flowchart? A. 720
http//www.troytec.com
13
98-361
  • B. 120
  • 24
  • 6
  • Answer B
  • QUESTION 20
  • You are writing a C program that needs to
    iterate a fixed number of times. You need to
    make sure that your code is easy to understand
    and maintain even when the loop body contains
    complex code. Which of the following C
    statements provide the best solution for this
    requirement?
  • while
  • for
  • for each
  • do-while
  • Answer B

http//www.troytec.com
Write a Comment
User Comments (0)