You are on page 1of 21

Feedback

Question Library Number: 6891


Question:
Which method of the SortedList collection would you use to retrieve the value
stored at a specific key?
Incorrect Answers Selected: GetValue()
Correct Answer: GetByIndex()
Source: page 228
Marks Awarded: 0/1

Question Library Number: 7220


Question:
What is the concept called that uses a method in more than one way?
Incorrect Answers Selected: Method overriding
Correct Answer: Method overloading
Source: page 108
Marks Awarded: 0/1

Question Library Number: 6822


Question:
An instance constructor initializes the class.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 94
Marks Awarded: 0/1

Question Library Number: 7286


Question:
What will the output of the following code be?
Incorrect Answers Selected: 12 13
Correct Answer: Compilation Error
Source: Refer to study guide
Marks Awarded: 0/1

Question Library Number: 7033


Question:
Which one of the following is true about a delegate that references multiple
methods?
Incorrect Answers Selected: Delegates assigned may have other return
types
Correct Answer: It must have a return type of void and cannot have any out
parameters.
Source: page 154
Marks Awarded: 0/1

Question Library Number: 6766


Question:
A private constructor acts similar to a sealed class.
Incorrect Answers Selected: False
Correct Answer: True
Source: page 87
Marks Awarded: 0/1

Question Library Number: 6217

Question:
Inheritance

Incorrect answer selected: Allows inherited behaviors inherited from a


parent class to be overridden in the derived class.
Correct answer: Allows a class to be specialized.

Question:
Polymorphism

Incorrect answer selected: All attributes and behaviors of an object should


be grouped together in one data type or class.
Correct answer: Allows inherited behaviors inherited from a parent class to
be overridden in the derived class.

Source: C# Unit 1 - Page 21 - 23


Marks Awarded: 2/4

Question Library Number: 7211


Question:
Which three of the following are common Form methods?
Incorrect Answers Selected: Display
Correct Answer: Focus
Source: page 168

Marks Awarded: 2/3

Question Library Number: 6146


Question:
Enums allow a set of various different constants to be created and
referenced.
Incorrect Answers Selected: True
Correct Answer: False
Source: C# unit 1 - Page 46
Marks Awarded: 0/1

Question Library Number: 6829


Question:
When overloading indexers, several declarations for this[] can be included,
each with a set of different parameters.
Incorrect Answers Selected: False
Correct Answer: True
Source: page 119
Marks Awarded: 0/1

Question Library Number: 6819


Question:
Static methods may access all static members and all instance methods
within the class.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 89

Marks Awarded: 0/1

Question Library Number: 6215


Question:
Which pre-processor directive forces the compiler to throw a compilation error
which will prevent the application from being compiled?
Incorrect Answers Selected: #undef
Correct Answer: #error
Source: C# unit 1 - Page 67
Marks Awarded: 0/1

Question Library Number: 6216


Question:
Which method of the Math class is used to return the largest whole number
less than or equal to the specified number?
Incorrect Answers Selected: Max(value1, value2)
Correct Answer: Floor(value)
Source: C# unit 1 - Page 72 - 73
Marks Awarded: 0/1

Question Library Number: 7387


Question:
When using the FieldCount property on any DataAdapter, it will return the
amount of rows returned from your SQL statement.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 75

Marks Awarded: 0/1

Question Library Number: 6661


Question:
Instance methods may access all members which belong to the instance,
except the members which are static.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 82.
Marks Awarded: 0/1

Question Library Number: 7218


Question:
An interface cannot obtain fields.
Incorrect Answers Selected: False
Correct Answer: True
Source: page 135 - 136
Marks Awarded: 0/1

Question Library Number: 7016


Question:
A panel control is not able to display a caption.
Incorrect Answers Selected: False
Correct Answer: True
Source: page 173 - 174
Marks Awarded: 0/1

Question Library Number: 6777


Question:
Structs can be inherited as long as they are declared as public and virtual.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 128 - 129
Marks Awarded: 0/1

Question Library Number: 7281


Question:
How many errors are the following code?
Incorrect Answers Selected: 3
Correct Answer: 5
Source: Refer to study guide
Marks Awarded: 0/1

Question Library Number: 7702


