Podcast
Questions and Answers
Which of the following is an example of a JSON format?
Which of the following is an example of a JSON format?
- name = 'John', age = 30
- {'name': 'John'; 'age': 30}
- name: 'John', age: 30
- {'name': 'John', 'age': 30} (correct)
What is the correct way to declare a variable in JavaScript?
What is the correct way to declare a variable in JavaScript?
- variable x = 5;
- var x = 5; (correct)
- int x = 5;
- x = 5;
Which of the following is a valid data type in Python?
Which of the following is a valid data type in Python?
- Array
- Set
- Tuple (correct)
- Map