>Concorsi
>Forum
>Bandi/G.U.
 
 
 
 
  Login |  Registrati 
Elenco in ordine alfabetico delle domande di 70-016: Desktop applications with Microsoft Visual C++ 6.0

Seleziona l'iniziale:
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z  

> Clicca qui per scaricare l'elenco completo delle domande di questo argomento in formato Word!


You are building a COM object that supports aggregation. Which of the following statements are true? [Check all of the correct answers]   Your object must be packaged into an in-process server.
You are building a COM object that supports aggregation. Which of the following statements are true? [Check all of the correct answers]   When other objects reuse your object by aggregation, they will be able to selectively choose the interfaces that are exposed.
You are building a Sales component that you want to be able to use with scripting languages. Because the component will also be used by C++ applications, you decide to implement a dual interface. You plan to provide a number of operations as part of the ISales interface. As a minimum, you will need to implement methods for which of the following interfaces?   All of the above
You are developing a COM component. You want the component to be a connectable object. Which statement is true?   Your component must implement both the IConnectionPoint and the IConnectionPointContainer interfaces.
You are developing a COM object using the SDK. You are implementing the IPersistStorage interface. Which method must you implement so that clients can make the object persist?   Save
You are developing an application that uses ADO to access a SQL Server database. Some of the requirements for the application are as follows:



  • Support for up to 250 concurrent users.

  • As new records are added to the database, the additions must be
    immediately visible to all users.

  • The possibility of users viewing inconsistent data must be guarded against.

    Which of the following would be best for updating a single record?

   CursorType of adOpenKeyset and LockType of adLockPessimistic
You are developing an application that will use a COM object that has 25 interfaces. You know that the object will be located on the server, and you need to minimize network traffic. Which of the following functions would you use when creating the object?   CoCreateInstanceEx()
You are developing an MDI MFC application and have decided to provide the user with two toolbars unique to your application. In which function would you normally create the toolbars?   CMainFrame::OnCreate()
You are implementing a COM server using MFC. Which of the following statements are true? [Check all of the correct answers]   The METHOD_PROLOGUE() macro is placed in the implementation of an interface function to provide access to the IUnknown interface.
You are implementing a COM server using MFC. Which of the following statements are true? [Check all of the correct answers]   BEGIN_INTERFACE_PART() generates function prototypes for QueryInterface(), AddRef(), and Release().
You are implementing an SDI MFC application that uses context-sensitive help. When you distribute your application, files with which of the following extensions will you need to include as part of the installation? [Check all of the correct answers]   EXE
You are implementing an SDI MFC application that uses context-sensitive help. When you distribute your application, files with which of the following extensions will you need to include as part of the installation? [Check all of the correct answers]   CNT
You are implementing an SDI MFC application that uses context-sensitive help. When you distribute your application, files with which of the following extensions will you need to include as part of the installation? [Check all of the correct answers]   HLP
You are writing an MFC SDI database application. You have a form where users can update records. You are concerned that the user might try to exit the program without saving changes to the database. The default MFC procedure allows users to save document changes to a file, not to the database. This is not what you want. Which function do you need to override to provide the correct functionality?   CDocument::SaveModified()
You have developed an SDI MFC application with a CFormView. You have added menu items and placed their handlers in your CFormView-derived class. Which class performs the message map lookup?   CCmdTarget
You recently built an Automation server. Your server provides rich error information using the Automation-defined error object mechanism. To implement this error reporting, you had to implement which of the following interfaces? [ Check all of the correct answers]   ISupportErrorInfo
You recently purchased an out-of-process component from a third party. The component's file name is COMPLEX.EXE. You now want to use this component with an application you are developing. Which of the following command lines can you use to register the component on your development system?   COMPLEX.EXE -regserver
You work for a software company that specializes in MFC. The company’s mission is to provide custom software development for small- to medium-sized companies. Your firm just signed a contract with the Exotic Places travel agency to develop a new reservation system. Here is the information you have been given:



  • The Exotic Places travel agency employs 75 people. Thirty-nine of the employees are agents who provide customers with travel information such as flights, lodging, and cruises. These agents will also make arrangements and reservations. Twenty-five of the employees are managers. Fifteen of the managers supervise the agents. Five employees are accountants and financial managers. The remaining employees provide clerical support.

  • The agents and supervisors need to use the new application as a standalone application. The accountants will need to access some of the services it provides through an application that will be built at a later time.

  • It’s anticipated that the number of users will double over the next two years.

  • The Exotic Places agency currently has five branch offices. Each branch office has its own database; most of these databases are MS Access. The agency is in the process of networking the branch offices together. They also hired a firm to install a center SQL Server database and migrate their data. Your application will be required to use the SQL Server database.

  • The financial/accounting system that might be developed uses Visual C++. However, there is a possibility that it will be built using Visual Basic.

   MFC EXE with Automation enabled
Your application has opened an ADO Recordset. Which of the following conditions are true if there are no records?   BOF is true and EOF is true.