A MobileNumber is a VIP number if it satisfy the following
conditions.
The operator should be Vodafone.
Atleast one 0 (Zero) should be exist in mobile number.
The number should not end with 8.
The single digit sum of all the digits in the number should
be equal to 9. For example if the number is 9876543210, the
sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9.
Write a method:
private boolean isVIPMobileNumber(String mobileNum, String
operator)
mobileNum phone number
operator mobile operator as bsnl, Vodafone
Answer Posted / c.p.senthil
// The prototype in question is not exactly c language. but i tried to provide equivalent solution in c.
int SingleDigitSum(int num)
{
int hund, tens, ones;
int sum = 0;
sum = num;
do
{
hund = sum / 100;
sum = sum % 100;
tens = sum / 10;
ones = sum % 10;
sum = hund + tens + ones;
}
while(sum > 9);
return(sum);
}
boolean isVIPMobileNumber(String mobileNum, String operator)
{
int i, sum=0, zeroCnt=0;
int tens, ones;
boolean retValue = FALSE;
// check for Vodafone operator
if(strcmp("Vodafone", operator) == 0)
{
// validate length of mobile number including NULL
if(strlen(mobileNum) == 11)
{
// check for the number should not end with 8
if(mobileNum[9] != 8)
{
for(i=0; i<10; i++)
{
if(mobileNum[i] == '0') zeroCnt++;
sum += mobileNum[i];
}
// Atleast one 0 (Zero) should be exist in mobile number.
// The single digit sum of all the digits in the number should be equal to 9.
// maximum sum possible single digit sum = 9+9+9+9+9+9+9+9+9+9 = 90 = 9 + 0 = 9
if((zeroCnt != 0) && (SingleDigitSum(sum) == 9))
{
retValue = TRUE;
}
}
}
}
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is meant by recursion?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What are shell structures used for?
Write a program to print ASCII code for a given digit.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Explain about the constants which help in debugging?
Do you know the purpose of 'register' keyword?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain how do you override a defined macro?
What is calloc malloc realloc in c?
What is extern c used for?
Where can I get an ansi-compatible lint?
What is call by value in c?
What is self-referential structure in c programming?
Differentiate between calloc and malloc.