All Computer Science Resources
Example Questions
Example Question #1 : Evaluating String Expressions
What is the best way to print out a String variable into a sentence in Swift (iOS)?
Possible Answers:
var str = "Hello"
println("This string says str")
var str = "Hello"
println("This string says \(str)")
var str = "Hello"
println("This string says Hello")
var str = "Hello"
println("This string says " + str)
Correct answer:
var str = "Hello"
println("This string says \(str)")
Explanation:
The \(str) is the best way in Swift. This notation allows for a value of a variable to be input into the sentence. The "+" notation is also correct but is not the best way for Swift. The other two answers print out the words "str" and "Hello" instead of the value of the variable.
Asad
Certified Tutor
Certified Tutor
NED University of Engineering and Technology, Bachelor of Science, Electrical Engineering. University of Cincinnati-Main Camp...
All Computer Science Resources
Computer Science Tutors in Top Cities:
Atlanta Computer Science Tutors, Austin Computer Science Tutors, Boston Computer Science Tutors, Chicago Computer Science Tutors, Dallas Fort Worth Computer Science Tutors, Denver Computer Science Tutors, Houston Computer Science Tutors, Kansas City Computer Science Tutors, Los Angeles Computer Science Tutors, Miami Computer Science Tutors, New York City Computer Science Tutors, Philadelphia Computer Science Tutors, Phoenix Computer Science Tutors, San Diego Computer Science Tutors, San Francisco-Bay Area Computer Science Tutors, Seattle Computer Science Tutors, St. Louis Computer Science Tutors, Tucson Computer Science Tutors, Washington DC Computer Science Tutors
Popular Courses & Classes
GRE Courses & Classes in Atlanta, LSAT Courses & Classes in Washington DC, SAT Courses & Classes in Miami, ISEE Courses & Classes in Chicago, GMAT Courses & Classes in Boston, MCAT Courses & Classes in Chicago, GMAT Courses & Classes in Seattle, SSAT Courses & Classes in Dallas Fort Worth, Spanish Courses & Classes in New York City, MCAT Courses & Classes in Los Angeles
Popular Test Prep
LSAT Test Prep in San Francisco-Bay Area, SSAT Test Prep in San Francisco-Bay Area, ISEE Test Prep in New York City, GMAT Test Prep in Boston, SSAT Test Prep in Miami, GRE Test Prep in Miami, GMAT Test Prep in Los Angeles, ISEE Test Prep in San Diego, LSAT Test Prep in Miami, GRE Test Prep in Houston