You are on page 1of 11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

DOYOUKNOWTHAT?Forwebdevelopersitis$30$59/hrNEXT

<<AllUpwork(oDesk)andElanceTests<<Upwork(oDesk)testanswers<<.NetTechnologycategory

TestanswersforASP.Net2.0usingVBTest2016(2/66,CL)Lastupdated:March26
Upwork(oDesk).NetTechnology
Questionsandanswersareregularlyupdated.Answeredandnotansweredtestsquestions.
Thishelpsgettingjob:Hundredsof(coverletterexamples,interviewquestions,profilesamples)EarnonUpwork(oDesk)
Jobassistance:jobspopularityfreelancerates
Populartestanswers:HTML,.Net,CSS,English,SEO,Photoshop,iOS,Java,Android,Ruby,Python,JavaScript
Seeall4testsanswersupdated5Mar,2016
Watchrecentvideotestsanswers(includesabsenttestanswers)
FindUpwork(oDesk)andElancetestanswersonthiswebsite:

NEW!tests,articles,coverlettersandjobinterviews.FOLLOWUSON

Collapse|Expand

2AnsweredTestQuestions:
1.Whileusingthedeclarationbelow,whatistheresultofclickingonthecontrol?
<inputid="Button1"type="button"onclick="returnButton1_onclick()"/>
Answers:
ThebrowserwillinvoketheclientscriptfunctionnamedButton1_onclick
ThepagewillpostbackandtheserverwillinvoketheButton1_onclickmethodofthepage.
Thedeclarationisnotvalidbecauseitdoesnotcontainarunat="Server"attribute
<input/>elementsarenotvalidinASP.NETwebsites

2.Bydefault,therightsofwhichWindowsAccountareusedbyananonymousWebSiteaccess?
Answers:
Administrator
IUSER_MachineName(wheretheMachineNameistheactualcomputername)
ASPNET
Guest

66NOTAnsweredYetTestQuestions:
(holdon,willbeupdatedsoon)

3.Customnonfatalexceptionsshouldbederivedfrom:
Answers:
ApplicationException
DataMisalignedException
ExecutionEngineException

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

1/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

SystemException

4.WhichofthefollowingistrueaboutVBgenerics?
Answers:
VBallowsnontypetemplateparameters
VBsupportsexplicitspecialization
VBallowsthetypeparametertobeusedasthebaseclassforthegenerictype
VBallowsagenerictypeparameteritselftobeageneric
VBenforcesthatallcodesarevalidforalltypesofparameters

5.WhichofthefollowingdoesEventBubblingallowcompositecontrolstoperform?
Answers:
Propagatecontainerrelatedeventstothechildcontrols.
Propagatechildeventsuptocontrolhierarchy
Distributeeventsbetweenpeerchildcontrols.
Translatecontrolunhandledcontroleventsintoexceptions.

6.Whichaccesslimitationdoesaclassmemberdeclared"ProtectedFriend"have?
Answers:
Accessislimitedtothecontainingclassplusanyclassesderivedfromthecontainingclass
Accessislimitedtothecurrentassembly
Accessislimitedtothecontainingclassplusanyclassesderivedfromthecontainingclassthatarealsointhecurrent
assembly
Accessislimitedtothecontainingclassplusanyclassesderivedfromthecontainingclassoranyotherclassinthecurrent
assembly

7.Whichofthefollowingcanbeusedtopreservestateinformation?
Answers:
ApplicationState
SessionState
ViewState
PageInstanceVariables
Alloftheabove

8.WhichofthefollowingstatementisnottruerelatedtoDataProviderinADO.NET?
Answers:
Itisresponsibleforprovidingandmaintainingtheconnectiontothedatabase.
Itisasetofrelatedcomponentsthatworktogethertoprovidedatainanefficientandperformancedrivenmanner.
ItincludesaDataAdapterclass,whichprovidesahighperformancemechanismforretrievingdata

9.Determiningtheavailabilityofsufficientmemoryforanoperationcanbeaccomplishedby:
Answers:
Thereisnosupportedapplicationlevelmeanstodetermineifaspecificamountofmemoryisavailable.
usingstaticmethodsofSystem.Runtime.MemoryFailPointandcheckingthereturnvalue
creatinganinstanceofSystem.Runtime.MemoryFailPointandmonitoringforanInsufficientMemoryException
creatinganinstanceofSystem.Runtime.MemoryFailPointandmonitoringforanOutOfMemoryException

