0

web technology Online Quiz - 66

Description: web technology Online Quiz - 66
Number of Questions: 20
Created by:
Tags: web technology
Attempted 0/20 Correct 0 Score 0

What are the core classes of the Struts 1.3 Framework?

  1. Action

  2. ActionServlet

  3. HttpServlet

  4. Servlet

  5. None of the above


Correct Option: A,B

What are the components of Struts 1.3?

  1. Model

  2. View

  3. Controller

  4. ALL of the above

  5. None of the above


Correct Option: D

What are the core classes of the Struts 1.3 Framework?

  1. Action

  2. ActionServlet

  3. HttpServlet

  4. Servlet

  5. None of the above


Correct Option: A,B

Default Config file in Struts FrameWork?

  1. web.xml

  2. validator-rules.xml

  3. struts-config.xml

  4. application.xml


Correct Option: C

What are components under view Part?

  1. DAO Class

  2. HTML

  3. VO Class

  4. JSP

  5. Action Class


Correct Option: B,D

How you will display validation fail errors on jsp page?


Correct Option: C

Which among the following are called the Figurative Constants?

  1. Space, Spaces

  2. 66, 77, 88

  3. Zero, Zeroes

  4. None of the above


Correct Option: A,C

CODE 1 : proc sql ; title ’Oil Production/Reserves of Countries’; select p.country, barrelsperday ’Production’, barrels ’Reserves’ from sql.oilprod p, sql.oilrsrvs r where p.country = r.country order by barrelsperday desc; CODE 2: proc sql ; select p.country, barrelsperday ’Production’, barrels ’Reserves’ from sql.oilprod p inner join sql.oilrsrvs r on p.country = r.country order by barrelsperday desc; CODE 1 and CODE 2 are equivalent.True or False?

  1. True

  2. False


Correct Option: A

What is symfony?

  1. Programming Language

  2. Debugging Tool

  3. Framework

  4. None of above


Correct Option: C

What is the full form of YAML?

  1. Yet Another Marketing Language

  2. YAML Ain't Markup Language

  3. YAML HyperProcessor Text

  4. None of above


Correct Option: B

Which of the following is part of Model Layer in Symfony's MVC architecture?

  1. Database Abstraction

  2. Layout

  3. Action

  4. None of above.


Correct Option: A

Which of the following is not Symfony's Core Class?

  1. sfController

  2. sfRequest

  3. sfResponse

  4. sfConcept


Correct Option: D

$request->setParameter('bar','foo'); echo $request->getParameter('bar'); What is the output?

  1. bar

  2. foobar

  3. foo

  4. null


Correct Option: C

This action have an empty showSuccess.php template. What will be the output?

  1. public should not be there in codes

  2. Error in action.

  3. Displays showSuccess.php

  4. None of above


Correct Option: B

What is the correct way for writing the template for executeShow action?

  1. ShowSuccess.php

  2. showsuccess.php

  3. showSuccess.php

  4. None


Correct Option: C

Which of the following variable can be used directly in the template without being defined in the action?

  1. $request

  2. $sf_params

  3. $response

  4. $sf_context


Correct Option: B

Symfony supports which of the following file systems

  1. .xml

  2. .yml

  3. all of the them

  4. .ini


Correct Option: C

Symfony is written in which language?

  1. C++

  2. Java

  3. PHP

  4. none of above


Correct Option: C

How to find the size of Object in Java?

  1. By using sizeof operator

  2. By calling malloc method

  3. By calling getObjectSize method of Object

  4. None


Correct Option: D

Which of the following is not an Internet term.

  1. Cookies

  2. Spam

  3. Net nannies

  4. Brownies


Correct Option: D

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) Cookies - This option is an Internet term. Cookies are small pieces of data that are stored on a user's computer by a website to track and remember information about the user.

Option B) Spam - This option is an Internet term. Spam refers to unsolicited and unwanted messages, typically sent in bulk, often for advertising purposes.

Option C) Net nannies - This option is an Internet term. Net nannies are software programs or services that help restrict or monitor access to certain websites or content on the Internet, particularly for child safety purposes.

Option D) Brownies - This option is not an Internet term. Brownies do not have any specific relevance or association with the Internet.

The correct answer is D) Brownies. This option is not an Internet term.

- Hide questions