Would you initialize your strings with single quotes or
double quotes?
Answers were Sorted based on User's Feedback
Answer / rajan vardawaj
Since the data inside the single-quoted string is not parsed
for variable substitution, it’s always a better idea
speed-wise to initialize a string with single quotes, unless
you specifically need variable substitution.
| Is This Answer Correct ? | 22 Yes | 5 No |
Answer / srimanta chakraborty
if in the string,substitution is needed then initialize with
double quotes else single quotes, as it will become fast.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / srimanta chakraborty
if in the special character is there then initialize with
double quotes else single quotes, as it will become fast.
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / jitendra k jain
we can initialize string with single quotes,but in special character case, we need to initialize string with double quotes.the best way to define string with double quote.
| Is This Answer Correct ? | 0 Yes | 3 No |
what is the maximum size of databasi in mysql?
How we can convert dynamic url into static url? plz provide code.
Tell me how to retrieve a cookie value?
Explain Type juggling?
What is the purpose of constant() function?
Write a regular expression to get the value xxx from the string 'xxx@yyy.com'
A process is identified by a unique___
What are default session time and path?
How can you submit a form without a submit button?
equivalent code for the following c program in php void main() { int i=5;printf("%d",i); }
How do you put a space in html?
What is the difference between runtime exception and compile time exception?