10.WhichofthefollowingtasksareappropriateforaccessingaWebServicefromtheclient
code?
Answers:
CreationofaStyleClasstodefinethebehavior.
Writingascriptmethodtoinitializeandinvokethemethodsoftheservice.
AdditionofHTMLElementstodisplaytheresultsoftheWebServicecalls.
InclusionoftheWebServiceSchemainformationasXML

11.WhichofthefollowingelementscanbeadjustedwhenusingtheProcessModelelementofthe
Machine.Configfile?
Answers:
Thenumberofqueuedrequestsbeforereturning"ServerBusy(error:503)"
Themaximumnumberofthreadsperprocessor
TheminimumnumberofworkerthreadstousefortheprocessonaperCPUbasis

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

2/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

Themaximumamountofmemoryutilizedperrequest

12.OfwhichelementsdoesGenericsallowparameterizationbytype?
Answers:
Classes
Structs
Methods
Events
Fields

13.Whichofthefollowingaretrueabouteventhandling?
Answers:
Onemethodmayhandleeventsfromdifferentsources
Asingleeventcanbehandledbymultiplemethods
Eventhandlersmustbemembersofthesameclassasraisedtheevent
Eventhandlerscanbedynamicallyaddedandremovedatruntime
Itisimpossibletodeterminetheorderinwhicheventhandlerswillbeinvoked

14.Whichofthefollowingcanoneusetodetecttheuser'scurrentlanguage?
Answers:
ExaminingtheUserLanguagespropertyofthecurrentRequestobject.
ExaminingtheCurrentCulturepropertyofthecurrentRequestobject.
ExaminingtheCurrentCulturepropertyofthecurrentThreadobject.
ExaminingtheLanguagepropertyofthecurrentPageobject.

15.Whichofthefollowingisnotavalidattributeforimpactingserialization?
Answers:
DataContract
DataMember
EnumMember
CollectionDataContract
DataObject

16.Whichofthefollowingcharacteristicsdooverloadedmethodshave?
Answers:
Theymusthavethesamename
Theymusthavethesameparametersignature
Theymusthavethesamereturntype
Theymusthavethesameaccesslevel
Noneoftheabove

17.InwhichfilearePredefinedClientSideValidationScriptsdefined?
Answers:
WebUIValidation.js
ClientValidation.js
AspNetValidation.js
USerValidation.js

18.WhichofthefollowingiscorrectforApplicationCenterTest(ACT)toperformloadtesting?
Answers:
SimulatesalargegroupofusersbyopeningmultipleconnectionstotheserverandrapidlysendingHTTPrequests.
ItalsosupportsseveralotherauthenticationschemesandtheSSLprotocol,makingitidealfortestingpersonalizedand
securesites.
ItiscompatiblewithallWebserversandWebapplicationsthatadheretotheHTTPprotocol
Alloftheabove.

19.Whichofthefollowingoperatorscanbeoverloaded?
Answers:
Assignment(=)
Conditional(AndAlso,OrElse)
Logical(And,Or,Xor)

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

3/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

Shift(<<,>>)

20.Whichofthefollowingis/aretrueoftheSystem.Text.StringBuilderclass?
Answers:
Itislessefficientthanstringconcatenationwhenmanyconcatenationsareperformed.
ThereisamethodwhichformatsthestringbeingappendedtotheStringBuilder,muchliketheString.Format.
TheStringBuilderismostefficientwheninitializedusingtheparameterlessconstructor.

21.Whichofthefollowingaretruewhencomparingbuiltintypesforequality?
Answers:
Integraltypesareconsideredequaliftheyrepresentthesamevalue.
Objecttypesareconsideredequaliftheybothrefertothesameobjectorifbotharenull
Stringtypesareconsideredequaliftheyhaveidenticallengthsandidenticalcharactersineachcharacterposition
Stringtypesareconsideredequaliftheyhaveidenticaldimensionsandidenticalcontentateacharrayindex

22.WhichofthefollowingdifferentiatesaUserControlfromaCustomServercontrol?
Answers:
UserControlcandirectlyexpressrenderinginformationviamarkupaCustomServercontrolcannot.
UserControldoesnotrequiretheuseofthe@RegisterdirectiveaCustomServercontroldoesrequireit.
UserControlcanmakeuseofscriptbasedvalidationaCustomServercontrolcannot.
UserControlcanrepresentcompletecompositatehierarchyaCustomServercontrolcannot.

23.Whichofthefollowingtypesguaranteeatomicreadsandwrites?
Answers:
int
double
string
long
float