Question:
Which of the following are not valid XmlNodeTypes?
Incorrect Answers Selected: DocumentFragment, Notation
Correct Answer: Type, PreservedWhitespace
Source: page 229 - 230
Marks Awarded: 1/3

Question Library Number: 7583


Question:

With regards to SOAP, HTTP acts as a transmission channel, using SOAP to


send a method call within a HTML document.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 216
Marks Awarded: 0/1

Question Library Number: 7719

Question:
XmlNode

Incorrect answer selected: Forward only, read-only access


Correct answer: Access individual items in an XML file as a whole.

Question:
XmlDocument

Incorrect answer selected: Forward only, read-only access


Correct answer: Represents an entire XML document

Question:
XPath

Incorrect answer selected: Forward only, read-only access


Correct answer: Language for addressing parts of an XML document.

Source: from page 223


Marks Awarded: 1/4

Question Library Number: 7598


Question:
XPath can be thought of as a non-query language similar to SQL.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 235
Marks Awarded: 0/1

Question Library Number: 7597


Question:
The XmlDocument class does not contain any events because it is used to
represent an entire XML document.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 231
Marks Awarded: 0/1

Question Library Number: 7640


Question:
UDDI is a directory for storing information about Web services.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 220

Marks Awarded: 0/1

Question Library Number: 7637


Question:
Select the valid XmlReader methods
Incorrect Answers Selected: GetName(), IsEmptyElement()
Correct Answer: GetAttribute(), Skip()
Source: page 225
Marks Awarded: 1/3

Question Library Number: 7575


Question:
SOAP stands for Simple Object Accessibility Protocol.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 214
Marks Awarded: 0/1

Question Library Number: 7633


Question:
Which of the following are valid XPath filtering functions?
Incorrect Answers Selected: contain()
Correct Answer: not()
Source: page 237 - 238
Marks Awarded: 2/3

Question Library Number: 7709


Question:
Which of the following are not valid XPath functions?
Incorrect Answers Selected: position(), substring()
Correct Answer: preserve-whitespace(), read()
Source: page 237 - 238
Marks Awarded: 1/3

Question Library Number: 7610


Question:
Which of the following matches the following term? MBV
Incorrect Answers Selected: MarshalByRef
Correct Answer: Serializable
Source: page 251
Marks Awarded: 0/1

Question Library Number: 7742


Question:
Application boundries ensure a controlled means for processes to gain access
to code or data of another process.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 247
Marks Awarded: 0/1

Question Library Number: 7787


Question:

How many errors are in the following piece of code?


Incorrect Answers Selected: 3
Correct Answer: 2
Source: unit 4 from page 70
Marks Awarded: 0/1

Question Library Number: 7617


Question:
Which of the following are valid XML tags that are well formed if used as in
the context of code?
Incorrect Answers Selected: <roots/><root></root></roots>
Correct Answer: <roots><root></root></roots>
Source: page 223 - 224
Marks Awarded: 0/1

Question Library Number: 7624

Question:
InitialLeaseTime

Incorrect answer selected: stateless


Correct answer: Determines shortest time stay in memory

Question:
CAO

Incorrect answer selected: stateless

Correct answer: RegisterActivatedServiceType

Question:
CurrentLeaseTime

Incorrect answer selected: stateless


Correct answer: Time left before deletion

Source: page 254 - 255


Marks Awarded: 1/4

Question Library Number: 7639


Question:
Select the valid XmlNode class propertiess
Incorrect Answers Selected: PrependChild
Correct Answer: HasChildNodes
Source: page 230
Marks Awarded: 1/2

Question Library Number: 7712


Question:
Which of the following are not valid XPathNavigator methods?
Incorrect Answers Selected: Clone(), select()
Correct Answer: Copy(), Read()
Source: page 239 - 240

Marks Awarded: 0/2

Question Library Number: 7715


Question:
Which are the two more specific application boundries?
Incorrect Answers Selected: property boundries
Correct Answer: Domain boundries
Source: page 248
Marks Awarded: 1/2

Question Library Number: 7621

Question:
XmlReader()

Incorrect answer selected: XmlNode


Correct answer: Depth

Question:
XmlNodeType

Incorrect answer selected: XmlNode


