Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
A set of practice questions and answers for the certiport software development exam 2024. It covers various aspects of software development, including programming languages, database concepts, web development, and software development life cycle. The questions are designed to test your understanding of fundamental concepts and your ability to apply them in real-world scenarios.
Typology: Exams
1 / 57
Simulating the final design of an application in order to ensure that the development is progressing as expected is referred to as:
A.) Prototyping
B.) Software testing
C.) Analyzing requirements - ....ANSWER...B.) Software testing
In the life cycle of an ASP. NET Web page, which phase follows the SaveStateCompletephase?
A.) Load
B.) Postlnit
C.) Render
D.) PostBack - ....ANSWER...C.) Render
You create an application that uses Simple Object Access Protocol (SOAP).Which technology provides information about the application's functionality to other applications?
A.) Common Intermediate Language(CIL)
B.) Web Service Description Language (WSDL) - ....ANSWER...B.) Web Service Description Language (WSDL)
Which language uses Data Definition Language (DDL) and Data Manipulation Language(DML)?
Which language was designed for the primary purpose of querying data, modifying data, and managing databases in a Relational Database Management System?
Which property procedure should you include?
A.) set
B.) get - ....ANSWER...B.) get
- ....ANSWER...
You are creating a Web application. The application will be consumed by client computers that run a variety of Web browsers.
Which term is used to describe the process of making the application available for client computers to access?
A.) Deploying
B.) Virtualization
C.) Hosting
D.) Casting - ....ANSWER...C.) Hosting
You are writing a Web application that processes room reservation requests. You need to verify that the room that a guest has selected is not already reserved by another guest.
Which type of programming should you use to determine whether the room is still available when the request is made?
A.) client-side
B.) batch processing
C.) multithreaded
D.) server-side - ....ANSWER...D.) server-side
You need to group all the style settings into a separate file that can be applied to all the pages in a Web application.
What should you do?
A.) Use a WebKit.
B.) Use inline styles
C.) Use an Extensible Markup Language (XML) schema
Internet Information Services (IIS) must be installed on _____________ in order to run a deployed ASP.NET application.
A.) the client computers
B.) computer that you plan to deploy from
C.) computer that hosts the application - ....ANSWER...C.) computer that hosts the application
Which programming language is characterized as client-side, dynamic and weakly typed?
A.) JavaScript
B.) HTML
C.) C# - ....ANSWER...A.) JavaScript
What are the three basic states that a Windows service can be in? (Choose three.)
A.) running
B.) stopped
C.) paused
D.) halted - ....ANSWER...A.) running
B.) stopped
C.) paused
To minimize the amount of storage used on the hard drive by an application that generates many small files, you should make the _____________ as small as possible.
A.) file allocation table
B.) block size
C.) partition - ....ANSWER...B.) block size
Which service can host an ASP.NET application?
A.) Remote Desktop
B.) Web Services
C.) Internet Information Services (IIS)
D.) Cluster Services - ....ANSWER...C.) Internet Information Services (IIS)
Which three are valid SQL keywords? (Choose three.)
To improve performance, a SQL SELECT statement should use ____________
A.) indexes
B.) ordering
C.) grouping - ....ANSWER...A.) indexes
Which three items are benefits of encapsulation? (Choose three.)
A.) performance
B.) Flexibility
C.) inheritance
D.) maintainability
E.) restricted access - ....ANSWER...B.) Flexibility
E.) restricted access
D.) maintainability
When a base class declares a method as virtual, the method _________________bv a derived class.
A.) is hidden from implementation
B.) can be overridden with its own implementation by a derived class
C.) cannot be overridden with its own implementation by a derived class
D.) must be overridden in any non-abstract class that directly inherits from that class - ....ANSWER...B.) can be overridden with its own implementation by a derived class
The process of transforming compiled C# code into an XML string for a web service is known as
A.) deserialization
B.) serialization - ....ANSWER...B.) serialization
You execute the following code.
for (int i = 0; i <=10; i+=2)
{
Console.WriteLine("Hello");
}
How many times will the word Hello be printed?
You are creating a variable for an application. You need to store data that has the following characteristics in this variable:
Consists of numbers and characters
Which data type should you use?
A.) Single
B.) Decimal
C.) String
D.) Char - ....ANSWER...A.) Single
You are creating an application for computers that run Windows XP or later. This application must run after the computer starts. The user must not be aware that the application is running.
The application performs tasks that require permissions that the logged-in user does not have.
Which type of application allows this behavior?
A.) Windows Forms application
B.) Windows Service application - ....ANSWER...B.) Windows Service application
An application presents the user with a graphical interface. The interface includes buttons that the user clicks to perform tasks. Each time the user clicks a button, a method is called that corresponds to that button.
Which term is used to describe this programming model?
A.) structured
B.) event driven - ....ANSWER...B.) event driven
What are two methods that can be used to evaluate the condition of a loop at the start of each iteration? (Each correct answer presents a complete solution. Choose two. )
A.) For
B.) While
You are creating the necessary variables for an application. The data you will store in these variables has the following characteristics:
Consists of numbers Includes numbers that have decimal points Requires more than seven digits of precision You need to use a data type that will minimize the amount of memory that is used.
Which data type should you use?
A.) float
B.) decimal
C.) double - ....ANSWER...C.) double
A data dictionary describes the structure of a database is called _________
A.) metacontent
B.) metadata - ....ANSWER...B.) metadata
What is displayed when you attempt to access a Web service by using a Web browser?
A.) a directory listing of the Web service's application structure
B.) a listing of methods that are available in the Web service
C.) a visual depiction of your preliminary connection to the Web service
D.) an error page explaining that you have accessed the Web service incorrectly - ....ANSWER...B.) a listing of methods that are available in the Web service
Where must Internet Information Services (IIS) be installed in order to run a deployed ASP.NET application?
A.) on the computer that you plan to deploy from
B.) on the computer that hosts the application
C.) on the client computers
D.) on the Application Layer Gateway Service - ....ANSWER...B.) on the computer that hosts the application
The default entry point for a console application is the ________ method.
C.) reference an index in the database
D.) Query a database view - ....ANSWER...A.) Call a stored procedure
A database dictionary that describes the structure of a database is called ______________
B.) Metacontent
C.) Normalization
D.) Metadata - ....ANSWER...D.) Metadata
You need to ensure the data integrity of a database by resolving insertion, update, and deletion anomalies. Which term is used to describe this process?
A.) Resolution
B.) Integration
C.) Normalization
D.) Isolation - ....ANSWER...C.) Normalization
Your database has a table called students that contains the following fields:
firstNamelastNameemailAddressphone
You need to get the firstName, last Name, and email for all students listed alphabetically by last name and then first name.
A.) SELECT lastName, firstName FROM students ORDER BY lastName, firstName
B.) SELECT firstName, lastName, email FROM students ORDER BY lastName, firstName
C.) SELECT firstName, lastName, email FROM students ORDER BY firstName, lastName
D.) SELECT firstName, lastName FROM students ORDER BY lastName, firstName - ....ANSWER...B.) SELECT firstName, lastName, email FROM students ORDER BY lastName, firstName
Your application must pull data from a database on a separate server. What must you do?
A.) Install the database on each client computer
B.) Establish a connection to the database by using the appropriate data provider