Loading, please wait...

Vue Js MCQ Quiz (Multiple Choice Questions And Answers)

Search here for MCQs

Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:

List of Programming Full Forms 

16. .prevent will be ignored if we use .passive and .prevent together and it will probably show you a warning?

  • True
  • False

17. which keyword is used to create constant in vue.js?

  • Const
  • Constant
  • None of these
  • Define

18. How many types of directive available in vue.js?

  • 6
  • 4
  • 7
  • 2

19. What is the short form of v-bind?

  • bind
  • None of these
  • :
  • ;

20. The Following code represent the registered component.How we can call the custom component in my template

Vue.component(‘my-component’, {
template: ‘my own component!’
})
new Vue({
el: ‘#demo’
})
  • v-bind:my-component
  • <my-component></my-component>
  • v-my-component
  • @my-component