Spring/Spring Mcq Set 2 Sample Test,Sample questions

Question:
 Alternative annotative way to specify precedence of aspects?

1.@Order

2.@Aspect

3.@PointCut

4.none of the mentioned

Posted Date:-2022-01-02 17:28:51


Question:
 Expressions which returns Parameters of pointcuts?

1. target

2.args

3.none of the mentioned

4.all of the mentioned

Posted Date:-2022-01-02 17:47:33


Question:
 How to introduce counter field to original bean class?

1.Using Spring AOP

2. Implementing interface

3.AspectJ Pointcut

4. None of the mentioned

Posted Date:-2022-01-02 18:05:52


Question:
 In introduction advice you have to modify class to introduce new methods

1.True

2.False

3.error

4.None of these

Posted Date:-2022-01-02 17:58:54


Question:
 Introduction advice helps in implementing multiple inheritance

1.True

2.False

3.error

4.None of these

Posted Date:-2022-01-02 17:58:26


Question:
 Pointcuts can be composed using:-

1.org.springframework.aop.support.Pointcuts class

2.composablePointcut class

3.all of the mentioned

4.none of the mentioned

Posted Date:-2022-01-02 17:52:10


Question:
 Tag used to declare aspects

1.aop:config

2.aop:auto-proxy

3.aop:autowire

4.None of the mentioned

Posted Date:-2022-01-02 18:06:46


Question:
 Which interface is used to listen to certain events

1. ApplicationListener

2.ContextListener

3.EventListener

4.none of the mentioned

Posted Date:-2022-01-02 16:47:30


Question:
 Which method provided by ExecutorService is used to check whether job is finished or cancelled

1.Future.isDone()

2.Future.isCancelled()

3. None of the mentioned

4.all of the mentioned

Posted Date:-2022-01-02 17:05:13


Question:
Annotation used to declare an introduction

1.Before

2. After

3.@DeclareParents

4.none of the mentioned

Posted Date:-2022-01-02 18:02:45


Question:
Annotation used to refer poincuts?

1.@Pointcut

2.@PointcutExecution

3.@PointcutBefore

4.none of the mentioned

Posted Date:-2022-01-02 17:44:31


Question:
Are logical operators valid in pointcut expressions?

1.Yes

2.No

3.error

4.none of the mentioned

Posted Date:-2022-01-02 17:49:40


Question:
Attribute used to specify implementation class

1. no such attribute

2.defaultImpl

3. defaultInterface

4.defaultImplement

Posted Date:-2022-01-02 18:03:38


Question:
For a property editor to be searched correctly, it must be located in the same package as the target class, and the name must be Editor’s name

1. True

2.False

3.error

4.None of these

Posted Date:-2022-01-02 17:00:16


Question:
How does an Introduction advice do this in Spring?

1.dynamic proxy

2. web proxy

3.implements org.springframework.net.bundle interface

4.none of the mentioned

Posted Date:-2022-01-02 18:00:39


Question:
How to keep track of the usage of your beans

1.Calling Count

2. Last modified date

3.New Interface to your object

4. All of the mentioned

Posted Date:-2022-01-02 18:05:15


Question:
Is the following pointcut expression correct?
execution(* ArithmeticCalculator.*(..))

1. Yes

2.No

3.If every target class is in same package

4.Depends where target class is located

Posted Date:-2022-01-02 17:45:57


Question:
Language used to set various kinds of join points

1.AspectJ pointcut language

2. Java pointcut language

3.XML pointcut language

4. None of the mentioned

Posted Date:-2022-01-02 17:45:06


Question:
Method provided by ExectuorService which returns a Future < T >

1. submit

2.publish

3. addService

4.registerService

Posted Date:-2022-01-02 17:02:56


Question:
Method that converts string into a property value

1. getAsText

2. setAsText

3.regText

4.none of the mentioned

Posted Date:-2022-01-02 16:56:23


Question:
Method which checks if all target classes are matched

1.matches()

2.pair()

3.matchTargetClass()

4.none of the mentioned

Posted Date:-2022-01-02 17:50:56


Question:
Method which converts property into a string value

1.getAsText

2. setAsText

3.regText

4.none of the mentioned

Posted Date:-2022-01-02 16:56:01


Question:
Method which returns the highest priority of aspect’s join point?

1.getHighestPriority

2.getOrder

3.getHighOrder

4. getPriority

Posted Date:-2022-01-02 17:29:31


Question:
Pointcut used to parse an AspectJ pointcut expression string

1.org.springframework.aop.aspectj.AspectJExpressionPointcut

2.org.springframework.aop.aspectj.AspectJExpressionPointcutString

3. org.springframework.aop.aspectj.AspectJExpressionString

4.org.springframework.aop.aspectj.AspectJPointcuttoString

Posted Date:-2022-01-02 17:56:43


Question:
Spring supports operations on pointcuts:-

1. notably

2.union

3.intersection

4.all of the mentioned

Posted Date:-2022-01-02 17:51:30


Question:
Tag used to enable AspectJ annotation?

1.Introduction

2.aop:aspectj-autowire

3.aop:aspectj-autoproxy

4.AfterSpecial

Posted Date:-2022-01-02 18:10:30


Question:
Tag which defined Spring AOP configurations

1. aop:config

2.aop:configregister

3. aop:configbeans

4.none of the mentioned

Posted Date:-2022-01-02 18:11:54


Question:
The property value is retrieved by:-

1.getValue method

2.setValue method

3.none of the mentioned

4. All of the mentioned

Posted Date:-2022-01-02 16:59:43


Question:
What are the ways to create custom Property Editors?

1. implement PropertyEditor interface

