web technology Online Quiz - 47
web technology Online Quiz - 47
Questions
Consider the following:// SET GROUP=TBIS,DIV=USR,SUBJ=JCL,TYPE=DATA,NMBR=1Which of the following structures containing symbolic parameters will result in:TBISUSR.JCLCRS.DATA1?
- &GROUP&DIV.&SUBJCRS.&TYPE&NMBR
- &GROUP&DIV..&SUBJ.CRS.&TYPE&NMBR
- &GROUP.&DIV..&SUBJ.CRS.&TYPE.&NMBR.
- &GROUP.&DIV..&SUBJ.CRS..&TYPE.&NMBR.
A foreign key is :
- Specified in the definition of a referential constraint.
- A part of the definition of a table.
- A unique key
- None of the above
Which is wrong??
- Volume testing is a way to test functionality.
- Stress testing is a way to test reliability.
- GUI Testing; Data Base Testing; Syntax Checking ; Structure Investigation ; is the type of dynamic Testing.
- unit, integration, regression, are the Type of white box testing.
Minimum Size of Virtual Memory is..
- RAM Size * 1.5
- RAM Size * 2
- Initial Size * 1.5
- Initial Size * 2
Which gaming console released the Lips Karaoke game?
- Xbox 360
- PS2
- WII
- GAMEBOY
where was the first GUI developed?
- Xerox PARC
- Apple lisa
- Atari ST
- Commodore Amiga
Popular site owned by Obvious corp
- Orkut
- Facebook
- Twitter
- Hi5
Kindle is an e-book reader by
- Ebay
- Paypal
- Barnes & Noble
- Amazon
who started the 'Free software Foundation'?
- Charles Kane
- Nicholas Negroponte
- Larry Ellison
- Richard Stallman
The launch of which product led Cisco to file a trademark infringement case against Apple
- Kindle
- iPhone
- iMac
- iPod
COMPAQ is short for
- Comparison and Quake
- Computer and Aqua
- Command and Program
- Compatibility and Quality
which company filed a $1 billion lawsuit against Google for not filtering the copyrighted contents on YouTube
- Yahoo
- Apple
- Viacom
- Sony
which OS is sponsored by Canonical Ltd?
- Tiger
- Solaris
- Unix
- Ubuntu
Which input device works in the basis of the capacitive shunt method or the matrix approach
- Laptop Touchpad
- Stylist
- USB
- Tape Drive
The different scope values for jsp:useBean are
- page
- forward
- session
- application
What are the valid struts-config tags?
- <config>
- <global-exceptions>
- <controller>
- <action>
Will the finally block still execute,when a return statement is written at the end of the try block?
- True
- False
Which method is used to create the daemon thread?
- initDaemon
- createDaemon
- setDaemon
- runDaemon
The different ways of using Thread?
- By implementing Runnable Interface.
- By inheriting from the Runnable Interface.
- By implementing the Thread Class.
- By inheriting from the Thread class.
For which one of the following reasons would a builder use StringBuilder over string?
- Due to its nature as a reference type, StringBuilder has a smaller footprint than string,thereby allowing more efficent memory management.
- StringBuilder is inherently more efficent due to its nature as a reference type comparedto string, which is a value type
- StringBuilder allows for dynamic appending of types; string creates a new string every time it is appended to.
- StringBuilder has the ability to accept objects other than string in order to build a string by automatically calling the ToString method on the object.
- Regular expressions are built into StringBuilder, allowing for much more efficent text processing than what could usually be achieved by using a string.