Web Technologies and Java EE Fundamentals

Covers server-side Java EE technologies (EJB3, OA Framework), client-side web technologies (AJAX, CSS, Flex/ActionScript), and web concepts (Web 2.0, RSS)

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

What is web 2.0

  1. Its a new version of software after web 1.0
  2. Its all about web-apps making a interactive user experince.
  3. Its all about client side technologies Flash, Javascript, Silverlight
  4. Its all about using attractive designs in HTML Forms and using CSS
Question 2 Multiple Choice (Multiple Answers)

Which of the below websites come under web 2.0

  1. A information site containing all static HTML, CSS and Javascripting
  2. A Social Networking website
  3. A Bank website through which a user do all transaction
  4. A simple Flash website showing Products of a company
  5. A CMS like Joomla or phpbb
Question 3 Multiple Choice (Multiple Answers)

Which of the below server side languages are used to develop a dynamic website

  1. PHP
  2. JSP
  3. JavaScript
  4. ASP
  5. CSS
  6. HTML
Question 4 Multiple Choice (Single Answer)

CSS stands for

  1. Client Style Sheet
  2. Custom Style Sheet
  3. Cascading Style Sheet
  4. Common Style Sheet
Question 5 Multiple Choice (Multiple Answers)

Main advantage of using CSS is

  1. CSS helps making glossy and attractive design
  2. It helps in reducing bandwidth usage by having single file linking to various HTML files
  3. Its used to achieve background loading of content
  4. A single file change helps us manage the design of whole website
Question 6 Multiple Choice (Single Answer)

RSS stands for

  1. Really Simple Synchronization
  2. Readng Simple Syndication
  3. Really Simple Syndication
  4. Reading Simple Synchronization
Question 7 Multiple Choice (Multiple Answers)

For getting the data from server which method(s) AJAX use

  1. GET
  2. XML
  3. POST
  4. JSON
  5. TEXT
  6. HTML
Question 8 True/False

AJAX supports XML but not JSON

  1. True
  2. False
Question 9 Multiple Choice (Multiple Answers)

AJAX is...

  1. a computer Language
  2. is a technology
  3. is optimizer which makes website load faster
  4. is a server side language
Question 10 Multiple Choice (Multiple Answers)

What are the methods for removing a control?

  1. removeChild()
  2. removeChildAt()
  3. removeItem()
  4. deleteAll()
Question 11 Multiple Choice (Single Answer)

Define and extend an ActionScript class. You have a custom component named MyButton that inherits from Button. Which syntax is used to create a class that extends from Button?

  1. public class MyButton extends Button
  2. public class MyButton becomes Button
  3. public class MyButton inherits Button
  4. public class MyButton implements Button
Question 12 True/False

Can you define new classes or interfaces in mx:Script blocks

  1. True
  2. False
Question 13 Multiple Choice (Single Answer)

How do define an Array Collection ?

  1. private var arrC :ArrayCollection = new ArrayCollection([{label:"abc"},{label:"def"}]);
  2. private var arrC :ArrayCollection =([{label:"abc"},{label:"def"}]);
  3. private var arrC :ArrayCollection = new ArrayCollection([{"abc"},{"def"}]);
  4. private var arrC :ArrayCollection = new ArrayCollection({label:"abc"},{label:"def"});
Question 14 Multiple Choice (Single Answer)

Which tag nested inside the WebService tag block should you use

  1. <mx:result>
  2. <mx:method>
  3. <mx:operation>
  4. <mx:remoteMethod>
Question 15 Multiple Choice (Single Answer)

In which configuration file, you have to add an entry to exclude files with Particular regular expressions.

  1. odnodes configuration file
  2. odbase configuration file
  3. Deployment configuration file
  4. deploy.cfg configuration file
Question 16 Multiple Choice (Single Answer)

how much memory is allocated for a? List a = new ArrayList();

  1. 0
  2. 10
  3. null
  4. 1
Question 17 Multiple Choice (Single Answer)

OAApplicationModule and OAApplicationModuleImpl are??

  1. Both are Interfaces
  2. Both are Classes
  3. OAApplicationModule is a class and OAApplicationModuleImpl is an interface
  4. OAApplicationModule is an interface and OAApplicationModuleImpl is a class
Question 18 Multiple Choice (Single Answer)

Java EE is a

  1. Framework
  2. Language
  3. Compiler
  4. Specification
Question 19 Multiple Choice (Single Answer)

In EJB3, Entity column has been mapped by

  1. Annotation
  2. XML
  3. HTML
  4. None of the above
Question 20 True/False

Java and JavaEE is a Language

  1. True
  2. False