98-361 試験問題を無料オンラインアクセス
| 試験コード: | 98-361 |
| 試験名称: | Microsoft MTA Software Development Fundamentals |
| 認定資格: | Microsoft |
| 無料問題数: | 389 |
| 更新日: | 2026-08-02 |
This question requires that you evaluate the underlined text to determine if it is correct.
A table whose attributes depend only on the primary key must be at least second normal form.
Select the correct answer if the underlined text does not make the statement correct.
Select "No change is needed'' if the underlined text makes the statement correct.
Two classes named Circle and Square inherit from the Shape class.
Circle and Square both inherit Area from the Shape class, but each computes Area differently.
Which term is used to describe this object-oriented concept?
You need to display specific messages to users when their browser is not running JavaScript.
Which of the following code segment should you use?
The application you are developing needs to write data to a flat file that include items such as a five-digit integer key, followed by a 20-character customer name, followed by two date and time fields.
Your solution should be as fast as possible and should create smallest size data file.
Which of the following classes should you use?
You are developing an application that uses a double dimensional array.
You use the following code to declare the array:
int[,] numbers = new int[,]
{
{ 11, 7, 50, 45, 27 },
{ 18, 35, 47, 24, 12 },
{ 89, 67, 84, 34, 24 },
{ 67, 32, 79, 65, 10 }
};
Next, you refer to an array element by using the expression numbers[2, 3].
What will be the return value of this expression?