Podcast
Questions and Answers
Which of the following is a valid JSON format?
Which of the following is a valid JSON format?
- { name: "John", age: 30 }
- { 'name': 'John', 'age': 30 }
- { "name": "John", "age": 30 } (correct)
- { name: 'John', age: 30 }
What is the result of 10 + '5' in JavaScript?
What is the result of 10 + '5' in JavaScript?
- 15
- 105 (correct)
- Error
- 105 (correct)
Which of the following is a valid way to comment in Python?
Which of the following is a valid way to comment in Python?
- # This is a comment (correct)
- /* This is a comment */
- // This is a comment