Skip to Content
MCSD Certification Toolkit (Exam 70-483): Programming in C#
book

MCSD Certification Toolkit (Exam 70-483): Programming in C#

by Tiberiu Covaci, Rod Stephens, Vincent Varallo, Gerry O'Brien
May 2013
Intermediate to advanced
648 pages
15h 39m
English
Wrox
Content preview from MCSD Certification Toolkit (Exam 70-483): Programming in C#

Appendix

Answers to Sample Test Questions

Chapter 1: Introducing the Programming in C# Certification

Chapter 1 has no chapter test questions.

Chapter 2: Basic Program Structure

1. You want to declare an integer variable called myVar and assign it the value 0. How can you accomplish this?
b. myVar = 0;
2. You need to make a logical comparison where two values must return true in order for your code to execute the correct statement. Which logical operator enables you to achieve this?
d. &&
3. What kind of result is returned in the condition portion of an if statement?
a. Boolean
4. What are the keywords supported in an if statement?
b. if, else, else if
5. In the following code sample, will the second if structure be evaluated?
bool condition = true;

if(condition)
   if(5 < 10)
       Console.WriteLine("5 is less than 10);
a. Yes
6. If you want to iterate over the values in an array of integers called arrNumbers to perform an action on them, which loop statement enables you to do this?
a. foreach (int number in arrNumbers){}
7. What is the purpose of break; in a switch statement?
b. It causes the code to exit the switch statement.
8. What are the four basic repetition structures in C#?
c. for, foreach, while, do-while
9. How many times will this loop execute?
int value = 0;
do
{
   Console.WriteLine (value); 
} while value > 10;
b. 1 time

Chapter 3: Working with the Type System

1. What is the maximum value you can store in an int data type?
d. 4,294,967,296 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Exam Ref 70-483: Programming in C#

Exam Ref 70-483: Programming in C#

Wouter de Kort
Programming in C#: Exam 70-483 (MCSD) Guide

Programming in C#: Exam 70-483 (MCSD) Guide

Simaranjit Singh Bhalla, SrinivasMadhav Gorthi

Publisher Resources

ISBN: 9781118729502Purchase book