Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us

 Home

 Search

Latest Brain Dumps

 BrainDump List

 Certifications Dumps

 Microsoft

 CompTIA

 Oracle

  Cisco
  CIW
  Novell
  Linux
  Sun
  Certs Notes
  How-Tos & Practices 
  Free Online Demos
  Free Online Quizzes
  Free Study Guides
  Free Online Sims
  Material Submission
  Test Vouchers
  Users Submissions
  Site Links
  Submit Site

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Online Training Demos and Learning Tutorials for Windows XP, 2000, 2003.

 

 

 

 





Braindumps for "HP0-045" Exam

Supporting the ESL E-Series Libraries

 Question 1.
What happens if the device firmware update process is interrupted?

A. It will restart after the device is rebooted.
B. The device will return to the older firmware version.
C. The device can become inoperable and require physical repair.
D. It will continue when the firmware update program is restarted.

Answer: C

Question 2.
If Command View TL is not available, what can be used to access the log files in the Interface Manager card?

A. Telnet
B. Perl scripts
C. anonymous FTP
D. a serial connection

Answer: C

Question 3.
What is important to remember when changing from Manual to Automatic mode of the Interface Manager?

A. All drives must be taken offline.
B. Fibre Channel cables must be unplugged.
C. Interface controllers must be powered off first.
D. Any customizations created in Manual mode will be lost.

Answer: D

Question 4.
How can you test the communication between the management station and any selected Interface Manager card in an ESL E-Series library from Command View TL?

A. Run the checkIM command in the CLI.
B. Select Support Tab > Tools > Open the Interface Manager Check dialog box.
C. Select Actions > Connectivity Check to open the Connectivity Check dialog box.
D. Select Support Tab > Communication Check to open the Communication Check dialog box.

Answer: C

Question 5.
Which screen in Command View ESL shows the number of full mail slots in use?

A. Inventory
B. Health Summary
C. Slot Configuration
D. Component Status

Answer: A

Question 6.
Which port number is required when starting a Command View TL session?

A. 2301
B. 4095
C. 4444
D. 5555

Answer: B

Question 7.
You are performing a firmware upgrade using Command View TL and a Telnet session terminates it prematurely. 

What is the most likely outcome?

A. The Telnet session is automatically aborted.
B. Telnet automatically aborts the other session, but the upgrade continues.
C. Command View TL takes precedence and continues the firmware upgrade.
D. The firmware upgrade aborts and the device being upgraded may need physical repair.

Answer: D

Question 8.
What does the cabinet controller assembly of an ESL E-Series tape library provide a SCSI interface to?

A. tape devices
B. library robotics
C. management interface card
D. e2400-160 Interface Controller

Answer: B

Question 9.
Which capabilities of a TCP/IP connection are delivered by the Simple Internet Protocol Plus (SIPP)?

A. small packets and ECC
B. error handling and retries
C. increased bandwidth and performance
D. faster command propagation on inexpensive copper interconnect

Answer: B

Question 10.
For which connection, other than the cabinet controller, is the I2C network cable used?

A. external LANs
B. cluster controllers
C. interface management cards
D. Fibre Channel interface controllers

Answer: B


Google
 
Web www.certsbraindumps.com


Braindumps: Dumps for 70-551 Exam Brain Dump

Study Guides and Actual Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA


Advertise

Submit Braindumps

Forum

Tell A Friend

    Contact Us





Braindumps for "70-551" Exam

UPGRADE: MCAD Skills to MCPD Web Developer by Using the Microsoft .NET Framework

 Question 1.
You write the following custom exception class named CustomException.
public class CustomException : ApplicationException {
public static int COR_E_ARGUMENT = unchecked((int)0x80070057);
public CustomException(string msg) : base(msg) {
HResult = COR_E_ARGUMENT;
}}

You need to write a code segment that will use the CustomException class to immediately return control to the COM caller. You also need to ensure that the caller has access to the error code. 

Which code segment should you use?

A. return Marshal.GetExceptionForHR ( CustomException.COR_E_ARGUMENT);
B. return CustomException.COR_E_ARGUMENT;
C. Marshal.ThrowExceptionForHR( CustomException.COR_E_ARGUMENT);
D. throw new CustomException ("Argument is out of bounds");

Answer: D

Question 2.
You create a class library that is used by applications in three departments of Company.com. The library contains a Department class with the following definition.
public class Department {
public string name;
public string manager;
}