24.WhichdirectiveallowstheutilizationofacustomwebcontrolinanASP.NETpage?
Answers:
@Register
@Include
@Control
@Import

25.Whichofthefollowingarenotvalidnamespacesinthe.NETframework?
Answers:
System.Data.OleDb
System.Data.SqlServer
System.Data.Oracle
System.Data.Xml
System.Data.SqlClient

26.Whereshouldaninstanceofanobjectwhichprovidesservicestoallusersbestored?
Answers:
ApplicationState
SessionState
ViewState
Noneoftheabove

27.WhichofthefollowingconditionscantriggertheautomaticrecyclingofanASP.NET
applicationhostedinIIS?
Answers:
Aspecificnumberofrequeststotheapplicationprocess.
Anabsolutenumberofbytesprocessmemoryutilization.
Apercentageofphysicalmemoryutilizedbytheprocess.
Aspecifictimeinterval
Aspecificdateandtime

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

4/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

28.Whichofthefollowingisusedtoremoveacookiefromaclientmachine?
Answers:
RemovethecookiefromtheSystem.Web.UI.Page.Request.Cookiescollection.
RemovethecookiefromtheSystem.Web.UI.Page.Request.Browser.Cookiescollection.
SettheExpirespropertytoDataTime.NowforacookieintheWeb.UI.Page.Response.Cookies
RemovethecookiefromtheSystem.Web.UI.Page.Response.Cookiescollection.

29.Whichofthefollowingclassisusedtodividethetimeintounitssuchasweeks,months,and
years?
Answers:
System.DateTime
System.TimeSpan
System.Globalization.Calender
System.Globalization.CultureInfo

30.WhichofthefollowingcanyoudowhendeletingaDataRowfromtheDataRowCollectionofa
DataTable?
Answers:
UsetheDataRowCollection.Removemethodtoimmediatelydeletetherow.
UsetheDataRowCollection.RemovemethodtomarktherowfordeletionwhenDataRow.AcceptChangesiscalled.
UsetheDataRow.Deletemethodtoimmediatelydeletetherow.
UsetheDataRow.DeletemethodtomarktherowfordeletionwhenDataRowAcceptChangesiscalled.

31.WhatdoestheAndAlsooperatordo?
Answers:
ItperformsaBooleanANDoperation,evaluatingbothoperands
ItperformsaBooleanANDoperation,evaluatingthelefthandsideonlyiftherighthandsideisfalse
ItperformsaBooleanANDoperation,evaluatingtherighthandsideonlyifthelefthandsideisfalse
ItperformsaBooleanANDoperation,evaluatingtherighthandsideonlyifthelefthandsideistrue
Noneoftheabove

32.TransactionsinitiatedinwhichofthefollowingaresupportedbytheSystem.Transactions
infrastructure?
Answers:
SQLServer
ADO.NET
MSMQ
MicrosoftDistributedTransactionCoordinator(MSDTC).
Alloftheabove

33.Whichofthefollowingarevalidassignments?
Answers:
DimiAsInt32=Int16.MaxValue
DimsAsSingle=Double.MaxValue
Dims2AsString=Int64.MaxValue
Alloftheabove

34.WhichofthefollowingcontrolsallowstheuseofXSLtotransformXMLcontentintoformatted
content?
Answers:
System.Web.UI.WebControls.Xml
System.Web.UI.WebControls.Xslt
System.Web.UI.WebControls.Substitution
System.Web.UI.WebControls.Transform

35.Whichofthefollowingaretrueaboutdeclarativeattributes?
Answers:
TheymustbeinheritedfromtheSystem.Attribute
Attributesareinstantiatedatthesametimeasinstancesoftheclasstowhichtheyareapplied
Attributeclassesmayberestrictedonlytobeappliedtoapplicationelementtypes
Bydefault,agivenattributemaybeappliedmultipletimestothesameapplicationelement

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

5/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

36.Whereshouldinformationaboutacontrolcreatedatdesigntimebestored?
Answers:
ApplicationState
SessionState
ViewState
Noneoftheabove

37.Bywhichofthefollowingcanthe.NETclassmethodsbeincludedin.aspxfiles?
Answers:
Including.Netcodewithinthescriptelementwiththerunatattributesettoserver
Including.Netcodewithinthecodeelement
Including.Netcodeusingthe@codedirectiveonthepage
Including.Netcodewithintheexecuteattributeoftheindividualcontrol

