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)
Questions
What is web 2.0
- Its a new version of software after web 1.0
- Its all about web-apps making a interactive user experince.
- Its all about client side technologies Flash, Javascript, Silverlight
- Its all about using attractive designs in HTML Forms and using CSS
Which of the below websites come under web 2.0
- A information site containing all static HTML, CSS and Javascripting
- A Social Networking website
- A Bank website through which a user do all transaction
- A simple Flash website showing Products of a company
- A CMS like Joomla or phpbb
Which of the below server side languages are used to develop a dynamic website
- PHP
- JSP
- JavaScript
- ASP
- CSS
- HTML
CSS stands for
- Client Style Sheet
- Custom Style Sheet
- Cascading Style Sheet
- Common Style Sheet
Main advantage of using CSS is
- CSS helps making glossy and attractive design
- It helps in reducing bandwidth usage by having single file linking to various HTML files
- Its used to achieve background loading of content
- A single file change helps us manage the design of whole website
RSS stands for
- Really Simple Synchronization
- Readng Simple Syndication
- Really Simple Syndication
- Reading Simple Synchronization
For getting the data from server which method(s) AJAX use
- GET
- XML
- POST
- JSON
- TEXT
- HTML
AJAX supports XML but not JSON
- True
- False
AJAX is...
- a computer Language
- is a technology
- is optimizer which makes website load faster
- is a server side language
What are the methods for removing a control?
- removeChild()
- removeChildAt()
- removeItem()
- deleteAll()
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?
- public class MyButton extends Button
- public class MyButton becomes Button
- public class MyButton inherits Button
- public class MyButton implements Button
How do define an Array Collection ?
- private var arrC :ArrayCollection = new ArrayCollection([{label:"abc"},{label:"def"}]);
- private var arrC :ArrayCollection =([{label:"abc"},{label:"def"}]);
- private var arrC :ArrayCollection = new ArrayCollection([{"abc"},{"def"}]);
- private var arrC :ArrayCollection = new ArrayCollection({label:"abc"},{label:"def"});
Which tag nested inside the WebService tag block should you use
- <mx:result>
- <mx:method>
- <mx:operation>
- <mx:remoteMethod>
In which configuration file, you have to add an entry to exclude files with Particular regular expressions.
- odnodes configuration file
- odbase configuration file
- Deployment configuration file
- deploy.cfg configuration file
how much memory is allocated for a? List a = new ArrayList();
- 0
- 10
- null
- 1
OAApplicationModule and OAApplicationModuleImpl are??
- Both are Interfaces
- Both are Classes
- OAApplicationModule is a class and OAApplicationModuleImpl is an interface
- OAApplicationModule is an interface and OAApplicationModuleImpl is a class
Java EE is a
- Framework
- Language
- Compiler
- Specification
In EJB3, Entity column has been mapped by
- Annotation
- XML
- HTML
- None of the above
Java and JavaEE is a Language
- True
- False