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 "310-110" Exam

Certified Mobile Application Developer for the Java 2 Platform, Micro Edition

 Question 101.
Given a MIDP 2.0 device supports alpha blending, a MID let needs to render semi-transparent images of size 10x10 pixels. However, these images need to be generated at runtime. That is, they CANNOT be loaded as PNGs.

What is the correct way to create a 10x10 red semi-transparent image, using only the MIDP2.0 API?

A. use create Image ( ) to create a mutable Image, then fill it with red pixels.
B. Use create RGB Image ( ) to create an immutable Image from ARGB data with the desired 
     values.
C. Use create Image ( ) to create mutable Image; first fill it with pixels, then fill it with red pixels.
D. This is not possible. An Image with semi-transparency CANNOT be created at runtime.

Answer: B

Question 102.
Given:
50. class My Game Canvas extends Canvas {
51. / /...
60. public My Game Canvas ( ) {
61. int width1 = get Width ( );
62. int width1 = get Height ( );
63. / / ...
71. / / ...
82. / / ...
90. }

What is true about width1, hieght1 and width2, height2?

A. width is always equal to width2.
B. Height is always equal to height2.
C. The call to set Full Screen Mode ( ) is ignored because the dimensions have already been set.
D. The system tries to provide maximum visible area to the MID let and these dimensions are 
     width2,height2.

Answer: D

Question 103.
Which two are true for List? (Choose two)

A. Images and text in a List CANNOT be changed once the List is created.
B. You can add Command objects to a List without registering a Command Listener.
C. Traversing and scrolling in a List cause events that can be programmatically detected.
D. A Command Listener must be registered for the application to recognize user selection in a 
     List.

Answer: B, D

Question 104.
Given:
12. canvas, repaint {x1,y1,wd,ht};
13. canvas. Repaint {x2,y2,wd,ht};
14. canvas. Service Repaints ( );

Which two are true? (Choose two)

A. service Repaints ( ) blocks waiting for paint ( ) to return.
B. Paint ( ) is always called twice, once for each repaint ( ) request
C. If the two regions specified in repaint ( ) overlap, repaint ( ) may attempt to paint the union of 
     the two areas.
D. Paint ( ) is called three times, once for each repaint ( ) and once for service Repaints ( ).

Answer: A, C

Question 105.
How are labels for Command objects displayed to the user?

A. The device shows either the short or the long label.
B. The long label is only for description and is never displayed.
C. Both short and long labels are always available for the user to view.
D. The short label is always available to view, while the long label may be displayed occasionally.

Answer: A

Question 106.
Exhibit: *** MISSING ***

Given:
* The MID let is executed.
* The MID let is paused and resumed two times.

What is the result?

A. c: 0
B. c: 1
C. c: 2
D. c: 3
E. An exception is thrown at runtime

Answer: D

Question 107.
Which two can the developer define for a Text Field? (Choose two)

A. font
B. cplor
C. shape
D. input constants
E. maximum number of characters

Answer: D, E

Question 108.
Which two methods are available in both the low-level and high-level APIs? (Choose two)

A. is Shown ( )
B. get Tiles ( )
C. get Layout ( )
D. set Full Screen Mode ( )

Answer: A, B

Question 109.
Exhibit: *** MISSING **
Which two are true assuming this method is in a MID let? (Choose two)

A. The user can select more than one type of chocolate.
B. The Chocolate Prefs choice is never displayed to the user.
C. Compilation fails due to a problem with code related to event handling.
D. Anonymous inner classes must NOT be used as event handlers within a MID let.
E. An exception occurs at runtime due to a problem related to the event handling code.
F. The text "you made a choice" is displayed immediately after the user makes a selection.

Answer: A, F

Question 110.
Exhibit: *** MISSING **

The red collision rectangle around each Sprite in the image is NOT part of the actual image. The two Sprite objects intersect in the application precisely as shown.

Which two are true? (Choose two)

A. For the two Sprite objects to be considered in collision, each Sprite must have no more than 
    one frame.
B. For the two Sprite objects to be considered in collision, collides With ( 0 ) must be invoked on 
    both objects.
C. The most efficient way to detect collision is to use collision detection based solely on the 
     collision rectangles.
D. If Sprite 1 is being tested for collision with Sprite 2 using pixel-level collision detection, the two 
    Sprite objects will NOT be in collision.

Answer: C, D

Question 111.
The developer is designing a game that uses the Layer Manager and Sprite classes. Three Sprite objects are added to a Layer Manager object and a call is placed to the Layer Manager. Paint (Graphics, x , y)method.

In what order are the Sprite objects rendered to the device display?

A. The Sprites are rendered in a random order.
B. The Sprite that are animated are rendered first.
C. The Sprites are rendered in order of descending index.
D. The Sprites are RENDERED IN AN IMPLEMENTATION SPECIFIC MANNER.

Answer: C

Question 112.
A mobile application developer is trying to increase the performance of game using the MIDP Game API.

Which two are legal, valid approaches that fulfill the developer's goal? (Choose to)

A. poll for key states only when necessary
B. restrict the number of frames per Sprite to one
C. base collision detection on rectangle boundaries.
D. Implement key Pressed ( ), key Released ( ), and key Repeated ( );
E. Always ensure that the view window is larger than the visible screen.

Answer: A, C

Question 113.
Given a class named My Canvas, Which three CANNOT be used if My Canvas is a direct subclass of canvas?

A. flush Graphics ( );
B. is Double Buffered ( );
C. Sprite s = new Sprite (an Image, 20, 20);
D. game Action = get Game Action (key Code) { }
E. public My Canvas (boolean t ) { super (true);
    }
F. key States = get Key States ( );
    if ( (key States & LEFT_PRESED) ! = 0) { }

Answer: A, B, C

Question 114.
What is the minimum number of simultaneously running threads that a JTWI 1.0 device must support for each MID let suite?

A. 1
B. 3
C. 10
D. two running threads for each class of the MIS let suite.

Answer: C

Question 115.
Which Image format (s) must to be supported by a JTWI 1.0 compliant device Image object creation?

A. PNG only
B. JPEG and GIF
C. TIFF and PNG
D. PNG AND JPEG
E. All formats

Answer: D

Question 116.
Which two specifications are mandatory in JTWI 1.0? (Choose two)

A. MIDP 2.0
B. WMA 1.0
C. WMA 1.1
D. MMAPI 1.1
E. Location API

Answer: A, C

Question 117.
Which two are true regarding a device that implements JTWI? (Choose two)

A. The device may implement a higher version of the API as identified by the JTWI specification
B. The device must implement the highest version of the API as identified by the JTWI 
    specification
C. The device must implement at least the lowest version of the API as identified by the MIDP 2.0 
    specification

Answer: A, C

Question 118.
A Player plays a sound after start ( 0 is called.

Which is the most efficient way to pause the playback so that it may be started as soon as possible when required?

A. call stop ( ) on the player
B. call close ( ) on the player
C. call set Rate ( 0) on the player
D. call System. gc ( ) to collect those resources marked for garbage collection

Answer: A

Question 119.
Obscure is a content type unsupported on a device that executes:
10 string locator = http://foobar.sun.com/content.obscure;
11. Player Player = Manager. Create Player (locator);

Which is true?

A. player is set to null.
B. An exception is thrown at runtime
C. The file is interpreted as an ASCII file.
D. The file is interpreted as an HTML file.

Answer: B

Question 120.
Wav is a content type supported on a device that executes:
9. Player p:
10. p = Manager, create Player (
11. p.prefetch ( );

Which is true?

A. The result is device-dependent
B. Sound. wav is played on the device
C. An exception is generated at runtime
D. No exception is thrown at runtime. No sound is played.

Answer: D


Google
 
Web www.certsbraindumps.com


Braindumps: Dumps for EE0-515 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 "EE0-515" Exam

FirePass v6

 Question 1.
Which statement is FALSE about an EndPoint security Protected Configuration?

A. All resources are protected by at least one pre-logon check
B. Different resources can be protected by different pre-logon checks
C. Resources can be required to pass more than one pre-logon check
D. Within one pre-logon sequence some checks can be used to protect resources and other 
    checks can restrict access to the logon screen

Answer: A

Question 2.
Which statement is true regarding Portal Access: Access Control Lists?

A. ACL's can be applied to the Master Group and Favorites.
B. ACL's can prevent favorites from being viewable from the Webtop.
C. ACL's require that an Active X component be downloaded and installed automatically when 
    the user clicks on a favorite.
D. Un-checking "show administrator defined favorites only" on the Master Group settings page 
    will allow the user to browse to any URL regardless of the configured ACL's.

Answer: A

Question 3.
Based on the pre-logon sequence in the exhibit, 
 
Which two statements are true? (Choose two.)

A. If the file c:\logon.txt exists, and the process calc.exe is not running, the client will be presented 
    with a logon screen.
B. If the file c:\logon.txt exists, and the process calc.exe is not running, the client will be logged 
    into the FirePass controller.
C. If the file c:\logon.txt does not exist, and the process calc.exe is running, the client will be 
    presented with a logon screen.
D. If the file c:\logon.txt does not exist, and the process calc.exe is not running, the client will be 
    presented with a logon screen.
E. If the file c:\logon.txt does not exist, and the process calc.exe is running, the client will be 
    logged into the FirePass controller.
F. If the file c:\logon.txt does not exist, and the process calc.exe is not running, the client will be 
    logged into the FirePass controller.

Answer: A, C

Question 4.
If a working Active / Standby pair of FirePass Controllers has been configured correctly for Failover, which observation by itself would allow the Admin to tell which FirePass box is is the Active member of the pair?

A. https:///admin/ / Welcome screen says "In Failover Active Mode".
B. https:///admin/ / Welcome screen says "In Failover Active 
    Mode".
C. https:///admin/ / Current Settings screen option Current Failover 
    Status set to "Active".
D. https:///admin/ / Current Settings screen option Current 
    Failover Status set to "Active".

Answer: B

Question 5.
A backup or restore of the FirePass configuration can be accomplished in which way?

A. A backup file is automatically saved to the FirePass hard-drive each night by default.
B. A backup file may be saved to a local PC using the web configuration Admin console.
C. A backup file may be saved to the local PC using the command line "maintenance" script.
D. A backup file may be saved to the FirePass hard-drive using the web configuration Admin 
    console.
E. A backup file may be saved to the FirePass hard-drive using the command line "maintenance" 
    script.

Answer: B

Question 6.
Which statement is true for users in a group when the "Show administrator-defined favorites only" option is enabled?

A. They cannot configure their own user favorites.
B. They only see links setup by the FirePass Admin and can access other sites with sufficient 
    privileges.
C. They see links setup by the FirePass Admin and links to web servers on the same network as 
    FirePass.
D. They only see links setup by the FirePass Admin but can access other sites by typing in the 
    web-site address.

Answer: A

Question 7.
Which two sequences include the "required" steps, in the correct order, for configuring Failover on the FirePass Controller? (Choose two.)
1.restart First (Primary)
2.restart Second (Secondary)
3.enable Failover option on First
4.enable Failover option on Second
5.configure virtual IP Address on First
6. configure virtual IP Address on Second

A. 3, 1, 5, 4, 2, 6
B. 3, 1, 4, 2, 5, 6
C. 3, 1, 5, 1, 4, 2, 6, 2
D. 3, 1, 4, 2, 5, 1, 6, 2
E. 5, 1, 3, 1, 6, 2, 4, 2
F. 5, 1, 6, 2, 3, 1, 4, 2

Answer: C, D

Question 8.
Which is a valid way to tell whether the Admin is connected to the Master as opposed to the Slave Node in a cluster of FirePass Controllers?

A. Admin console / Clustering option is absent.
B. Admin console / Clustering option is present.
C. Admin console / Portal Access option is present.
D. Admin console / Network Access option is present.

Answer: C

Question 9.
Which statement is true about the Failover Synchronization process on FirePass?

A. The configuration is synched from Active to Standby automatically.
B. The configuration is synched from Standby to Active automatically.
C. The Synchronization process can be configured using a virtual IP Address.
D. The configuration is synched from Active to Standby manually by an Administrator.
E. The configuration is synched from Standby to Active manually by an Administrator.

Answer: A

Question 10.
Which three types of applications are supported by the Application Access Legacy Host feature on FirePass? (Choose three.)

A. TN3270 access to mainframe
B. TN3270 ssh access to mainframe
C. TN5250 access to IBM AS/400 systems (System i)
D. Java client download for VT100 ssh access to Unix Host
E. full featured ActiveX client download for VT100 ssh access to Unix Host

Answer: A, C, D


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.