This famous Indian leader used nonviolent resistance to help India gain independence from Britain.
Mahatma Gandhi
This beautiful white marble monument in India was built by a Mughal emperor for his wife.
Taj Mahal
What is missing from this String Interpolation?
print("Your total is (price)")
/
India gained independence from Britain in this year.
1947
This religion originated in India and was founded by Siddhartha Gautama.
Buddhism
Which of these is the correct way to check if two things are equal in an If Statement?
if score equals 10 { }
if score = 10 { }
if score is = \10 { }
if score == 10 { }
if score == 10 { }
This emperor spread Buddhism throughout much of Asia after witnessing the horrors of war.
Ashoka
Before independence, India was part of this empire.
British Empire
Which keyword is used to declare a variable whose value can be changed after it is initialized?
var
This 1857 uprising against British rule is sometimes called India's First War of Independence.
Indian Rebellion of 1857
This Mughal emperor built the Taj Mahal.
Shah Jahan
Name all the primitive data types in Swift among the following
Int
String
Boolean
Double
This place is where the East India Company settled.
Calcutta
The partition of British India created these two independent countries in 1947.
India and Pakistan
Rewrite this code snippet to make it run:
let score = 10
score = 20
var score = 10