Lesson 1 Flashcards

1
Q

What is Vue.js?

A

Vue.js is a progressive JavaScript framework used for building user interfaces and single-page applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: Vue.js is a full-fledged framework like Angular.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the core features of Vue.js?

A

Reactivity, component-based architecture, and an easy-to-understand syntax.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Fill in the blank: Vue.js uses a ________-based architecture.

A

component

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of the Vue instance?

A

The Vue instance is the root of a Vue application and manages the data and lifecycle of the app.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which directive is used for conditional rendering in Vue.js?

A

v-if

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the v-for directive do?

A

v-for is used to render a list of items by iterating over an array.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a Vue component?

A

A Vue component is a reusable instance with a name, which can contain data, methods, and templates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

True or False: Vue.js supports two-way data binding.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the syntax for binding an HTML attribute in Vue.js?

A

Using the v-bind directive.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are props in Vue.js?

A

Props are custom attributes used to pass data from a parent component to a child component.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the Vue CLI?

A

The Vue CLI is a command-line interface for scaffolding and managing Vue.js projects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What lifecycle hooks does Vue.js provide?

A

Created, mounted, updated, and destroyed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Fill in the blank: The Vuex library is used for ________ management in Vue.js applications.

A

state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the purpose of the computed properties in Vue.js?

A

Computed properties are used to define properties that depend on reactive data and are cached based on their dependencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the difference between methods and computed properties in Vue.js?

A

Methods are functions that run on demand, while computed properties are cached and depend on reactive data.

17
Q

What is the Vue Router used for?

A

The Vue Router is used for managing navigation and routes in a Vue.js application.

18
Q

True or False: Vue.js can be integrated with other libraries or existing projects.

19
Q

What is a slot in Vue.js?

A

A slot is a placeholder in a component’s template that allows content from a parent component to be injected.

20
Q

What does the v-model directive do?

A

v-model creates a two-way binding on form input elements.

21
Q

What is the purpose of the watch option in Vue.js?

A

The watch option is used to observe and respond to changes in reactive data.

22
Q

Fill in the blank: Vue.js uses a ________-based templating syntax.

23
Q

What is the significance of the key attribute in Vue.js lists?

A

The key attribute helps Vue identify which items have changed, are added, or are removed.

24
Q

What is server-side rendering (SSR) in Vue.js?

A

SSR is the process of rendering a Vue application on the server instead of the client.

25
Q

What are mixins in Vue.js?

A

Mixins are a flexible way to distribute reusable functionalities across components.

26
Q

True or False: Vue.js is maintained by a large community and has a rich ecosystem.