-
Storing Character String
In a compiler there is 36 bit for a word and to store a character 8bits are needed. IN this to store a character two words are appended. Then for storing a K characters string, How many words are neededA. 2k/9B. (2k+8)/9C. (k+8)/9D. 2*(k+8)/9E. none
-
Cass to Track Number of Instances
Design a class that will keep track of number of instances that have been instantiated. Make this class thread safe.
-
Interface in C#
If the interface in C# only contains the declaration of the methods and we need to define those methods in the class, then Why we use the interface..???
-
Efficient algorithm to print count and possible string outcomes of a given input string
Write an Efficient algorithm to print count and possible string outcomes of a given input string by retaining order and considering all characters during this process
Problem: given a input string as "0000" and following input scheme for the zeroes, print the possible outcomes by retaining order of the characters. input scheme: a "0" b "00" c "000" d "0000" example: "aaaa" is one string... -
Reverse a sting using loop in php
Hi , when I reverse a string using loop in php like
php$str="navin";
$rstr="";
$len=strlen($str);
for($i=$len-1;$i>=0;$i--)
{
$rstr.=$str[$i];
}
echo $rstr;
It work but I want to know why we use .dot(.) $rstr.=$str[$i]; over here thanks in advance
Programming Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans