Are php strings immutable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.

4 Answers   Microsoft,


In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


plz send me National informatics center paper pattern

1 Answers  


What is istream c++?

0 Answers  






In java a final class is a class that cannot be derived. How can you make a similar class in C++

1 Answers  


What do you mean by static variables?

0 Answers  


wap to accept 10 numbers & display the number of odd and even numbers??

1 Answers  


What is auto used for in c++?

0 Answers  


What is the difference between an enumeration and a set of pre-processor # defines?

0 Answers  


how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds

0 Answers   Thought Works,


Please explain the reference variable in c++?

0 Answers  


Categories