Searching for "applications."

Q:

In Computer programming API is set of subroutinedefinitions, protocols, and tools for building software andapplications. Which among the following is an applicationprogramming interface for the programming language Java,which defines how a client may access a database?

A) J2EE B) JDK
C) JAVA SE D) JDBC
 
Answer & Explanation Answer: D) JDBC

Explanation:

Java Database Connectivity (JDBC) is an applicationprogramming interface (API) for the programminglanguage Java, which defines how a client may accessa database. It is part of the Java Standard Editionplatform, from Oracle Corporation

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

Q:

In Computer programming there is set of subroutinedefinitions, protocols, and tools for building software andapplications. Which among the following is a term for setsof requirements that govern how one application can talkto another?

A) UPS B) API
C) CGI D) J2EE
 
Answer & Explanation Answer: B) API

Explanation:

An API may be for a web-based system, operatingsystem, database system, computer hardware, orsoftware library. It is an acronym for ApplicationProgramming Interface. An API specifies how softwarecomponents should interact and APIs are used whenprogramming graphical user interface (GUI)components.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

Q:

You have started your own company based upon PMI methodologies and have been contracted by the government to develope a new interface for one of its computer applications. You develope a solution and win the bid for the contract but encounter problems at the end of the project when the customer says that you did not fullfill their needs. You are throughly shocked. What is your conclusion of the situation?

A) There are always more customers available B) If the customer is not satisfied, the project is not successful
C) Change control management was not effective D) The customer did not communicate very well
 
Answer & Explanation Answer: B) If the customer is not satisfied, the project is not successful

Explanation:

Answer A is incorrect because without satisfied customers, we do not have potential for new projects. Answer C is incorrect because the change control management process would have likely resolved this problem. Answer D is incorrect because it is the project manager's responsibility to seek communication with the customer to set realistic expectations.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

 ________ is a simple object model that is easier to understand and use than OLE DB, and is frequently used for database applications.

A) ASP B) XML
C) ODBC D) ADO
 
Answer & Explanation Answer: D) ADO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

Q:

You are a member of a team of developers creating several ASP.NET applications for XYZ. You want to create a reusable toolbar that will be used in each of the applications. The toolbar will be displayed at the top of each page viewed by the user.


The contents of the toolbar will vary depending on options each user selects when creating a profile.


You want to be able to add the toolbar to the ASP.NET toolbox for each of the developers on your team.What should you do?

A) Create a new Web Control Library project. Create the toolbar within a Web custom control. B) Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control.
C) Add a new Web Form to your ASP.NET project. Design the toolbar within the Web Form and save the Web Form with an .ascx extension. D) Add a new component class to your ASP.NET project. Design the toolbar within the designer of the component class.
 
Answer & Explanation Answer: A) Create a new Web Control Library project. Create the toolbar within a Web custom control.

Explanation:

Web custom controls are compiled code, which makes them easier to use but more difficult to create. You can add a Web custom control to the Toolbox and display it in a visual designer with full Properties window support and all the other design-time features of ASP.NET server controls. 

 

Incorrect Answers:

B: Web user controls are easy to make, but they can be less convenient to use in advanced scenarios such as this. Because Web user controls are compiled dynamically at run time they cannot be added to the Toolbox


C: A Web form would be inadequate.

 

D: The Component class Provides the base implementation for the IComponent interface and enables object-sharing between applications. It does not fit in this scenario.

Report Error

View Answer Report Error Discuss