Correct answer: CDATA

Question:
XPath

Incorrect answer selected: XmlNode


Correct answer: string-length()

Source: page 225, 229, 231, 238


Marks Awarded: 1/4

Question Library Number: 7678


Question:
Which of the following is not overloadable?
Incorrect Answers Selected: true
Correct Answer: +=
Source: basic c# page 122
Marks Awarded: 0/1

Question Library Number: 7696


Question:
Which of the following are valid static methods of the string class?
Incorrect Answers Selected: ToUpper()
Correct Answer: Intern()
Source: Basic C# page 213
Marks Awarded: 1/2

Question Library Number: 7691


Question:

Which of the following are not valid XmlReader methods?


Incorrect Answers Selected: Skip()
Correct Answer: IsEmptyElement()
Source: page 225
Marks Awarded: 1/2

Question Library Number: 7607


Question:
Which of the following is a valid member of the XmlNodeType enumeration?
Incorrect Answers Selected: EntityRef
Correct Answer: Notation
Source: page 230
Marks Awarded: 0/1

Question Library Number: 7641


Question:
The SOAP message envelope is mandatory.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 216 - 217
Marks Awarded: 0/1

Question Library Number: 7744


Question:
Structs cannot be abstract but may be sealed.
Incorrect Answers Selected: True

Correct Answer: False


Source: Basic c# unit 2 page 137
Marks Awarded: 0/1

Question Library Number: 7635


Question:
Which elements can be found on a WSDL document?
Incorrect Answers Selected: Services
Correct Answer: Message
Source: page 220
Marks Awarded: 2/3

Question Library Number: 7705


Question:
Which of the following are valid XmlNode properties?
Incorrect Answers Selected: SelectNodes
Correct Answer: InnerText
Source: page 230
Marks Awarded: 1/2

Question Library Number: 7626

Question:
TemplateField

Incorrect answer selected: Repeater

Correct answer: GridView

Question:
CheckBoxList

Incorrect answer selected: Repeater


Correct answer: Collection

Question:
ListView

Incorrect answer selected: Repeater


Correct answer: Insert, Update, Delete

Source: page 132, 154, 156 - 157, 172,


Marks Awarded: 1/4

Question Library Number: 7622

Question:
SOAP

Incorrect answer selected: SSL


Correct answer: Not bound to medium

Question:
MBR

Incorrect answer selected: SSL


Correct answer: Remotable object

Question:
TCP

Incorrect answer selected: SSL


Correct answer: Narrow

Source: page 253 - 254


Marks Awarded: 1/4

Question Library Number: 7593


Question:
The XmlReader class is an abstract, read only class that can be used to read
an XML file and it may be instantiated.
Incorrect Answers Selected: True
Correct Answer: False
Source: page 224
Marks Awarded: 0/1

Question Library Number: 7681


Question:

Which of the following is an example of boxing?


Incorrect Answers Selected: int value = 999;
Correct Answer: object value = 999;
Source: basic c# page 138
Marks Awarded: 0/1

Question Library Number: 7728

Question:
/

Incorrect answer selected: Uses the current node as the current context.
Correct answer: Uses the root of the XML document as the current context.

Question:
//

Incorrect answer selected: Uses the current node as the current context.
Correct answer: Uses the entire hierachy starting with the current node as
the current context.

Question:
[]

Incorrect answer selected: Uses the current node as the current context.
Correct answer: Specifies a filter pattern.

Source: page 236


Marks Awarded: 1/4

Question Library Number: 7608


Question:
UDDI stands for?
Incorrect Answers Selected: Universal Data Discovery and Integration
Correct Answer: Universal Description Discovery and Integration
Source: page 220
Marks Awarded: 0/1

Question Library Number: 7670


Question:
MNU want to send a message to an Alien spaceship hovering over
Johannesburg. MNU don't know what kind of system the spaceship is
implementing but they assume it is incompatible with their systems.
Furthermore MNU need certain ports to be opened but security of the channel
is not an issue. What kind of system does MNU need to implement to be able
to communicate with the alien's/prawn's?
Incorrect Answers Selected: TCP & Binary
Correct Answer: TCP & SOAP
Source: from page 251
Marks Awarded: 0/1

You might also like