38.WhichofthefollowingaretrueaboutNullabletypes?
Answers:
ANullabletypeisastructure.
Animplicitconversionexistsfromanynonnullablevaluetypetoanullableformofthattype.
Botha)andb)

39.WhichofthefollowingareperformedtofullydebuganASP.NETApplicationrunningonthe
samemachineasthedebugger?
Answers:
Enablingdebuginformationinthe.NETAssembly
SettingthedebugattributeofthecompilationelementtotrueintheWeb.Confile.
SettingthedebugelementoftheAspNetelementtotrueinthemachine.configfiletrue.

40.WhatdoestheOrElseoperatordo?
Answers:
ItperformsaBooleanORoperation,evaluatingbothoperands
ItperformsaBooleanORoperation,evaluatingthelefthandsideonlyiftherighthandsideisfalse
ItperformsaBooleanORoperation,evaluatingtherighthandsideonlyifthelefthandsideisfalse
Noneoftheabove

41.Inwhichofthefollowingwaysdostructuresdifferfromclasses?
Answers:
Structurescannotimplementinterfaces
Structurescannotinheritfromabasestructure
Structurescannothaveevents
Structurescannothaveoverrideablemethods

42.Whichofthefollowingisnotanunboxingconversion?
Answers:
PublicSubSample1(ByValoAsObject)DimiAsInteger=Cint(o)EndSub
PublicSubSample1(ByValvtAsValueType)DimiAsinteger=Cint(vt)EndSub
EnumeHelloWorldEndEnumPublicSubSample1(ByValetAsSystem.Enum)DimeAsE=CType(et,E)EndSub
PublicInterfaceIPropertyValue()AsIntegerEndInterfacePublicSubSample1(ByValvtAsI)DimiAsInteger=vt.Value
EndSub
PublicClassCPrivate_valueAsIntegerPublicPropertyValue()AsIntegerGetReturn_valueEndGetSet(ByValvalueAs
Integer)_value=valueEndSet

43.WhichofthefollowingoperationscanNOTbeperformedinsideacatchblock?
Answers:
Preventionofthecaughtexceptionfromleavingthecatchblock
Allowingtheoriginalexceptiontopropagateafterithasbeencaught,withalloftheinformation(includingcontext)intact
Wrappingthecaughtexceptioninsideanewlycreatedexceptionofadifferenttype
Generatinganewexceptionwithnoinformationabouttheoriginalexception
AltertheMessage,TargetSiteand/orStackTrace,oftheexistingexceptionbeforerethrowing

44.WhichofthefollowingeventsshouldbeusedforassigningaThemedynamicallytoapage?

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

6/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

Answers:
PreInit
Init
PreLoad
PreRender
Render

45.Whichofthefollowingarecommonmethodsofsupplying"Help"informationtoanASP.NET
application?
Answers:
SettingtheToolTippropertyofacontroltoastringcontainingtheinformation.
usingtheopenmethodofthebrowserwindowobjecttoopenanewbrowserwindowanddisplayahelprelatedASP.NET
page
UsingtheshowHelpmethodofthebrowserwindowobjecttodisplayatopicfromacompiledhelpfile(.chm).
Alloftheabove

46.Whichofthefollowingcodesampleswillcauseacompilationerror?
Answers:
PublicClassSampleEndClassPublicClassSample(OfT)EndClass
PublicClassSample(OfT)EndClassPublicClassSample(OfT,U)EndClass
PublicClassSample(OfTAsClass)EndClassPublicClassSample(OfTAsStructure)EndClass
PublicClassSampleEndClassPublicClassSample(OfTAsClass)EndClass

47.WhichofthefollowingcanInterfacescontain?
Answers:
methods
properties
fields
conversionoperators
events

48.WhichofthefollowingaretrueregardingvalidationinanASP.NETapplication?
Answers:
Servervalidationshouldonlybeusedwhenthereisnoclientsidevalidation.
Alldatashouldbevalidatedontheserverside.
ClientSidevalidationtypicallyprovidesafasterresponse(feedback)timethanservervalidation
Apagecannotbepostedbackunlessallclientvalidationhaspassed.

49.Whichofthefollowingarerequiredtobetruebyobjectswhicharegoingtobeusedaskeys
inaSystem.Collections.HashTable?
Answers:
TheymusthandlecasesensitivityidenticallyinboththeGetHashCode()andEquals()methods.
KeyobjectsmustbeimmutableforthedurationtheyareusedwithinaHashTable.
GetHashCode()mustbeoverriddentoprovidethesameresult,giventhesameparameters,regardlessofreference
equalitylunlesstheHashTableconstructorisprovidedwithanIEqualityComparerparameter.
EachElementinaHashTableisstoredasaKey/ValuepairofthetypeSystem.Collections.DictionaryElement
Alloftheabove

