Meteor MCQ Questions - Mobile Development
11. Meteor template uses _____________ important tags.
A. 2
B. 3
C. 4
D. 5
View Answer
Ans : B
Explanation: Meteor template uses three important tags. These are head, body and template.
12. ______________ method is used for tracking on session.
A. Tracker.run()
B. Track.autorun()
C. Tracker.autorun()
D. autorun()
View Answer
Ans : C
Explanation: Tracker.autorun() method is used for tracking on session.
13. Meteor templates are using three top level tags, The third tag is?
A. head
B. body
C. template
D. None of the above
View Answer
Ans : C
Explanation: The third tag is template
14. Blaze is a Meteor package used for building live reactive templates.
A. TRUE
B. FALSE
C. Can be true or false
D. Can not say
View Answer
Ans : A
Explanation: True, Blaze is a Meteor package used for building live reactive templates.
15. Which method to search for data in the collection?
A. search
B. find
C. add
D. insert
View Answer
Ans : B
Explanation: We can use the find method to search for data in the collection.
16. Data can be deleted from the collection using the _________ method.
A. alter
B. drop
C. delete
D. remove
View Answer
Ans : D
Explanation: Data can be deleted from the collection using the remove method.
17. Which command is used to remove packages?
A. meteor delete package_name
B. meteor remove
C. meteor remove package_name
D. remove package_name
View Answer
Ans : C
Explanation: meteor remove package_name command is used to remove packages.
18. You can also check what packages your current application is using meteor list?
A. Yes
B. No
C. Can be yes or no
D. Can not say
View Answer
Ans : A
Explanation: Yes, You can also check what packages your current application is using meteor list.
19. Which method used for getting the current view?
A. Blaze.getView([element])
B. Blaze.currentView
C. Blaze.With(data, contentFunc)
D. None of the above
View Answer
Ans : B
Explanation: Blaze.currentView : Used for getting the current view.
20. This package provides HTTP request API with _______________ methods.
A. get
B. post
C. put
D. All of the above
View Answer
Ans : D
Explanation: This package provides HTTP request API with get, post, put and delete methods.
Discussion