Free CompTIA ITF+ FC0-U61 Practice Question

While working on a software project that manages a library's book inventory, you are asked to create an object to represent each book in the system. Each book should have information about its title, the author, and a function to display this information. Which of the following examples correctly defines such an object?

  • { title: function() { return 'Gulliver’s Travels'; }, author: function() { return 'Jonathan Swift'; }, displayInfo: 'Display Book Information' }

  • { 'Gulliver’s Travels', 'Jonathan Swift', function displayBookInfo() { console.log('Displaying book information'); } }

  • { title: 'Gulliver’s Travels', author: 'Jonathan Swift', displayInfo: function() { console.log(this.title + ', written by ' + this.author); } }

  • [ 'Gulliver’s Travels', 'Jonathan Swift', function() { console.log('Displaying book information'); } ]

This question's topic:
CompTIA ITF+ FC0-U61 / 
Software Development Concepts
Your Score:

Check or uncheck an objective to set which questions you will receive.