1
Choose the the statement that stands true for classes and structures?
2
Following are the fields in a database table named Book: ISBN Title DatePublished PublisherlD
The value for PublisherID for all records is required to be retrieved by you where the ISBN field begins with 0972. Choose the correct SQL statement to achieve the purpose.
3
From the following options, what can be said to be the primary purpose of Internet Information Services (IIS)?
4
An instance of a class named Shape is created and stored it in a local variable. Can you identify the appropriate statement that defines participation of stack and the heap in the creation of the Shape instance?
5
While describing messages in a Web service, there is a specific communication protocol used. Which communication protocol would that be?
6
Choose from the following options the type of application presenting no user interface.
7
Identify the correct option reflecting the number of bytes Int32 type allocates.
8
While setting up a Windows Phone 8.1 an error is received by the user informing the problem connecting via user’s Microsoft account. Can you identify what is most likely wrong? (opt any TWO)
9
You are required to declare a Button control on an ASP.NET page. The Button control then has to be executed on the Web server before being sent to the browser. Which of the options below represent how the Button control will be declared?
10
A user logs on to a website. His full name must stay in the memory throughout the time he is on the website, logged on, until he closes his browser. Can you identify where would the user's full name be stored?
11
Choose a statement that defines Web Service Definition Language (WSDL)?
12
Can you identify the statement that defines the type of information a database connection string contains?
13
Identify the code block type you must write if you want to log user activity in a text file, keeping in mind that code block does not need to return a value to the code that is executing.
14
When an object is first instantiated a procedure automatically invokes. Can you Identify from the options below that procedure?
15
One of the following is the class that is as a starting point for new classes?
16
One of the following can be used as the condition of an if statement. Can you identify which option would be that?
17
What is a sprint in the agile software methodology?
18
ActiveX controls are not allowed by the company to use on its web pages. You want to dynamically add buttons to a company’s web page. The web page will be in the user's browser on the client side. Identify the language you should use.
19
Which access modifier would you use if you want the code that is within the same class to be accessed by the members of a class with no other code to be accessible to the members of this class.
20
Shape is the name of a class. CalculateArea is a method contained by Shape. CalculateArea is declared as Protected. the CalculateArea method can be accessed by whick classes?
21
The numbers ahead is a list of integers added to a stack in the same order as it was added: 4, 7, 9, 2, 6. Following operations are performed by you on the stack:
-Pop
-Pop
-Push 8
-Pop
-Push 3
Can you identify what the stack contain from top to bottom after the operations are performed?
- A. 3, 9, 2, 6
-
- B. 3, 9, 7, 4
-
- C. 6, 2, 9, 3
-
- D. 4, 7, 9, 3
-
22
The Catch block of an error handler
23
A theater needs to process ticket sales, for which you are required to create an application. The order of ticket requests must be same as received. Identify the data structure you would use.
24
In a relational database, what is the purpose of a primary key?
25
You are required to create an application. The application must run on startup and must be run in the background without interfering with the user using the computer. Identify the type of application you would create.
26
You want to host a website. Which of the following tools or applications would you use?
27
You are required to iterate through a collection of strings. You are also required to print each item in the collection. You are unaware of the number of the collection has. You want to avoid casting the collection to lEnumerable. Identify the loop structure you must use.
28
Following is the information contained by the requirements document:
-A customer has one or more accounts
-An account can belong to only one customer
You want to model the requirements and make sure number of classes is minimum. Which class or classes would you create?