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 / lalit arora

int total;
public void methods()
{
Console.WriteLine("Enter The total population");
int s = int.Parse(Console.ReadLine());
int totalman = s * 52 / 100;
int totalwoman = s * 48 / 100;
int manliteracy = s * 35 / 100;
int womanliteracy = s * 13 / 100;
total = manliteracy + womanliteracy;

}
just call this method and see the result

Is This Answer Correct ?    15 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is arraylist faster than linkedlist?

984


What is difference between value and reference types in C#.NET

1148


How to implement a singleton design pattern in c#?

959


What is Satellite Assemblies ?

1045


Which .gang of four. Design pattern is shown below?

974


What is array and arraylist?

1114


What is an object pool in .net?

1100


What do you mean by sealed classes and static classes?

1057


What operator means?

933


How to Install uninstall assemblies into GAC?

986


How to find whether the application is run from inside ide or not?

1100


What are tuples c#?

1066


What is concrete class in c# with example?

1059


Which is faster dictionary or list?

979


List some of the basic string operation?

984