2. extend PropertyEditorSupport Class

3.none of the mentioned

4. All of the mentioned

Posted Date:-2022-01-02 16:55:12


Question:
What will be the output of the code snippet?

    import org.aspectj.lang.annotation.Aspect;
    import org.aspectj.lang.annotation.AfterThrowing;
 
    @Aspect
    public class AfterThrowingExample 
    {
 
	  @AfterThrowing(
	    pointcut="com.xyz.myapp.SystemArchitecture.dataAccessOperation()",
	    throwing="ex")
	  public void doRecoveryActions(DataAccessException e)
          {
		throw new IllegalArgumentException();
	    // ...
	  }
 
    }

1. Runtime Error

2.IllegalArgumentException

3.BeanCreation Exception

4.none of the mentioned

Posted Date:-2022-01-02 17:39:03


Question:
Which advice combines all advices into one?

1.@Before

2.@After

3. @AfterThrowing

4.none of the mentioned

Posted Date:-2022-01-02 17:25:40


Question:
Which advice is executed once a joint point finishes?

1.@Before

2.@After

3.@AfterReturning

4. @AfterThrowing

Posted Date:-2022-01-02 17:22:20


Question:
Which advice is executed only when joint point returns or throws an exception?

1. @Before

2.@After

3. @AfterReturning

4. @AfterThrowing

Posted Date:-2022-01-02 17:23:43


Question:
Which event is provoked when web request comes into action

1. ContextClosedEvent

2. ContextStoppedEvent

3.SessionEvent

4.RequestHandledEvent

Posted Date:-2022-01-02 16:48:43


Question:
Which instantiation model is supported by AspectJ?

1.perthis

2. pertarget

3.none of the mentioned

4.all of the mentioned

Posted Date:-2022-01-02 17:40:22


Question:
Which interface is implemented to specify precedence of aspects?

1. Ordered

2.ApplicationAspect

3.AspectPointcut

4.none of the mentioned

Posted Date:-2022-01-02 17:28:17


Question:
Which interface is used to create your own property editors?

1.CustomEditorConfigurer

2.RegisterCustomEditor

3.PropertyEditorConfigurer

4.none of the mentioned

Posted Date:-2022-01-02 16:53:21


Question:
Which method is used to publish your own custom event

1. contextPublish

2. publishEvent

3.applicationEventPublish

4.addEvent

Posted Date:-2022-01-02 16:47:53


Question:
Which of the following class’s instance is used by TimerTaskExecutor for managing jobs

1.java.util.Timer

2. java.util.Date

3. java.util.HashMap

4.none of the mentioned

Posted Date:-2022-01-02 17:09:44


Question:
Which of the following is a well known recognized event

1.ContextCloasedEvemt

2.ContextRefreshedEvent

3. RequestHandledEvent

4. All of the mentioned

Posted Date:-2022-01-02 16:48:18


Question:
Which of the following is advice supported by Aspect Annotation?

1.@Before

2.@After

3. @AfterReturning

4.all of the mentioned

Posted Date:-2022-01-02 17:20:03


Question:
Which of the following is used to convert property values to text Values?

1. property Editor

2. property setter

3. property getter

4.none of the mentioned

Posted Date:-2022-01-02 16:51:13


Question:
Which of the following pattern is used to match bean name?

1. bean(*Calculator)

2.bean(Calculator)

3.bean(com.appress.spring.Calculator)

4. None of the mentioned

Posted Date:-2022-01-02 17:47:01


Question:
Which of the following property editors are registered by Spring?

1. CustomNumberEditor

2.FileEditor

3.CustomDateEditor

4.CustomNetEditor

Posted Date:-2022-01-02 16:54:18


Question:
Which package is used for periodic work

1. java.lang.Thread

2. java.util.TimerTask

3. java.util.Timer

4. java.util.concurrent

Posted Date:-2022-01-02 17:00:43


Question:
Which property editor is used to specify a URL String for a property of the URL type?

1. java.net.*

2. java.io.*

3.java.net.URL

4. None of the mentioned

Posted Date:-2022-01-02 16:52:19


Question:
Which special type of advice is used to implement an interface?

1. Introduction

2.Before

3. After

4.AfterSpecial

Posted Date:-2022-01-02 17:57:53


Question:
Which subinterface provides functionality for managing Threads and their events

1.ExecutorService

2.ThreadService

3.All of the mentioned

4.none of the mentioned

Posted Date:-2022-01-02 17:01:13


Question:
Which tag in XML is used to declare @Before advice’s method?

1.aop:before

2.aop:after

3.aop:afterthrow

4.none of the mentioned

Posted Date:-2022-01-02 17:42:52


Question:
Which tag informs the spring container about the use of AspectJ annotation?

1.aop:aspectj-autowire

2.aop:aspectj-name

3. aop:aspectj-autoproxy

4.none of the mentioned

Posted Date:-2022-01-02 17:14:58


More MCQS

  1. Spring Mcq Set 1
  2. Spring Mcq Set 2
  3. Spring Mcq Set 3
  4. Spring Mcq Set 4
  5. Spring Mcq Set 5
  6. Spring Mcq Set 6
  7. Spring Mcq Set 7
  8. Spring Mcq Set 8
  9. Spring Mcq Set 9
  10. Spring Mcq Set 10
  11. Spring Mcq Set 11
  12. Spring Mcq Set 12
  13. Spring Mcq Set 13
  14. Spring Mcq Set 14
  15. Spring Mcq Set 15
  16. Spring Mcq Set 16
  17. Spring Mcq Set 17
  18. Spring Mcq Set 18
  19. Spring Mcq Set 19
  20. Spring Mcq Questions
Search
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!