Tag: web technology

Questions Related to web technology

  1. a) If you use a Sequence Generator transformation, you must use a reusable Sequence Generator transformation

  2. b) You cannot include Normalizer transformation in a mapplet

  3. c) You can include target definitions in a mapplet

  4. d) You cannot include source definitions in a mapplet


Correct Option: A,B
  1. 1978

  2. 1998

  3. Perl hasn't yet been released

  4. 1988

  5. 1980


Correct Option: D

What does the following SQL statement return? Assume the value of SysDate is 05-05-5555 Select SysDate / 5 from dual

  1. 01-01-1111

  2. Error

  3. 01

  4. 1111


Correct Option: B

AI Explanation

To answer this question, let's break down the SQL statement and analyze each part:

SELECT SysDate / 5 FROM dual

The statement is using the SELECT clause to retrieve the result of the expression "SysDate / 5". The expression "SysDate" represents the current system date.

Now, let's evaluate the expression "SysDate / 5" using the given value for SysDate (05-05-5555):

SysDate / 5 = 05-05-5555 / 5 = 1111-01-01

Based on this evaluation, the result of the SQL statement would be "1111-01-01".

However, the correct answer is B) Error. This is because the division operator (/) is not applicable to date values in SQL. Therefore, attempting to divide the SysDate by 5 will result in an error.

Page directive can be declared as True or False

  1. True

  2. False


Correct Option: A
  1. /WEB-INF/classes

  2. /classes

  3. /META-INF/classes

  4. /root/classes


Correct Option: A
  1. all key value pairs are copied but in random order

  2. all key value pairs are copied in proper order

  3. all key value pairs from def may not be copied into abc

  4. syntax error


Correct Option: A