Each application uses a custom configuration section to store department-specific values in the application configuration file as shown in the following code.

Hardware
Company


You need to write a code segment that creates a Department object instance by using the field values retrieved from the application configuration file. 

Which code segment should you use?

A. public class deptElement : ConfigurationElement {
    protected override void DeserializeElement(
    XmlReader reader, bool serializeCollectionKey) {
    Department dept = new Department();
    dept.name = ConfigurationManager.AppSettings["name"];
    dept.manager =
    ConfigurationManager.AppSettings["manager"];
    return dept;
    }
    }
B. public class deptElement: ConfigurationElement {
    protected override void DeserializeElement(
    XmlReader reader, bool serializeCollectionKey) {
    Department dept = new Department();
    dept.name = reader.GetAttribute("name");
    dept.manager = reader.GetAttribute("manager");
    }
    }
C. public class deptHandler : IConfigurationSectionHandler {
    public object Create(object parent, object configContext,
    System.Xml.XmlNode section) {
    Department dept = new Department();
    dept.name = section.SelectSingleNode("name").InnerText;
    dept.manager =
    section.SelectSingleNode("manager").InnerText;
    return dept;
    }
    }
D. public class deptHandler : IConfigurationSectionHandler {
    public object Create(object parent, object configContext,
    System.Xml.XmlNode section) {
    Department dept = new Department();
    dept.name = section.Attributes["name"].Value;
    dept.manager = section.Attributes["manager"].Value;
    return dept;
    }
    } 

Answer: C

Question 3.
You write the following custom exception class named CustomException.
public ref class CustomException : ApplicationException {public:
literal int COR_E_ARGUMENT = (int)0x80070057;
CustomException(String^ msg) : ApplicationException(msg)
{
HResult = COR_E_ARGUMENT;
}};

You need to write a code segment that will use the CustomException class to immediately return
control to the COM caller. You also need to ensure that the caller has access to the error code.

Which code segment should you use?

A. return Marshal::GetExceptionForHR( CustomException::COR_E_ARGUMENT);
B. return CustomException::COR_E_ARGUMENT;
C. Marshal::ThrowExceptionForHR( CustomException::COR_E_ARGUMENT);
D. throw gcnew CustomException("Argument is out of bounds");

Answer: D

Question 4.
You are writing a method to compress an array of bytes. The array is passed to the method in a parameter named document. You need to compress the incoming array of bytes and return the result as an array of bytes. 

Which code segment should you use?

A. MemoryStream^ strm = gcnew MemoryStream(document);
    DeflateStream^ deflate = gcnew DeflateStream(strm,
    CompressionMode::Compress);
    array^ result = gcnew array(document->Length);
    deflate->Write(result, 0, result->Length);
    return result;
B. MemoryStream^ strm = gcnew MemoryStream(document);
    DeflateStream^ deflate = gcnew DeflateStream(strm,
    CompressionMode::Compress);
    deflate->Write(document, 0, document->Length);
    deflate->Close();
    return strm->ToArray();
C. MemoryStream^ strm = gcnew MemoryStream();
    DeflateStream^ deflate = gcnew DeflateStream(strm,CompressionMode::Compress);
    deflate->Write(document, 0, document->Length);
    deflate->Close();
    return strm->ToArray();
D. MemoryStream^ inStream = gcnew MemoryStream(document);
    DeflateStream^ deflate = gcnew DeflateStream(inStream,
    CompressionMode::Compress);
    MemoryStream^ outStream = gcnew MemoryStream()
    int b;
    while ((b = deflate->ReadByte()) != -1) {
    outStream->WriteByte((Byte)b);
    }
    return outStream->ToArray();
   
Answer: C

Question 5.
You are writing a custom dictionary. The custom-dictionary class is named MyDictionary. 

You need to ensure that the dictionary is type safe.

Which code segment should you use?

A. public ref class MyDictionary : public Dictionary{};
B. public ref class MyDictionary : public Hashtable{};
C. public ref class MyDictionary : public IDictionary{};
D. public ref class MyDictionary{};
    Dictionary t = gcnew Dictionary();
    MyDictionary dictionary = (MyDictionary)t;

Answer: A

Question 6.
You develop a service application named FileService. You deploy the service application to multiple servers on your network. You implement the following code segment. (Line numbers are included for reference only.)
01 public :
02 void StartService(String^ serverName){
03
04 ServiceController^ crtl = gcnew
05 ServiceController("FileService");
06 if (crtl->Status == ServiceControllerStatus::Stopped){}
07 }

