Vocabulary
Methods
Data
Classes
Applications and Types
100

The duplication of code so that modifications can happen in parallel is known as this

What is branching?

100

The default entry point for a console application is this method.

What is the main method?

100

Consists of numbers and characters

What is a String?

100

The Dog class and the Cat class inherit from the Animal class. The Animal class includes a breathe() method and a speak() method. If the speak() method is called from an object of type Dog, the result is a bark. If the speak() method is called from an object of type Cat, the result is a meow.
This term is used to describe this object-oriented concept.

What is multiple inheritance?

100

This program type is appropriate for an application that accesses real-time information from a data base.

What is a server-side application?

200

This is used to simulate a called unit in unit testing.

What is a stub?
200

Makes sure that a repetition structure (loop) occurs at least once.

What is Do-While?

200

DOCTYPE, HTML, head, title, body tags, and XML namespace.

What is XHTML declarations?

200

This is the class from which all objects in .NET inherit from.

What is the System.Object class?

200

This application type is appropriate when creating a graphical user interface that requires data from a user AND has no network connectivity.

What is Windows Forms type?

300

This is used to simulate calling a unit in unit testing

What is a driver?

300

You have a class named Truck that inherits from a base class named Vehicle. The Vehicle class includes a protected method named brake ().
This is what you call the Truck class implementation of the brake () method

What is MyBase.brake();?

300

This data structure allows you to make calls that must be handled in the same order in which they were received.

What is a queue?

300

A class named Manager is derived from a parent class named Employee. The Manager class includes characteristics that are unique to managers.
This is the the term to describe this object-oriented concept.

What is inheritance?

300

You have a website that includes a form for username and password.
You need to ensure that users enter their username and password. The validation must work in all browsers. This is where you but the validation control.

What is server-side and client-side?

400

The primary goal of this is to take the smallest piece of testable software in the application, isolate it from the rest of the code, and determine whether it behaves exactly as expected.

What is unit testing?

400

This event determines which action method is needed and then calls that method.

What is a controller?

400

This is required to access the elements of an array.

What is an integer index?

400

These must exist to inherit attributes from a particular class.

What is public properties?

400

This is how you should configure an application to consume a Web service

What is add a reference to the Web service in the application?

500

Simulating the final design of an application in order to ensure that the development is progressing as expected is referred to as this.

What is software testing?

500

for, while

What are two methods that can be used to evaluate the condition of a loop at the start of each iteration?

500

This data type consists of numbers that have decimal points and multiple digits of precision.

What is double?

500

Maintainability, flexibility, restricted access

What are the three main benefits of encapsulation?

500

These are the three (3) basic states that a Windows service can be in.

What is running, stopped, and paused?

M
e
n
u