Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which statements evaluates to true while checking the equal strings in swift?
Home
Swift
Which statements evaluates to true while checking the equal strings in swift?
0
votes
asked
Nov 6, 2022
in
Swift
by
rajeshsharma
Which statements evaluates to true while checking the equal strings in swift?
A
"abc" == "def"
B
"abc" == "ABC"
C
"abc" == "abc"
D
"abc" ==="def"
swift
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 6, 2022
by
rajeshsharma
Answer: C
Reason: To check two strings are equal we can use == . Comparison is case senstive.
...