Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

in a town the percentage of total men is 52. the percentage
of total literacy is 48. if total percentage of literate men
is 35 of total population. write a program to find out the
total no of illiterate men and women.

Answer Posted / kirankanneti

int totalliteracy;
Console.WriteLine("enter the population");
int s = int.Parse(Console.ReadLine());
int totalmen = s * 52 / 100;
int totalliteracy = s * 48 / 100;
int menliteracy = s * 35 / 100;
int womenliteracy = totalliteracy - menliteracy;
totalliteracy = menliteracy + womenliteracy;

Is This Answer Correct ?    4 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is dll in c#?

1121


Is string passed by reference in c#?

981


In c#, what will happen if you do not explicitly provide a constructor for a class?

1015


How to find the current application file path while runtime?

1043


list the steps in code compilation in c#?

924


Can we create extension method for interface?

951


Why do we Need of static class in c#?

1110


Does c# support multilevel inheritance?

932


Define c# i/o classes? List the commonly used classes?

1033


What is the use of GC.KeepAlive Method?

1227


Is a decimal an integer?

935


Why we use dll in c#?

1025


What are the different types of delegates?

974


What is predicate builder?

988


What is difference between ienumerable and list?

1057