50.Whichmethodcallswillcompilethefollowingcode?
PrivateSubSample(ByValnumberAsInteger,OptionalByValboolAsBoolean=True)
EndSub
Answers:
Sample(1,True)
Sample(1)
Sample(bool:=False)
Sample(bool:=False,number:=1)
Sample(bool:=False,1)

51.Whichofthefollowingaretrueforparameters?
Answers:
Changestovalueparametersalwaysinvolvemakingacopyoftheoriginalargument

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

7/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

Itemspassedasreferenceparametersmustbeinitializedpriortothecall
Outputparametersdonotneedtobeassignedinsidethemethod
Variablelengthargumentlistsarenotsupported

52.ViawhichofthefollowingisViewStatemaintainedbydefault?
Answers:
Ahiddenvariablewithinthepagethatisincludedwitheachroundtip.
Acookiewhichresidesontheclient'scomputer
Aserversideinprocessmemorycache
InstancemembervariablesofthePageclass

53.WhenusingtheDemandmethodofSystem.Security.IPermission,whichofthefollowingwill
occur?
Answers:
ThepermissionsofthecodewhichinvokedtheDemandmethodwillbeevaluated.
Forpermissionswhichdoastackwalk,anexceptionwilloccuronlyifNONEofthecallingcodeshastherequiredpermission
Forpermissionswhichdoastackwalk,anexceptionwilloccurifANYofthecallingcodesdoesnothavetherequired
permission
Thepermissionlevelsofindividualstackframesarealwayscheckedregardlessofthepermissiontype.

54.Whichofthefollowingeventyouwilluseifyouwantanyupdatesbeforetheservercontrol
isrenderedtothepage?
Answers:
Load
LoadComplete
PreRender
Init

55.WhichofthefollowingaretrueofusingADO.NETDataSetsandDataTables?
Answers:
Theconnectiontothedatabasemustremainvalidforthelifeofthedataobjects
Alltablesinadatasetmustcomefromthesamedatabase.
AgiveninstanceofaDataTablecanbeinonlyoneDataSet
ChangesmadetomultipletableswithinaDataSetcaneasilybetransferredtoanewDataSetwhichcontainsonlythe
changes

56.Inthefollowingexample,bywhichtechniquecanthemethodTestinthederivedclassCat
accesstheimplementationofMakeNoiseinthebaseclass?
PublicClassAnimal
PublicOverridableSubMakeNoise()
EndSub
EndClass
PublicClassCat
Answers:
Onceoverriden,thebaseclassmembersareinaccessiblefromthederivedclass.
PublicSubTest()Animal.MakeNoise()EndSub
PublicSubTest()MyBase.MakeNoise()EndSub
PublicSubTest()CType(Me,Animal).MakeNoise()EndSub

57.WhatistheresultofConsole.WriteLine("{0}:{1}:{2}",CInt(2.5),CInt(1.5),Fix(1.5))?
Answers:
2:2:2
3:2:2
3:2:1
2:2:1

58.Whichofthefollowingmechanismsarenotsuitableforreturningasinglerowfroma
DataTablecontainingalargenumberofrecords?
Answers:
DataTable.Rows.Find
DataTable.Rows.Select

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

8/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

DataTable.Select
EnumeratingacrossDataTable.Rows

59.Whichofthefollowingis/aretrueaboutenums?
Answers:
Enumsarealwaysequatedtoanintegralconstantvalue
Avariableoftheenumtypewillalwayscontainoneofthedeclaredsymbolicconstant
Thedeclaredvaluesofanenumarealwaysassignedasequentialstartingwith0
Thedeclaredvaluesofanenummustbemapped(explicitlyorimplicitly)touniqueintegralvalues

60.Theearliesteventinwhichallviewstateinformationhasbeenrestoredis:
Answers:
Init
PreLoad
Load
PreRender
Render

61.WithwhichofthefollowingareDeclarativeDatabindingexpressionsdelimited?
Answers:
<%#%>
<%%>
<!>
<#>

62.Whichofthefollowingistrueaboutexceptions?
Answers:
ExceptionsshouldbederivedfromSystem.Exception,butarenotrequiredtodoso.
Ifnocatchblockisfoundforanexception,andthesourceisnotastaticconstructor,aSystem.ThreadExceptionwillbe
thrown
Mathematicalerrorssuchasdividebyzero,ornumericoverflowwillgenerateanexceptionthatisderivedfrom
System.Exception
Everythrowstatementmusthaveatleastonecatchblock

