Certification Exam Prep Questions For Software Developer Fundamentals VB (98-361)
QuickStart is now offering assessment questions for Software Developer Fundamentals VB (98-361) . Whether you are deciding which exam to sign up for, or simply want to practice the materials necessary to complete certification for this course, we have provided a practice assessment to better aid in certification. 100% of the questions are real questions; from a recent version of the test you will take for Software Developer Fundamentals VB (98-361)
Choose the the statement that stands true for classes and structures?
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.
- A. SELECT Publisher WITH ISBN > '0972'
-
Incorrect.
- B. SELECT PublisherlD WHERE ISBN LIKE '0972%'
-
Correct!
- C. SELECT PublisherlD FOR ISBN > '0972'
-
Incorrect.
- D. SELECT PublisherlD WHERE ISBN BEGINS '0972'
-
Incorrect.
From the following options, what can be said to be the primary purpose of Internet Information Services (IIS)?
- A. publish ASP.NET Web applications
-
Incorrect.
- B. host ASP.NET Web applications.
-
Correct!
- C. develop ASP.NET Web applications.
-
Incorrect.
- D. host ASP.NET Web applications.
-
Incorrect.
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?
While describing messages in a Web service, there is a specific communication protocol used. Which communication protocol would that be?
- A. Simple Mail Transfer Protocol (SMTP)
-
Incorrect.
- B. Lightweight Directory Access Protocol (LDAP)
-
Incorrect.
- C. Simple Object Access Protocol (SOAP)
-
Correct!
- D. Internet Control Message Protocol (ICMP)
-
Incorrect.
Choose from the following options the type of application presenting no user interface.
- A. Windows forms
-
Incorrect.
- B. Web forms
-
Incorrect.
- C. Console-based
-
Incorrect.
- D. Windows service
-
Correct!
Identify the correct option reflecting the number of bytes Int32 type allocates.
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)
- A. Inside the Finally block
-
Correct!
- B. Inside all Catch blocks
-
Incorrect.
- C. Inside the Try block
-
Incorrect.
- D. Inside a Catch block
-
Incorrect.
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?
- A. < asp:Button compile="WebServer"/>
-
Incorrect.
- B. < asp:Button runat="server"/>
-
Correct!
- C. < asp:Button compile="server"/>
-
Incorrect.
- D. < asp:Button runat="WebServer'V>
-
Incorrect.
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?
- A. Control state
-
Incorrect.
- B. View state
-
Incorrect.
- C. Session state
-
Correct!
- D. Application state
-
Incorrect.
Choose a statement that defines Web Service Definition Language (WSDL)?
- B. A scripting language used for creating Web services
-
Incorrect.
- D. The language used to consume a Web service
-
Incorrect.
Can you identify the statement that defines the type of information a database connection string contains?
- A. Database tables, columns, and relationships
-
Incorrect.
- B. SQL statements and stored procedures
-
Incorrect.
- D. Views and indexes
-
Incorrect.
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.
- A. A subroutine
-
Correct!
- B. A Try...Catch...Finally statement
-
Incorrect.
- C. An If...Then...Else statement
-
Incorrect.
- D. A function
-
Incorrect.
When an object is first instantiated a procedure automatically invokes. Can you Identify from the options below that procedure?
One of the following is the class that is as a starting point for new classes?
- A. Base class
-
Correct!
- B. Inherited class
-
Incorrect.
- C. Derived class
-
Incorrect.
- D. Public class
-
Incorrect.
One of the following can be used as the condition of an if statement. Can you identify which option would be that?
- A. An integer constant
-
Incorrect.
- B. A Boolean expression
-
Correct!
- C. A string variable
-
Incorrect.
- D. An object Instance
-
Incorrect.
What is a sprint in the agile software methodology?
- A. A month-long or shorter development life cycle
-
Correct!
- B. A list of all desired changes to a product
-
Incorrect.
- C. A daily meeting
-
Incorrect.
- D. A list of all desired changes to a product
-
Incorrect.
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.
- A. Structured Query Language (SQL)
-
Incorrect.
- B. JavaScript
-
Correct!
- C. C++
-
Incorrect.
- D. Cascading Style Sheets (CSS)
-
Correct!
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.
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?
- A. Only classes that do not inherit from Shape
-
Correct!
- B. All other classes that are declared as Public
-
Incorrect.
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?
The Catch block of an error handler
- A. executes every time the code runs.
-
Incorrect.
- B. executes when an exception is thrown
-
Correct!
- C. records an error code and exits the application.
-
Incorrect.
- D. records an error code and exits the exception handler.
-
Incorrect.
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.
In a relational database, what is the purpose of a primary key?
- A. It creates a foreign key constraint to a parent table
-
Incorrect.
- C. It always creates a non-clustered index on the table.
-
Incorrect.
- D. It uniquely identifies a record in the table.
-
Correct!
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.
- A. Windows service
-
Correct!
- B. Windows Forms
-
Incorrect.
- C. Console-based
-
Incorrect.
- D. Web Forms
-
Incorrect.
You want to host a website. Which of the following tools or applications would you use?
- A. Service Control Manager (SCM)
-
Incorrect.
- B. Microsoft Visual SourceSafe
-
Incorrect.
- C. • Internet Information Services (IIS)
-
Correct!
- D. Microsoft SQL Server
-
Incorrect.
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.
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?
- A. Customer, CustomerAccount, and Account
-
Incorrect.
- B. Customer and Account
-
Correct!
- C. Account
-
Incorrect.
- D. CustomerAccount
-
Incorrect.
- Home
- Sample Question - Software Developer Fundamentals VB (98-361)
Sample Question - Software Developer Fundamentals VB (98-361)
More Information:
- Learning Style: On Demand
- Learning Style: Practice Exam
- Difficulty: Beginner
- Course Duration: 1 Hour
- Course Info: Download PDF
- Certificate: See Sample
Contact a Learning Consultant
Need Training for 5 or More People?
Customized to your team's need:
- Annual Subscriptions
- Private Training
- Flexible Pricing
- Enterprise LMS
- Dedicated Customer Success Manager
Course Information