You need to develop a routine that will start FileService if it stops. The routine must start FileService on the server identified by the serverName input parameter.

Which two lines of code should you add to the code segment? (Each correct answer presents part of the solution. Choose two.)

A. Insert the following line of code between lines 03 and 04:crtl.ServiceName = serverName;
B. Insert the following line of code between lines 03 and 04:crtl.MachineName = serverName;
C. Insert the following line of code between lines 03 and 04:crtl.Site.Name = serverName;
D. Insert the following line of code between lines 04 and 05:crtl.Continue();
E. Insert the following line of code between lines 04 and 05:crtl.Start();
F. Insert the following line of code between lines 04 and 05:crtl.ExecuteCommand(0);

Answer: B, E

Question 7.
You are loading a new assembly into an application. You need to override the default evidence for the assembly. You require the common language runtime (CLR) to grant the assembly a permission set, as if the assembly were loaded from the local intranet zone.

You need to build the evidence collection. 

Which code segment should you use?

A. Evidence^ evidence = gcnew Evidence(Assembly::GetExecutingAssembly()->Evidence);
B. Evidence^ evidence = gcnew Evidence();
    evidence->AddAssembly(gcnew Zone(SecurityZone::Intranet));
C. Evidence^ evidence = gcnew Evidence();
    evidence->AddHost(gcnew Zone(SecurityZone::Intranet));
D. Evidence^ evidence = gcnew Evidence(AppDomain::CurrentDomain->Evidence);

Answer: C

Question 8.
You are developing an application for a client residing in Hong Kong.
You need to display negative currency values by using a minus sign. 

Which code segment should you use?

A. NumberFormatInfo^ culture = gcnew CultureInfo("zh-HK")::NumberFormat;
    culture->NumberNegativePattern = 1;
    return numberToPrint->ToString("C", culture);
B. NumberFormatInfo^ culture = gcnew CultureInfo("zh-HK")::NumberFormat;
    culture->CurrencyNegativePattern = 1;
    return numberToPrint->ToString("C", culture);
C. CultureInfo^ culture = gcnew CultureInfo("zh-HK");
    return numberToPrint->ToString("-(0)", culture);
D. CultureInfo^ culture = gcnew CultureInfo("zh-HK");
    return numberToPrint->ToString("()", culture);
 
Answer: B

Question 9.
You are creating a Web Form. The Web Form allows users to rename or delete products in a list.

You create a DataTable named dtProducts that is bound to a GridView. DataTable has the following four rows.

dtProducts.Rows(0)("ProductName") = "Soap"
dtProducts.Rows(1)("ProductName") = "Book"
dtProducts.Rows(2)("ProductName") = "Computer"
dtProducts.Rows(3)("ProductName") = "Spoon"
dtProducts.AcceptChanges()

The user utilizes a Web Form to delete the first product. You need to set the RowStateFilter property of the DataTables DefaultView so that only products that have not been deleted are shown. 

To which value should you set the DataTabless DefaultView.RowStateFilter?

A. DataViewRowState.ModifiedOriginal
B. DataViewRowState.ModifiedCurrent
C. DataViewRowState.CurrentRows
D. DataViewRowState.Added

Answer: C

Question 10.
You create a Web Form that contains a TreeView control. The TreeView control allows users to navigate within the Marketing section of your Web site. The following XML defines the site map for your site.












You need to bind the TreeView control to the site map data so that users can navigate only within the Marketing section. 

Which three actions should you perform? (Each correct answer presents part of the solution. Choose three.)

A. Add a SiteMapDataSource control to the Web Form and bind the TreeView control to it.
B. Add a SiteMapPath control to the Web Form and bind the TreeView control to it.
C. Embed the site map XML within the SiteMap node of a Web.sitemap file.
D. Embed the site map XML within the AppSettings node of a Web.config file.
E. Set the StartingNodeUrl property of the SiteMapDataSource control to ~/Marketing.aspx.
F. Set the SkipLinkText property of the SiteMapPath control to Sales.

Answer: A, C, E



Google
 
Web www.certsbraindumps.com


Study Guides and Real Exam Questions For Oracle OCP, MCSE, MCSA, CCNA, CompTIA





              Privacy Policy                   Disclaimer                    Feedback                    Term & Conditions

www.helpline4IT.com

ITCertKeys.com

Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.