>Concorsi
>Forum
>Bandi/G.U.
 
 
 
 
  Login |  Registrati 
Elenco in ordine alfabetico delle domande di 70-175: Distributed applications with Visual Basic 6

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!


If the following code is placed within your Visual Basic project, and the project is compiled on a 32-bit development platform, which code segment will not be included in the final compiled binary executable? [Check all that apply]



#If Win32 Then
' insert code segment A
#ElseIf Win16 Then
' insert code segment B
#Else
' insert code segment C
#End If

   Code segment B.
If the following code is placed within your Visual Basic project, and the project is compiled on a 32-bit development platform, which code segment will not be included in the final compiled binary executable? [Check all that apply]



#If Win32 Then
' insert code segment A
#ElseIf Win16 Then
' insert code segment B
#Else
' insert code segment C
#End If

   Code segment C.
In order for your distributed application to serve a large number of users, you determine that your business components in MTS will likely need to run on multiple servers. What methods can you use to implement this? [Check all that apply]   Use parallel deployment to deploy copies of the components on multiple MTS servers.
In order for your distributed application to serve a large number of users, you determine that your business components in MTS will likely need to run on multiple servers. What methods can you use to implement this? [Check all that apply]   Use pipelining to break down your components into discrete objects and deploy them on multiple MTS servers.
In what situation should you set the CausesValidation property on a control to False?   When the control will be used to provide user assistance
In your Visual Basic application, you are using RDO to retrieve data from a Microsoft SQL Server. You prefer to avoid having temporary stored procedures be generated on the server when using the Execute and OpenResultset methods. Which option should be used to accomplish this?   rdExecDirect
Invoking the Abandon method of the Session built-in object will result in which of the following behaviors concerning ASP script?   Script on the same page continues to execute, with the Session object continuing to be accessible.