63.DateTimeStructuresissuitableforwhichofthefollowingapplications?
Answers:
Applicationsthatworkwithdatesonly.
Applicationsthatworkwithtimesonly.
Applicationsthatworkwithabstractdatesandtimes.
Alloftheabove

64.WhichofthefollowingstatementsaretrueaboutPassportAuthentication?
Answers:
Passportauthenticationallowstheuserstocreateasinglesigninnameandpasswordtoaccessanysitethathas
implementedthePassportsinglesignin(SSI)service
OncesimplementingthePassportSSI,youwon'thavetoimplementyourownuserauthenticationmechanism.
PassportauthenticationisafreeserviceforallsitesprovidedbytheMicrosoftCorporation.

65.WhenusingCascadingStyleSheets(CSS)toformatoutput,whichofthefollowingis/aretrue?
Answers:
StylescanbeappliedtoallelementshavingthesameCssClassattribute
StylescanbeappliedtospecificelementsbasedontheirIDattribute
Stylescanbeappliedtoelementsbasedontheirpositioninahierarchy
Stylescanbeusedtoinvokescriptbasedcode
Alloftheabove

66.WhichofthefollowingaccuratelydescribestheclassstructurewhenimplementinganASP.Net
pagewhichusestheCodeFileattribute?
Answers:
TheactualinstantiatedclassistheclassdefinedintheCodeFile.
TheactualinstantiatedclassisdynamicallycreatedandhasabaseclassdefinedintheCodeFile.

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

9/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

TheactualinstantiatedclassisdynamicallycreatedandhasamemberrepresentingtheclassdefinedintheCodeFile.
TheactualinstantiatedclassisdynamicallycreatedandisacoclassoftheclassdefinedintheCodeFile.

67.Whichofthefollowingis/aretrueregardingtheuseofAuthenticationtocontrolaccessto
theHTMLfile(.htm.html)?
Answers:
ASP.NETauthenticationcannotbeusedtocontrolaccess
ASP.NETauthenticationhandlesthesebydefaultinamannerequivalentto.aspxpages
Theextensioncanbeassociatedwithaspnet_isapi.dllinIISfortheappropriatedirectory
AcustomHTTPRequestprocessormustbeinstalledtoexaminetheURL'sanddeterminetheappropriateaccessrights.

68.WhichofthefollowingisaprimarycharacteristicoftheSystem.Xml.XmlDataDocument?
Answers:
ItprovidessynchronizedoperationsviewingthecontenteitherasanXmlDocumentorasaDataSet
ItprovidesthebasicabilitiesforXMLDocumentinstancestobecreatedfromorexportedtoDataSets
ItprovidesalimitedsetofcapabilitiescomparedtotheSystem.Xml.XmlDocumentclass
ItprovidesthebasicabilitiestoallowDataSetstobeloadedfromorexportedtoXMLfiles.

Recent:
Howlathemachineworkerstartedonfiverr
Frommakingstipendsonstreetsto...
Benefitsofbeingfreelancer.Short5stories
IgotfirstjobwithexperienceinGoogleReports

Popular:
Gettingyourfirstproject
Upwork(oDesk)ForBeginners
TipstocompleteUpwork(oDesk)profile

RelatedTestsAnswers:
WebServicesTest2016
ASP.Net3.5usingVBTest2016
Knowledgeof.NetFramework4.0Skills
Test2016
DotNet2.0usingVBTest2016
DotNetNukeTest2016
KnowledgeofSQLServer2008Skills

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

10/11

11/03/2016

Upwork(oDesk)testanswersASP.Net2.0usingVBTest2016.NetTechnology

Test2016
ASP.Net3.5usingC#Test2016
DotNet2.0usingC#Test2016
DotNet3.5usingC#Test2016
DotNet3.5usingVBTest2016
KnowledgeofMootoolsSkillsTest
2016

odesktests.netsince2013.Thankscamaraderieforprovidedtestanswers.Shareyourtestscoresandanswersbyanswers@odesktests.net
PLACEYOURADHERE!Emailus:ad@odesktests.net
Hindi|Bengali|Filipino|Urdu|Chinese
Sharewithfriends:

http://www.odesktests.net/odesktestanswers/nettechnology/aspnet2_0usingvbtestanswers2015.html

11/11

You might also like