diff --git a/docs/dev/brs/codes/literacy/un-literacy.md b/docs/dev/brs/codes/literacy/un-literacy.md new file mode 100644 index 00000000000..0271f234a7b --- /dev/null +++ b/docs/dev/brs/codes/literacy/un-literacy.md @@ -0,0 +1,13 @@ +# UN Literacy Data (CLDR BRS) + + + +1. Goto +2. On the left tab under filters: + - under **Area** choose **Total** + - under **Sex** choose **Both Sexes** +3. Click the **Download** button and choose **XML** +4. Save the resultant XML file as `tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml` +5. Now you can run `AddPopulationData` + +> Note: If the format changes, you'll have to modify the `AddPopulationData.loadUnLiteracy()` method. diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java index fc59a2b875b..89fc049650f 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java @@ -3,14 +3,17 @@ import com.ibm.icu.text.ListFormat; import com.ibm.icu.text.NumberFormat; import com.ibm.icu.text.UnicodeSet; +import com.ibm.icu.util.Output; import com.ibm.icu.util.ULocale; import java.io.IOException; import java.text.ParseException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; +import java.util.LinkedList; import java.util.List; import java.util.Locale; +import java.util.Map; import java.util.Set; import java.util.TreeSet; import java.util.regex.Matcher; @@ -476,45 +479,55 @@ public boolean handle(String line) { }); } - private static void loadUnLiteracy() throws IOException { - CldrUtility.handleFile( - "external/un_literacy.csv", - new CldrUtility.LineHandler() { - @Override - public boolean handle(String line) { - // Afghanistan,2000, ,28,43,13,,34,51,18 - // "Country or area","Year",,"Adult (15+) literacy rate",,,,,," - // Youth (15-24) literacy rate",,,, - // ,,,Total,Men,Women,,Total,Men,Women - // "Albania",2008,,96,,97,,95,,99,,99,,99 - String[] pieces = splitCommaSeparated(line); - if (pieces.length != 14 - || pieces[1].length() == 0 - || !DIGITS.containsAll(pieces[1])) { - return false; - } - String code = - CountryCodeConverter.getCodeFromName(pieces[0], true, missing); - if (code == null) { - return false; - } - if (!StandardCodes.isCountry(code)) { - if (ADD_POP) { - System.out.println("Skipping UN info for: " + code); - } - return false; - } - String totalLiteracy = pieces[3]; - if (totalLiteracy.equals("�") - || totalLiteracy.equals("…") - || totalLiteracy.isEmpty()) { - return true; - } - double percent = Double.parseDouble(totalLiteracy); - un_literacy.add(code, percent); - return true; - } - }); + static void loadUnLiteracy() throws IOException { + for (final Pair p : getUnLiteracy(null)) { + un_literacy.add(p.getFirst(), p.getSecond()); + } + } + + /** + * @param hadErr on return, true if there were errs + * @return list of code,percent values + * @throws IOException + */ + static List> getUnLiteracy(Output hadErr) throws IOException { + List> result = new LinkedList<>(); + UnLiteracyParser ulp; + try { + ulp = new UnLiteracyParser().read(); + } catch (Throwable t) { + throw new IOException("Could not read UN data " + UnLiteracyParser.UN_LITERACY, t); + } + + for (final Map.Entry e : ulp.perCountry.entrySet()) { + final String country = e.getKey(); + final String latest = e.getValue().latest(); + final UnLiteracyParser.PerYear py = e.getValue().perYear.get(latest); + + Long literate = py.total(UnLiteracyParser.LITERATE); + Long illiterate = py.total(UnLiteracyParser.ILLITERATE); + + String code = CountryCodeConverter.getCodeFromName(country, true, missing); + if (code == null) { + if (hadErr != null) { + hadErr.value = true; + } + continue; + } + if (!StandardCodes.isCountry(code)) { + if (ADD_POP) { + System.out.println("Skipping UN info for: " + code); + } + continue; + } + double total = literate + illiterate; + double percent = ((double) literate) / total; + result.add(Pair.of(code, percent)); + } + if (result.isEmpty()) { + hadErr.value = true; + } + return result; } static { diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java new file mode 100644 index 00000000000..99487da4d5f --- /dev/null +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java @@ -0,0 +1,224 @@ +package org.unicode.cldr.tool; + +import com.ibm.icu.number.LocalizedNumberFormatter; +import com.ibm.icu.number.NumberFormatter; +import java.util.HashMap; +import java.util.Locale; +import java.util.Map; +import java.util.Map.Entry; +import java.util.TreeMap; +import org.unicode.cldr.util.XMLFileReader; +import org.unicode.cldr.util.XPathParts; + +public class UnLiteracyParser extends XMLFileReader.SimpleHandler { + + private static final String VALUE = "Value"; + private static final String RELIABILITY = "Reliability"; + private static final String LITERACY = "Literacy"; + private static final String YEAR = "Year"; + private static final String COUNTRY_OR_AREA = "Country or Area"; + private static final String AGE = "Age"; + static final String LITERATE = "Literate"; + static final String ILLITERATE = "Illiterate"; + private static final String UNKNOWN = "Unknown"; + private static final String TOTAL = "Total"; + // Debug stuff + public static void main(String args[]) { + final UnLiteracyParser ulp = new UnLiteracyParser().read(); + for (final Entry e : ulp.perCountry.entrySet()) { + final String country = e.getKey(); + final String latest = e.getValue().latest(); + final PerYear py = e.getValue().perYear.get(latest); + + Long literate = py.total(LITERATE); + Long illiterate = py.total(ILLITERATE); + Long unknown = py.total(UNKNOWN); + Long total = py.total(TOTAL); + + System.out.println( + country + + "\t" + + latest + + "\t" + + literate + + "/" + + illiterate + + ", " + + unknown + + " = " + + total); + if ((literate + illiterate + unknown) != total) { + System.out.println( + "- doesn't add up for " + + country + + " - total is " + + (literate + illiterate + unknown)); + } + } + } + + int recCount = 0; + + // Reading stuff + public static final String UN_LITERACY = "external/un_literacy.xml"; + + UnLiteracyParser read() { + System.out.println("* Reading " + UN_LITERACY); + new XMLFileReader() + .setHandler(this) + .readCLDRResource(UN_LITERACY, XMLFileReader.CONTENT_HANDLER, false); + // get the final record + handleNewRecord(); + LocalizedNumberFormatter nf = NumberFormatter.with().locale(Locale.ENGLISH); + System.out.println( + "* Read " + + nf.format(recCount) + + " record(s) with " + + nf.format(perCountry.size()) + + " region(s) from " + + UN_LITERACY); + return this; + } + + // Parsing stuff + @Override + public void handlePathValue(String path, String value) { + if (!path.startsWith("//ROOT/data/record")) { + return; + } + final String field = XPathParts.getFrozenInstance(path).getAttributeValue(-1, "name"); + handleField(field, value); + } + + @Override + public void handleElement(CharSequence path) { + if ("//ROOT/data/record".equals(path.toString())) { + handleNewRecord(); + } + } + + // Data ingestion + final Map thisRecord = new HashMap(); + + private void handleField(String field, String value) { + final String old = thisRecord.put(field, value); + if (old != null) { + throw new IllegalArgumentException( + "Duplicate field " + field + ", context: " + thisRecord); + } + } + + private void handleNewRecord() { + if (!thisRecord.isEmpty() && validate()) { + recCount++; + handleRecord(); + } + + thisRecord.clear(); + } + + boolean validate() { + try { + assertEqual("Area", "Total"); + assertEqual("Sex", "Both Sexes"); + + assertPresent(AGE); + assertPresent(COUNTRY_OR_AREA); + assertPresent(LITERACY); + assertPresent(VALUE); + assertPresent(YEAR); + assertPresent(RELIABILITY); + + return true; + } catch (Throwable t) { + final String context = thisRecord.toString(); + throw new IllegalArgumentException("While parsing " + context, t); + } + } + + void assertPresent(String field) { + String value = get(field); + if (value == null) { + throw new NullPointerException("Missing field: " + field); + } else if (value.isEmpty()) { + throw new NullPointerException("Empty field: " + field); + } + } + + void assertEqual(String field, String expected) { + assertPresent(field); + String value = get(field); + if (!value.equals(expected)) { + throw new NullPointerException( + "Expected " + field + "=" + expected + " but got " + value); + } + } + + private final String get(String field) { + final String value = thisRecord.get(field); + if (value == null) return value; + return value.trim(); + } + + private void handleRecord() { + final String country = get(COUNTRY_OR_AREA); + final String year = get(YEAR); + final String age = get(AGE); + final String literacy = get(LITERACY); + final String reliability = get(RELIABILITY); + final PerAge pa = + perCountry + .computeIfAbsent(country, (String c) -> new PerCountry()) + .perYear + .computeIfAbsent(year, (String y) -> new PerYear()) + .perAge + .computeIfAbsent(age, (String a) -> new PerAge()); + + if (pa.reliability == null) { + pa.reliability = reliability; + } else if (!pa.reliability.equals(reliability)) { + throw new IllegalArgumentException( + "Inconsistent reliability " + reliability + " for " + thisRecord); + } + final Long old = pa.perLiteracy.put(literacy, getLongValue()); + if (old != null) { + System.err.println("Duplicate record " + country + " " + year + " " + age); + } + } + + private long getLongValue() { + final String value = get(VALUE); + if (value.contains( + ".")) { // yes. some of the data has decimal points. Ignoring the fractional part. + return Long.parseLong(value.split("\\.")[0]); + } else { + return Long.parseLong(value); + } + } + + final Map perCountry = new TreeMap(); + + final class PerCountry { + final Map perYear = new TreeMap(); + + public String latest() { + final String y[] = perYear.keySet().toArray(new String[0]); + return y[y.length - 1]; + } + } + + final class PerYear { + final Map perAge = new TreeMap(); + + Long total(String literacy) { + return perAge.values().stream() + .map((pa) -> pa.perLiteracy.getOrDefault(literacy, 0L)) + .reduce(0L, (Long a, Long b) -> a + b); + } + } + + final class PerAge { + final Map perLiteracy = new TreeMap(); + String reliability = null; + } +} diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/util/XMLFileReader.java b/tools/cldr-code/src/main/java/org/unicode/cldr/util/XMLFileReader.java index a1a1c9fb6e4..1b72a7da369 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/util/XMLFileReader.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/util/XMLFileReader.java @@ -55,6 +55,15 @@ public class XMLFileReader { private SimpleHandler simpleHandler; public static class SimpleHandler { + /** + * called when every new element is encountered, with the full path to the element + * (including attributes). Called on leaf and non-leaf elements. + * + * @param path + */ + public void handleElement(CharSequence path) {} + + /** Called with an "xpath" of each leaf element */ public void handlePathValue(String path, String value) {} public void handleComment(String path, String comment) {} @@ -416,6 +425,7 @@ public void startElement( startElements.push(tempPath.toString()); chars.setLength(0); // clear garbage lastIsStart = true; + simpleHandler.handleElement(tempPath); } @Override diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt index 8b0a148a022..964ec09e461 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt @@ -63,6 +63,7 @@ HK; Hong Kong SAR China; China Hong Kong HK; Hong Kong SAR China; Hong Kong HK; Hong Kong SAR China; Hong Kong, China HK; Hong Kong SAR China; Hong Kong SAR, China +HK; Hong Kong SAR China; China, Hong Kong SAR IR; Iran; Iran, Islamic Rep. IR; Iran; Iran, Islamic Republic of @@ -115,6 +116,8 @@ MO; Macau SAR China; Macao, China MO; Macau SAR China; Macau MO; Macau SAR China; China, Macao Special Administrative Region MO; Macau SAR China; Macao SAR, China +MO; Macau SAR China; China, Macao SAR + PN; Pitcairn Islands; Pitcairn Islands @@ -140,6 +143,7 @@ SZ; Eswatini; eSwatini; Swaziland SZ; Eswatini; Swaziland SH; Saint Helena; Saint Helena, Ascension, and Tristan da Cunha +SH; Saint Helena; Saint Helena ex. dep. TL; East Timor; Timor-Leste TL; East Timor; East Timor diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.csv b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.csv deleted file mode 100644 index e1d2991c3ca..00000000000 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.csv +++ /dev/null @@ -1,156 +0,0 @@ -Table 4a. Literacy,,,,,,,,,,,,, -Last update: December 2012,,,,,,,,,,,,, -Country or area,Year,,Adult (15+) literacy rate,,,,,, Youth (15-24) literacy rate,,,, -,,,Total,,Men,,Women,,Total,, Men,,Women -Albania,2008,,96,,97,,95,,99,,99,,99 -Algeria,2006,,73,,81,,64,,92,,94,,89 -Angola,2010,*,70,,83,,58,,73,,80,,66 -Antigua and Barbuda,2010,*,99,,98,,99,,…,,…,,… -Argentina,2010,*,98,,98,,98,,99,,99,,99 -Armenia,2010,*,100,,100,,99,,100,,100,,100 -Aruba,2010,,97,,97,,97,,99,,99,,99 -Azerbaijan,2009,,100,,100,,100,,100,,100,,100 -Bahrain,2010,*,92,,93,,90,,100,,100,,100 -Bangladesh,2010,*,57,,61,,52,,77,,75,,78 -Belarus,2009,,100,,100,,99,,100,,100,,100 -Benin,2010,*,42,,55,,30,,55,,66,,45 -Bhutan,2005,,53,,65,,39,,74,,80,,68 -Bolivia (Plurinational State of),2009,,91,,96,,87,,99,,100,,99 -Bosnia and Herzegovina,2010,*,98,,99,,96,,100,,100,,100 -Botswana,2010,*,84,,84,,85,,95,,94,,97 -Brazil,2009,,90,,90,,90,,98,,97,,99 -Brunei Darussalam,2010,*,95,,97,,94,,100,,100,,100 -Bulgaria,2011,,98,,99,,98,,98,,98,,98 -Burkina Faso,2007,,29,,37,,22,,39,,47,,33 -Burundi,2010,*,67,,73,,62,,78,,78,,78 -Cambodia,2009,,74,,83,,66,,87,,88,,86 -Cameroon,2007,,71,,79,,63,,83,,89,,77 -Cape Verde,2010,*,84,,89,,79,,98,,97,,99 -Cayman Islands,2007,,99,,99,,99,,99,,99,,99 -Central African Republic,2010,*,56,,69,,43,,65,,72,,58 -Chad,2010,*,34,,45,,24,,47,,53,,41 -Chile,2009,,99,,99,,98,,99,,99,,99 -China,2010,*,94,,97,,91,,99,,99,,99 -"China, Macao Special Administrative Region",2006,,93,,96,,91,,100,,100,,100 -Colombia,2010,,93,,93,,93,,98,,98,,99 -Comoros,2010,*,75,,80,,70,,86,,86,,85 -Congo,2005,,…,,…,,…,,80,,87,,78 -Costa Rica,2010,*,96,,96,,96,,98,,98,,99 -Côte d'Ivoire,2010,*,56,,65,,47,,67,,72,,62 -Croatia,2010,*,99,,99,,98,,100,,100,,100 -Cuba,2010,*,100,,100,,100,,100,,100,,100 -Cyprus,2010,*,98,,99,,97,,100,,100,,100 -Democratic People's Republic of Korea,2008,,100,,100,,100,,100,,100,,100 -Democratic Republic of the Congo,2010,*,67,,77,,57,,65,,68,,62 -Dominican Republic,2010,,90,,89,,90,,97,,96,,98 -Ecuador,2010,,92,,93,,90,,99,,98,,99 -Egypt,2010,,72,,80,,64,,88,,91,,84 -El Salvador,2010,,84,,87,,82,,96,,96,,96 -Equatorial Guinea,2010,*,94,,97,,91,,98,,98,,98 -Eritrea,2010,*,68,,79,,58,,89,,92,,87 -Estonia,2010,*,100,,100,,100,,100,,100,,100 -Ethiopia,2007,,39,,49,,29,,55,,63,,47 -Gabon,2010,*,88,,92,,85,,98,,99,,97 -Gambia,2010,*,50,,60,,40,,67,,72,,62 -Georgia,2010,*,100,,100,,100,,100,,100,,100 -Ghana,2010,*,67,,73,,61,,81,,82,,80 -Greece,2010,*,97,,98,,96,,99,,99,,99 -Guatemala,2010,*,75,,81,,70,,87,,89,,85 -Guinea,2010,*,41,,52,,30,,63,,70,,57 -Guinea-Bissau,2010,*,54,,68,,41,,72,,79,,65 -Haiti,2006,,49,*,53,*,45,*,72,,74,,70 -Honduras,2010,,85,,85,,85,,95,,94,,96 -Hungary,2010,*,99,,99,,99,,99,,99,,99 -India,2006,,63,,75,,51,,81,,88,,74 -Indonesia,2009,,93,,96,,90,,99,,100,,99 -Iran (Islamic Republic of),2008,,85,,89,,81,,99,,99,,99 -Iraq,2010,*,78,,86,,71,,83,,85,,81 -Italy,2010,*,99,,99,,99,,100,,100,,100 -Jamaica,2010,*,87,,82,,91,,95,,93,,98 -Jordan,2010,,93,,96,,89,,99,,99,,99 -Kazakhstan,2010,*,100,,100,,100,,100,,100,,100 -Kenya,2010,*,87,,91,,84,,93,,92,,94 -Kuwait,2008,,94,,95,,92,,99,,99,,99 -Kyrgyzstan,2009,,99,,100,,99,,100,,100,,100 -Lao People's Democratic Republic,2005,,73,,82,,63,,84,,89,,79 -Latvia,2010,*,100,,100,,100,,100,,100,,100 -Lebanon,2007,,90,,93,,86,,99,,98,,99 -Lesotho,2010,*,90,,83,,96,,92,,86,,98 -Liberia,2010,*,61,,65,,57,,77,,71,,82 -Libya,2010,*,89,,96,,83,,100,,100,,100 -Lithuania,2010,*,100,,100,,100,,100,,100,,100 -Madagascar,2009,*,64,,67,,62,,65,,66,,64 -Malawi,2010,*,75,,81,,68,,87,,87,,87 -Malaysia,2010,,93,,95,,91,,98,,98,,98 -Maldives,2006,,98,,98,,98,,99,,99,,99 -Mali,2010,,31,,43,,20,,44,,56,,34 -Malta,2005,,92,,91,,94,,98,,97,,99 -Mauritania,2010,*,58,,65,,51,,68,,71,,65 -Mauritius,2010,*,89,,91,,86,,97,,96,,98 -Mexico,2010,,93,,94,,92,,98,,98,,98 -Mongolia,2010,*,97,,97,,98,,96,,94,,97 -Montenegro,2010,*,98,,99,,97,,99,,99,,99 -Morocco,2009,,56,,69,,44,,79,,87,,72 -Mozambique,2010,*,56,,71,,43,,72,,79,,65 -Myanmar,2010,*,92,,95,,90,,96,,96,,96 -Namibia,2010,*,89,,89,,88,,93,,91,,95 -Nepal,2010,*,60,,73,,48,,83,,88,,78 -Netherlands Antilles,2010,*,96,,96,,96,,98,,98,,98 -Nicaragua,2005,,78,,78,,78,,87,,85,,89 -Niger,2005,,29,,43,,15,,37,,52,,23 -Nigeria,2010,*,61,,72,,50,,72,,78,,66 -Occupied Palestinian Territory,2010,,95,,98,,92,,99,,99,,99 -Oman,2008,,87,,90,,81,,98,,98,,98 -Pakistan,2009,,55,,69,,40,,71,,79,,61 -Panama,2010,,94,,95,,93,,98,,98,,97 -Papua New Guinea,2010,*,61,,64,,57,,68,,65,,72 -Paraguay,2010,,94,,95,,93,,99,,99,,99 -Peru,2007,,90,,95,,85,,97,,98,,97 -Philippines,2008,,95,,95,,96,,98,,97,,98 -Poland,2010,*,100,,100,,99,,100,,100,,100 -Portugal,2010,*,95,,97,,94,,100,,100,,100 -Puerto Rico,2010,*,90,,90,,91,,87,,86,,87 -Qatar,2010,,96,,97,,95,,97,,96,,98 -Republic of Moldova,2010,*,99,,99,,98,,99,,99,,100 -Romania,2010,*,98,,98,,97,,97,,97,,97 -Russian Federation,2010,*,100,,100,,99,,100,,100,,100 -Rwanda,2010,*,71,,75,,68,,77,,77,,78 -Samoa,2010,*,99,,99,,99,,99,,99,,100 -Sao Tome and Principe,2010,*,89,,94,,85,,95,,95,,96 -Saudi Arabia,2010,*,87,,90,,81,,98,,99,,97 -Senegal,2009,,50,,62,,39,,65,,74,,56 -Serbia,2010,*,98,,99,,97,,99,,99,,99 -Seychelles,2010,*,92,,91,,92,,99,,99,,99 -Sierra Leone,2010,*,42,,54,,31,,59,,69,,50 -Singapore,2010,,96,,98,,94,,100,,100,,100 -Slovenia,2010,*,100,,100,,100,,100,,100,,100 -Solomon Islands,1999,,77,,84,,69,,85,,90,,80 -South Africa,2007,,89,,91,,87,,98,,97,,98 -Spain,2010,,98,,99,,97,,100,,100,,100 -Sri Lanka,2010,,91,,93,,90,,98,,98,,99 -Sudan (pre-secession),2010,*,71,,80,,62,,87,,90,,84 -Suriname,2010,,95,,95,,94,,98,,98,,99 -Swaziland,2010,*,87,,88,,87,,94,,92,,95 -Syrian Arab Republic,2010,*,83,,90,,77,,95,,96,,94 -Tajikistan,2010,*,100,,100,,100,,100,,100,,100 -Thailand,2005,,94,,96,,92,,98,,98,,98 -TFYR of Macedonia,2010,*,97,,99,,96,,99,,99,,99 -Timor-Leste,2010,,58,,64,,53,,80,,80,,79 -Togo,2009,,57,,71,,44,,82,,88,,75 -Tonga,2006,,99,,99,,99,,99,,99,,100 -Trinidad and Tobago,2010,*,99,,99,,98,,100,,100,,100 -Tunisia,2008,,78,,86,,71,,97,,98,,96 -Turkey,2009,,91,,96,,85,,98,,99,,97 -Turkmenistan,2010,*,100,,100,,99,,100,,100,,100 -Uganda,2010,,73,,83,,65,,87,,90,,85 -Ukraine,2010,*,100,,100,,100,,100,,100,,100 -United Arab Emirates,2005,,90,,89,,91,,95,,94,,97 -United Republic of Tanzania,2010,*,73,,79,,67,,77,,78,,76 -Uruguay,2010,,98,,98,,98,,99,,98,,99 -Uzbekistan,2010,*,99,,100,,99,,100,,100,,100 -Vanuatu,2010,*,83,,84,,81,,94,,94,,94 -Venezuela (Bolivarian Republic of),2009,,96,,96,,95,,99,,98,,99 -Viet Nam,2010,*,93,,95,,91,,97,,97,,96 -Yemen,2010,*,64,,81,,47,,85,,96,,74 -Zambia,2010,*,71,,81,,62,,74,,82,,67 -Zimbabwe,2010,*,92,,95,,90,,99,,98,,100 diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml new file mode 100644 index 00000000000..b5c045955fc --- /dev/null +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml @@ -0,0 +1,158364 @@ + + + + Albania + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 233376 + + + + Albania + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 231653 + + + + Albania + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1723 + + + + Albania + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2454948 + + + + Albania + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2387409 + + + + Albania + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 67539 + + + + Albania + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 268746 + + + + Albania + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 266391 + + + + Albania + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2355 + + + + Albania + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 243645 + + + + Albania + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 240511 + + + + Albania + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3134 + + + + Albania + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 191906 + + + + Albania + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 188762 + + + + Albania + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3144 + + + + Albania + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 163975 + + + + Albania + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 161531 + + + + Albania + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2444 + + + + Albania + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 167499 + + + + Albania + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 165441 + + + + Albania + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2058 + + + + Albania + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 186451 + + + + Albania + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 184554 + + + + Albania + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1897 + + + + Albania + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 192924 + + + + Albania + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 191146 + + + + Albania + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1778 + + + + Albania + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 195480 + + + + Albania + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 193608 + + + + Albania + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1872 + + + + Albania + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 162745 + + + + Albania + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 160998 + + + + Albania + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1747 + + + + Albania + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 130616 + + + + Albania + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 128227 + + + + Albania + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2389 + + + + Albania + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 103332 + + + + Albania + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 99457 + + + + Albania + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3875 + + + + Albania + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 92497 + + + + Albania + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 85818 + + + + Albania + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6679 + + + + Albania + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 63818 + + + + Albania + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 52595 + + + + Albania + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11223 + + + + Albania + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 35085 + + + + Albania + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 24247 + + + + Albania + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10838 + + + + Albania + 2011 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 22853 + + + + Albania + 2011 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 12470 + + + + Albania + 2011 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10383 + + + + Albania + 2001 + Total + Both Sexes + 6 - 10 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 309079 + + + + Albania + 2001 + Total + Both Sexes + 6 - 10 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 295126 + + + + Albania + 2001 + Total + Both Sexes + 6 - 10 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 13953 + + + + Albania + 2001 + Total + Both Sexes + 6 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2737614 + + + + Albania + 2001 + Total + Both Sexes + 6 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2694123 + + + + Albania + 2001 + Total + Both Sexes + 6 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 43491 + + + + Albania + 2001 + Total + Both Sexes + 11 - 13 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 194177 + + + + Albania + 2001 + Total + Both Sexes + 11 - 13 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 192932 + + + + Albania + 2001 + Total + Both Sexes + 11 - 13 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1245 + + + + Albania + 2001 + Total + Both Sexes + 14 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 359207 + + + + Albania + 2001 + Total + Both Sexes + 14 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 357162 + + + + Albania + 2001 + Total + Both Sexes + 14 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2045 + + + + Albania + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 232112 + + + + Albania + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 230819 + + + + Albania + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1293 + + + + Albania + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 213009 + + + + Albania + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 211939 + + + + Albania + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1070 + + + + Albania + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 216246 + + + + Albania + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 215369 + + + + Albania + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 877 + + + + Albania + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 219223 + + + + Albania + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 218516 + + + + Albania + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 707 + + + + Albania + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 215112 + + + + Albania + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 214395 + + + + Albania + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 717 + + + + Albania + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 171093 + + + + Albania + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 170465 + + + + Albania + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 628 + + + + Albania + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 143589 + + + + Albania + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 142845 + + + + Albania + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 744 + + + + Albania + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 120135 + + + + Albania + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 118958 + + + + Albania + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1177 + + + + Albania + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 113269 + + + + Albania + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 111026 + + + + Albania + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2243 + + + + Albania + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 87606 + + + + Albania + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 83887 + + + + Albania + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3719 + + + + Albania + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 65459 + + + + Albania + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 60997 + + + + Albania + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4462 + + + + Albania + 2001 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 78298 + + + + Albania + 2001 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 69687 + + + + Albania + 2001 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8611 + + + + Algeria + 2008 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3258749.11047268 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3147277.64118486 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 102294.418238297 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9177.05104931521 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 27786524.3318289 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 21512706.3331743 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 6184905.85525189 + 1 + + + Algeria + 2008 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 88909.1434634772 + 1 + + + Algeria + 2008 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3635141.1337362 + 1 + + + Algeria + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3462497.0301818 + 1 + + + Algeria + 2008 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 164491.346399025 + 1 + + + Algeria + 2008 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 8152.75715518306 + 1 + + + Algeria + 2008 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3763475.48993284 + 1 + + + Algeria + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3458406.92365883 + 1 + + + Algeria + 2008 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 295536.943125482 + 1 + + + Algeria + 2008 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9531.62314808529 + 1 + + + Algeria + 2008 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3422341.10355399 + 1 + + + Algeria + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3037073.02112807 + 1 + + + Algeria + 2008 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 375314.874553066 + 1 + + + Algeria + 2008 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9952.20787212337 + 1 + + + Algeria + 2008 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2740967.13153558 + 1 + + + Algeria + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2319554.65660921 + 1 + + + Algeria + 2008 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 413211.347415919 + 1 + + + Algeria + 2008 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 8200.12751005263 + 1 + + + Algeria + 2008 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2342753.9971229 + 1 + + + Algeria + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1842975.12858215 + 1 + + + Algeria + 2008 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 492811.501693481 + 1 + + + Algeria + 2008 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 6967.36684654004 + 1 + + + Algeria + 2008 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2018319.94437119 + 1 + + + Algeria + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1439753.29221909 + 1 + + + Algeria + 2008 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 572731.134725176 + 1 + + + Algeria + 2008 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 5835.51742591215 + 1 + + + Algeria + 2008 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1629427.40926932 + 1 + + + Algeria + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 984874.112763983 + 1 + + + Algeria + 2008 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 639810.821601849 + 1 + + + Algeria + 2008 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 4742.4749026793 + 1 + + + Algeria + 2008 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1346689.63815931 + 1 + + + Algeria + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 714854.570593192 + 1 + + + Algeria + 2008 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 627934.951087156 + 1 + + + Algeria + 2008 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3900.11647871616 + 1 + + + Algeria + 2008 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1062570.46340845 + 1 + + + Algeria + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 491458.756764519 + 1 + + + Algeria + 2008 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 567779.341592039 + 1 + + + Algeria + 2008 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3331.36505189666 + 1 + + + Algeria + 2008 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 711478.619535411 + 1 + + + Algeria + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 242828.106846058 + 1 + + + Algeria + 2008 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 466077.032230372 + 1 + + + Algeria + 2008 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2573.48045893352 + 1 + + + Algeria + 2008 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 631300.077401663 + 1 + + + Algeria + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 156070.010947742 + 1 + + + Algeria + 2008 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 472422.044300852 + 1 + + + Algeria + 2008 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2808.02215308852 + 1 + + + Algeria + 2008 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 504922.559896481 + 1 + + + Algeria + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 97640.6649215415 + 1 + + + Algeria + 2008 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 404663.930878994 + 1 + + + Algeria + 2008 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2617.96409596015 + 1 + + + Algeria + 2008 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 363842.625211969 + 1 + + + Algeria + 2008 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 58057.2429157964 + 1 + + + Algeria + 2008 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 303736.498938025 + 1 + + + Algeria + 2008 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2048.88335816549 + 1 + + + Algeria + 2008 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 187128.568417039 + 1 + + + Algeria + 2008 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 26192.0146722341 + 1 + + + Algeria + 2008 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 159668.159999786 + 1 + + + Algeria + 2008 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1268.39374501942 + 1 + + + Algeria + 2008 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 89721.0318717698 + 1 + + + Algeria + 2008 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 10907.9086896768 + 1 + + + Algeria + 2008 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 78137.9524973579 + 1 + + + Algeria + 2008 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 675.170684734965 + 1 + + + Algeria + 2008 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 29671.5915182203 + 1 + + + Algeria + 2008 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3261.61034642835 + 1 + + + Algeria + 2008 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 26151.52871746 + 1 + + + Algeria + 2008 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 258.452454331814 + 1 + + + Algeria + 2008 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 10028.1910888217 + 1 + + + Algeria + 2008 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1122.36581699472 + 1 + + + Algeria + 2008 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 8808.74922207703 + 1 + + + Algeria + 2008 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 97.076049749938 + 1 + + + Algeria + 2008 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 649.95885845073 + 1 + + + Algeria + 2008 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 74.2222525669808 + 1 + + + Algeria + 2008 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 570.680148452291 + 1 + + + Algeria + 2008 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 5.05645743145743 + 1 + + + Algeria + 2008 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 37345.6867030124 + 1 + + + Algeria + 2008 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 17827.052261883 + 1 + + + Algeria + 2008 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 12752.597875574 + 1 + + + Algeria + 2008 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 6766.03656555454 + 1 + + + Algeria + 1998 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3790666 + + + + Algeria + 1998 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3505250 + + + + Algeria + 1998 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 285416 + + + + Algeria + 1998 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 23898573 + + + + Algeria + 1998 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17287323 + + + + Algeria + 1998 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 6611250 + + + + Algeria + 1998 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3707672 + + + + Algeria + 1998 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3335304 + + + + Algeria + 1998 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 372368 + + + + Algeria + 1998 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3182663 + + + + Algeria + 1998 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2758033 + + + + Algeria + 1998 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 424630 + + + + Algeria + 1998 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2677989 + + + + Algeria + 1998 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2168070 + + + + Algeria + 1998 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 509919 + + + + Algeria + 1998 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2284987 + + + + Algeria + 1998 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1697638 + + + + Algeria + 1998 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 587349 + + + + Algeria + 1998 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1844892 + + + + Algeria + 1998 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1200210 + + + + Algeria + 1998 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 644682 + + + + Algeria + 1998 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1492587 + + + + Algeria + 1998 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 857277 + + + + Algeria + 1998 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 635310 + + + + Algeria + 1998 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1233670 + + + + Algeria + 1998 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 659947 + + + + Algeria + 1998 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 573723 + + + + Algeria + 1998 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 885103 + + + + Algeria + 1998 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 402586 + + + + Algeria + 1998 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 482517 + + + + Algeria + 1998 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 706062 + + + + Algeria + 1998 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 202151 + + + + Algeria + 1998 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 503911 + + + + Algeria + 1998 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 650309 + + + + Algeria + 1998 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 166417 + + + + Algeria + 1998 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 483892 + + + + Algeria + 1998 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 548675 + + + + Algeria + 1998 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 134586 + + + + Algeria + 1998 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 414089 + + + + Algeria + 1998 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 383322 + + + + Algeria + 1998 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 106462 + + + + Algeria + 1998 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 276860 + + + + Algeria + 1998 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 232192 + + + + Algeria + 1998 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 45451 + + + + Algeria + 1998 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 186741 + + + + Algeria + 1998 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 247868 + + + + Algeria + 1998 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 47941 + + + + Algeria + 1998 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 199927 + + + + Algeria + 1998 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 29916 + + + + Algeria + 1998 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 29916 + + + + Argentina + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3503446 + + + + Argentina + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3461619 + + + + Argentina + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 41827 + + + + Argentina + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 33398225 + + + + Argentina + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 32758604 + + + + Argentina + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 639621 + + + + Argentina + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3542067 + + + + Argentina + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3507039 + + + + Argentina + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 35028 + + + + Argentina + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3300149 + + + + Argentina + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3267806 + + + + Argentina + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 32343 + + + + Argentina + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3130509 + + + + Argentina + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3095814 + + + + Argentina + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 34695 + + + + Argentina + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3098713 + + + + Argentina + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3060675 + + + + Argentina + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 38038 + + + + Argentina + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2678435 + + + + Argentina + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2644074 + + + + Argentina + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 34361 + + + + Argentina + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2310775 + + + + Argentina + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2274392 + + + + Argentina + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 36383 + + + + Argentina + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2196350 + + + + Argentina + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2154593 + + + + Argentina + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 41757 + + + + Argentina + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2042993 + + + + Argentina + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1994787 + + + + Argentina + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 48206 + + + + Argentina + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1868950 + + + + Argentina + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1813534 + + + + Argentina + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 55416 + + + + Argentina + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1621190 + + + + Argentina + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1563654 + + + + Argentina + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 57536 + + + + Argentina + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1293061 + + + + Argentina + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1243309 + + + + Argentina + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 49752 + + + + Argentina + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 1015897 + + + + Argentina + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 973388 + + + + Argentina + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 42509 + + + + Argentina + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 801660 + + + + Argentina + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 765951 + + + + Argentina + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 35709 + + + + Argentina + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 565917 + + + + Argentina + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 537372 + + + + Argentina + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 28545 + + + + Argentina + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 298337 + + + + Argentina + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 280791 + + + + Argentina + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 17546 + + + + Argentina + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 102809 + + + + Argentina + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 95327 + + + + Argentina + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 7482 + + + + Argentina + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 23483 + + + + Argentina + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 21465 + + + + Argentina + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2018 + + + + Argentina + 2010 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3484 + + + + Argentina + 2010 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3014 + + + + Argentina + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 470 + + + + Argentina + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3427200 + + + + Argentina + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3390261 + + + + Argentina + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36939 + + + + Argentina + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 29439635 + + + + Argentina + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 28672608 + + + + Argentina + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 767027 + + + + Argentina + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3188304 + + + + Argentina + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3157872 + + + + Argentina + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 30432 + + + + Argentina + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3199339 + + + + Argentina + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3160571 + + + + Argentina + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 38768 + + + + Argentina + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2695341 + + + + Argentina + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2660363 + + + + Argentina + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34978 + + + + Argentina + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2364903 + + + + Argentina + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2326847 + + + + Argentina + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 38056 + + + + Argentina + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2229617 + + + + Argentina + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2183194 + + + + Argentina + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 46423 + + + + Argentina + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2136536 + + + + Argentina + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2080859 + + + + Argentina + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55677 + + + + Argentina + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1971911 + + + + Argentina + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1909749 + + + + Argentina + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 62162 + + + + Argentina + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1850481 + + + + Argentina + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1775671 + + + + Argentina + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 74810 + + + + Argentina + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1504046 + + + + Argentina + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1438793 + + + + Argentina + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65253 + + + + Argentina + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1284337 + + + + Argentina + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1222554 + + + + Argentina + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 61783 + + + + Argentina + 2001 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3587620 + + + + Argentina + 2001 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3365874 + + + + Argentina + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 221746 + + + + Armenia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 178637 + + + + Armenia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 177817 + + + + Armenia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 242 + + + + Armenia + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 578 + + + + Armenia + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2631353 + + + + Armenia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2621208 + + + + Armenia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6503 + + + + Armenia + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3642 + + + + Armenia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 233075 + + + + Armenia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 232534 + + + + Armenia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 365 + + + + Armenia + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 176 + + + + Armenia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 292234 + + + + Armenia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 291559 + + + + Armenia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 436 + + + + Armenia + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 239 + + + + Armenia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 271929 + + + + Armenia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 271293 + + + + Armenia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 417 + + + + Armenia + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 219 + + + + Armenia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 223005 + + + + Armenia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 222522 + + + + Armenia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 304 + + + + Armenia + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 179 + + + + Armenia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 187421 + + + + Armenia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 187044 + + + + Armenia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 242 + + + + Armenia + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 135 + + + + Armenia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 176964 + + + + Armenia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 176587 + + + + Armenia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 246 + + + + Armenia + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 131 + + + + Armenia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 211060 + + + + Armenia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 210616 + + + + Armenia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 277 + + + + Armenia + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 167 + + + + Armenia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 234532 + + + + Armenia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 234117 + + + + Armenia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 243 + + + + Armenia + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 172 + + + + Armenia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 177758 + + + + Armenia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 177435 + + + + Armenia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 200 + + + + Armenia + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 123 + + + + Armenia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 127599 + + + + Armenia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 127279 + + + + Armenia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 195 + + + + Armenia + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 125 + + + + Armenia + 2011 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 317139 + + + + Armenia + 2011 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 312405 + + + + Armenia + 2011 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3336 + + + + Armenia + 2011 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1398 + + + + Armenia + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 325440 + + + + Armenia + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 324798 + + + + Armenia + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 642 + + + + Armenia + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2758408 + + + + Armenia + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2743172 + + + + Armenia + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 15236 + + + + Armenia + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 313614 + + + + Armenia + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 312945 + + + + Armenia + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 669 + + + + Armenia + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 267552 + + + + Armenia + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 267101 + + + + Armenia + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 451 + + + + Armenia + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 222596 + + + + Armenia + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 222268 + + + + Armenia + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 328 + + + + Armenia + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 204557 + + + + Armenia + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 204207 + + + + Armenia + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 350 + + + + Armenia + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 244294 + + + + Armenia + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 243907 + + + + Armenia + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 387 + + + + Armenia + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 276137 + + + + Armenia + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 275715 + + + + Armenia + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 422 + + + + Armenia + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 211525 + + + + Armenia + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 211193 + + + + Armenia + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 332 + + + + Armenia + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 153808 + + + + Armenia + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 153490 + + + + Armenia + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 318 + + + + Armenia + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 80101 + + + + Armenia + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 79784 + + + + Armenia + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 317 + + + + Armenia + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 147306 + + + + Armenia + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 146272 + + + + Armenia + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1034 + + + + Armenia + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 118666 + + + + Armenia + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 116307 + + + + Armenia + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2359 + + + + Armenia + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 107063 + + + + Armenia + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 104712 + + + + Armenia + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2351 + + + + Armenia + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 55113 + + + + Armenia + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 53518 + + + + Armenia + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1595 + + + + Armenia + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 17302 + + + + Armenia + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 16071 + + + + Armenia + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1231 + + + + Armenia + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9150 + + + + Armenia + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7815 + + + + Armenia + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1335 + + + + Armenia + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3268 + + + + Armenia + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2481 + + + + Armenia + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 787 + + + + Armenia + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 714 + + + + Armenia + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 476 + + + + Armenia + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 238 + + + + Armenia + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 202 + + + + Armenia + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 112 + + + + Armenia + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 90 + + + + Aruba + 2010 + Total + Both Sexes + 14 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8795 + 2 + + + Aruba + 2010 + Total + Both Sexes + 14 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8717 + 2 + + + Aruba + 2010 + Total + Both Sexes + 14 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 54 + 2 + + + Aruba + 2010 + Total + Both Sexes + 14 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 24 + 2 + + + Aruba + 2010 + Total + Both Sexes + 20 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 24626 + 2 + + + Aruba + 2010 + Total + Both Sexes + 20 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 24198 + 2 + + + Aruba + 2010 + Total + Both Sexes + 20 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 312 + 2 + + + Aruba + 2010 + Total + Both Sexes + 20 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 116 + 2 + + + Aruba + 2010 + Total + Both Sexes + 40 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 37919 + 2 + + + Aruba + 2010 + Total + Both Sexes + 40 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 36747 + 2 + + + Aruba + 2010 + Total + Both Sexes + 40 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1019 + 2 + + + Aruba + 2010 + Total + Both Sexes + 40 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 153 + 2 + + + Aruba + 2010 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10527 + 2 + + + Aruba + 2010 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9311 + 2 + + + Aruba + 2010 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1168 + 2 + + + Aruba + 2010 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 48 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1304 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1285 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 70757 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 68324 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1881 + 2 + + + Aruba + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 552 + 2 + + + Aruba + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6117 + 2 + + + Aruba + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6046 + 2 + + + Aruba + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 53 + 2 + + + Aruba + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18 + 2 + + + Aruba + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5006 + 2 + + + Aruba + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4939 + 2 + + + Aruba + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 56 + 2 + + + Aruba + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + 2 + + + Aruba + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6334 + 2 + + + Aruba + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6214 + 2 + + + Aruba + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 102 + 2 + + + Aruba + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18 + 2 + + + Aruba + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7759 + 2 + + + Aruba + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7640 + 2 + + + Aruba + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 87 + 2 + + + Aruba + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 32 + 2 + + + Aruba + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9070 + 2 + + + Aruba + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8911 + 2 + + + Aruba + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 135 + 2 + + + Aruba + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 24 + 2 + + + Aruba + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8398 + 2 + + + Aruba + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8183 + 2 + + + Aruba + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 179 + 2 + + + Aruba + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36 + 2 + + + Aruba + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6904 + 2 + + + Aruba + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6716 + 2 + + + Aruba + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 164 + 2 + + + Aruba + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 24 + 2 + + + Aruba + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5362 + 2 + + + Aruba + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5232 + 2 + + + Aruba + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 110 + 2 + + + Aruba + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20 + 2 + + + Aruba + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4064 + 2 + + + Aruba + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3943 + 2 + + + Aruba + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 110 + 2 + + + Aruba + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + 2 + + + Aruba + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3468 + 2 + + + Aruba + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3324 + 2 + + + Aruba + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 128 + 2 + + + Aruba + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 16 + 2 + + + Aruba + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2581 + 2 + + + Aruba + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2419 + 2 + + + Aruba + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 151 + 2 + + + Aruba + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + 2 + + + Aruba + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1684 + 2 + + + Aruba + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1554 + 2 + + + Aruba + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 122 + 2 + + + Aruba + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8 + 2 + + + Aruba + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1044 + 2 + + + Aruba + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 929 + 2 + + + Aruba + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 109 + 2 + + + Aruba + 2000 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6 + 2 + + + Aruba + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 730 + 2 + + + Aruba + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 596 + 2 + + + Aruba + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 131 + 2 + + + Aruba + 2000 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3 + 2 + + + Aruba + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 370.65 + 2 + + + Aruba + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 244.65 + 2 + + + Aruba + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 121.8 + 2 + + + Aruba + 2000 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4.2 + 2 + + + Aruba + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 156.45 + 2 + + + Aruba + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 80.85 + 2 + + + Aruba + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 75.6 + 2 + + + Aruba + 2000 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + 2 + + + Aruba + 2000 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 48.3 + 2 + + + Aruba + 2000 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14.7 + 2 + + + Aruba + 2000 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 32.55 + 2 + + + Aruba + 2000 + Total + Both Sexes + 95 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1.05 + 2 + + + Azerbaijan + 2019 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 774921 + + + + Azerbaijan + 2019 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 774086 + + + + Azerbaijan + 2019 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 835 + + + + Azerbaijan + 2019 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8421893 + + + + Azerbaijan + 2019 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8403867 + + + + Azerbaijan + 2019 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 18026 + + + + Azerbaijan + 2019 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 650896 + + + + Azerbaijan + 2019 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 650209 + + + + Azerbaijan + 2019 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 687 + + + + Azerbaijan + 2019 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 735307 + + + + Azerbaijan + 2019 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 734327 + + + + Azerbaijan + 2019 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 980 + + + + Azerbaijan + 2019 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 927665 + + + + Azerbaijan + 2019 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 926459 + + + + Azerbaijan + 2019 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1206 + + + + Azerbaijan + 2019 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 914332 + + + + Azerbaijan + 2019 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 912970 + + + + Azerbaijan + 2019 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1362 + + + + Azerbaijan + 2019 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 784841 + + + + Azerbaijan + 2019 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 783709 + + + + Azerbaijan + 2019 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1132 + + + + Azerbaijan + 2019 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 642458 + + + + Azerbaijan + 2019 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 641447 + + + + Azerbaijan + 2019 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1011 + + + + Azerbaijan + 2019 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 599877 + + + + Azerbaijan + 2019 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 598861 + + + + Azerbaijan + 2019 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1016 + + + + Azerbaijan + 2019 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 625354 + + + + Azerbaijan + 2019 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 624255 + + + + Azerbaijan + 2019 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1099 + + + + Azerbaijan + 2019 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 625368 + + + + Azerbaijan + 2019 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 624326 + + + + Azerbaijan + 2019 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1042 + + + + Azerbaijan + 2019 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 474483 + + + + Azerbaijan + 2019 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 473460 + + + + Azerbaijan + 2019 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1023 + + + + Azerbaijan + 2019 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 299093 + + + + Azerbaijan + 2019 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 298212 + + + + Azerbaijan + 2019 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 881 + + + + Azerbaijan + 2019 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 145112 + + + + Azerbaijan + 2019 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 144188 + + + + Azerbaijan + 2019 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 924 + + + + Azerbaijan + 2019 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 90593 + + + + Azerbaijan + 2019 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 89525 + + + + Azerbaijan + 2019 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1068 + + + + Azerbaijan + 2019 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 86744 + + + + Azerbaijan + 2019 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 84732 + + + + Azerbaijan + 2019 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2012 + + + + Azerbaijan + 2019 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 33662 + + + + Azerbaijan + 2019 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 32521 + + + + Azerbaijan + 2019 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1141 + + + + Azerbaijan + 2019 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8712 + + + + Azerbaijan + 2019 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8281 + + + + Azerbaijan + 2019 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 431 + + + + Azerbaijan + 2019 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1962 + + + + Azerbaijan + 2019 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1838 + + + + Azerbaijan + 2019 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 124 + + + + Azerbaijan + 2019 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 513 + + + + Azerbaijan + 2019 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 461 + + + + Azerbaijan + 2019 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 52 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 763904 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 762379 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 667 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 858 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7592721 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7504224 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 17002 + + + + Azerbaijan + 2009 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 71495 + + + + Azerbaijan + 2009 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 922279 + + + + Azerbaijan + 2009 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 919506 + + + + Azerbaijan + 2009 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 415 + + + + Azerbaijan + 2009 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2358 + + + + Azerbaijan + 2009 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 925653 + + + + Azerbaijan + 2009 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 922230 + + + + Azerbaijan + 2009 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 589 + + + + Azerbaijan + 2009 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2834 + + + + Azerbaijan + 2009 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 794292 + + + + Azerbaijan + 2009 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 791542 + + + + Azerbaijan + 2009 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 517 + + + + Azerbaijan + 2009 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2233 + + + + Azerbaijan + 2009 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 659076 + + + + Azerbaijan + 2009 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 656554 + + + + Azerbaijan + 2009 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 479 + + + + Azerbaijan + 2009 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2043 + + + + Azerbaijan + 2009 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 633816 + + + + Azerbaijan + 2009 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 631117 + + + + Azerbaijan + 2009 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 522 + + + + Azerbaijan + 2009 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2177 + + + + Azerbaijan + 2009 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 668364 + + + + Azerbaijan + 2009 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 665295 + + + + Azerbaijan + 2009 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 658 + + + + Azerbaijan + 2009 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2411 + + + + Azerbaijan + 2009 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 677903 + + + + Azerbaijan + 2009 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 674632 + + + + Azerbaijan + 2009 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 772 + + + + Azerbaijan + 2009 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2499 + + + + Azerbaijan + 2009 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 509901 + + + + Azerbaijan + 2009 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 506427 + + + + Azerbaijan + 2009 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 870 + + + + Azerbaijan + 2009 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2604 + + + + Azerbaijan + 2009 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 322796 + + + + Azerbaijan + 2009 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 319287 + + + + Azerbaijan + 2009 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1050 + + + + Azerbaijan + 2009 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2459 + + + + Azerbaijan + 2009 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 179323 + + + + Azerbaijan + 2009 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 175420 + + + + Azerbaijan + 2009 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1065 + + + + Azerbaijan + 2009 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2838 + + + + Azerbaijan + 2009 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 160074 + + + + Azerbaijan + 2009 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 152891 + + + + Azerbaijan + 2009 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1415 + + + + Azerbaijan + 2009 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5768 + + + + Azerbaijan + 2009 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 189666 + + + + Azerbaijan + 2009 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 172057 + + + + Azerbaijan + 2009 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3062 + + + + Azerbaijan + 2009 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14547 + + + + Azerbaijan + 2009 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 110385 + + + + Azerbaijan + 2009 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 95630 + + + + Azerbaijan + 2009 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2487 + + + + Azerbaijan + 2009 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12268 + + + + Azerbaijan + 2009 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 51042 + + + + Azerbaijan + 2009 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 41962 + + + + Azerbaijan + 2009 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1528 + + + + Azerbaijan + 2009 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7552 + + + + Azerbaijan + 2009 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16703 + + + + Azerbaijan + 2009 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12856 + + + + Azerbaijan + 2009 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 598 + + + + Azerbaijan + 2009 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3249 + + + + Azerbaijan + 2009 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4363 + + + + Azerbaijan + 2009 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2783 + + + + Azerbaijan + 2009 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 174 + + + + Azerbaijan + 2009 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1406 + + + + Azerbaijan + 2009 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2038 + + + + Azerbaijan + 2009 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1163 + + + + Azerbaijan + 2009 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 82 + + + + Azerbaijan + 2009 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 793 + + + + Azerbaijan + 2009 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1143 + + + + Azerbaijan + 2009 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 493 + + + + Azerbaijan + 2009 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 52 + + + + Azerbaijan + 2009 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 598 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 901142 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 900982 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 160 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 6322572 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 6256918 + + + + Azerbaijan + 1999 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 65654 + + + + Azerbaijan + 1999 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 756758 + + + + Azerbaijan + 1999 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 756086 + + + + Azerbaijan + 1999 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 672 + + + + Azerbaijan + 1999 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 647999 + + + + Azerbaijan + 1999 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 647055 + + + + Azerbaijan + 1999 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 944 + + + + Azerbaijan + 1999 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 629120 + + + + Azerbaijan + 1999 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 628054 + + + + Azerbaijan + 1999 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1066 + + + + Azerbaijan + 1999 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 682573 + + + + Azerbaijan + 1999 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 681261 + + + + Azerbaijan + 1999 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1312 + + + + Azerbaijan + 1999 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 699298 + + + + Azerbaijan + 1999 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 697967 + + + + Azerbaijan + 1999 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1331 + + + + Azerbaijan + 1999 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 533010 + + + + Azerbaijan + 1999 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 531848 + + + + Azerbaijan + 1999 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1162 + + + + Azerbaijan + 1999 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 343315 + + + + Azerbaijan + 1999 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 342168 + + + + Azerbaijan + 1999 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1147 + + + + Azerbaijan + 1999 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 199952 + + + + Azerbaijan + 1999 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 198436 + + + + Azerbaijan + 1999 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1516 + + + + Azerbaijan + 1999 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 211762 + + + + Azerbaijan + 1999 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 208244 + + + + Azerbaijan + 1999 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 3518 + + + + Azerbaijan + 1999 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 282036 + + + + Azerbaijan + 1999 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 271446 + + + + Azerbaijan + 1999 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 10590 + + + + Azerbaijan + 1999 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 199331 + + + + Azerbaijan + 1999 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 188495 + + + + Azerbaijan + 1999 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 10836 + + + + Azerbaijan + 1999 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 123584 + + + + Azerbaijan + 1999 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 113641 + + + + Azerbaijan + 1999 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 9943 + + + + Azerbaijan + 1999 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 54480 + + + + Azerbaijan + 1999 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 47964 + + + + Azerbaijan + 1999 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 6516 + + + + Azerbaijan + 1999 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 26888 + + + + Azerbaijan + 1999 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 21458 + + + + Azerbaijan + 1999 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 5430 + + + + Azerbaijan + 1999 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 17928 + + + + Azerbaijan + 1999 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 13338 + + + + Azerbaijan + 1999 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 4590 + + + + Azerbaijan + 1999 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 7125 + + + + Azerbaijan + 1999 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 4791 + + + + Azerbaijan + 1999 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 2334 + + + + Azerbaijan + 1999 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 4607 + + + + Azerbaijan + 1999 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 2848 + + + + Azerbaijan + 1999 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1759 + + + + Azerbaijan + 1999 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1664 + + + + Azerbaijan + 1999 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 836 + + + + Azerbaijan + 1999 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 828 + + + + Bahrain + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 72713 + + + + Bahrain + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 72446 + + + + Bahrain + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 267 + + + + Bahrain + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + + + + Bahrain + 2010 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 986968 + + + + Bahrain + 2010 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 933059 + + + + Bahrain + 2010 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 53712 + + + + Bahrain + 2010 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 197 + + + + Bahrain + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 112402 + + + + Bahrain + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 109245 + + + + Bahrain + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3132 + + + + Bahrain + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 25 + + + + Bahrain + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 182232 + + + + Bahrain + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 174020 + + + + Bahrain + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8212 + + + + Bahrain + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + + + + Bahrain + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 161448 + + + + Bahrain + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 154766 + + + + Bahrain + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 6682 + + + + Bahrain + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + + + + Bahrain + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 131729 + + + + Bahrain + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 127700 + + + + Bahrain + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4002 + + + + Bahrain + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 27 + + + + Bahrain + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 106196 + + + + Bahrain + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 102034 + + + + Bahrain + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4132 + + + + Bahrain + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 30 + + + + Bahrain + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 81471 + + + + Bahrain + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 77398 + + + + Bahrain + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4058 + + + + Bahrain + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 15 + + + + Bahrain + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 60575 + + + + Bahrain + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 56637 + + + + Bahrain + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3916 + + + + Bahrain + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 22 + + + + Bahrain + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 35149 + + + + Bahrain + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 32026 + + + + Bahrain + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3107 + + + + Bahrain + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16 + + + + Bahrain + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16819 + + + + Bahrain + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13882 + + + + Bahrain + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2923 + + + + Bahrain + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14 + + + + Bahrain + 2010 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 26234 + + + + Bahrain + 2010 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12905 + + + + Bahrain + 2010 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13281 + + + + Bahrain + 2010 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 48 + + + + Bahrain + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49160 + + + + Bahrain + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 48973 + + + + Bahrain + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 187 + + + + Bahrain + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 306621 + + + + Bahrain + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 274865 + + + + Bahrain + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 31756 + + + + Bahrain + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 44240 + + + + Bahrain + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 44010 + + + + Bahrain + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 230 + + + + Bahrain + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38358 + + + + Bahrain + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38003 + + + + Bahrain + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 355 + + + + Bahrain + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30260 + + + + Bahrain + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29845 + + + + Bahrain + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 415 + + + + Bahrain + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 28577 + + + + Bahrain + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27777 + + + + Bahrain + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 800 + + + + Bahrain + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29337 + + + + Bahrain + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27522 + + + + Bahrain + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1815 + + + + Bahrain + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 24752 + + + + Bahrain + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 21967 + + + + Bahrain + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2785 + + + + Bahrain + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18382 + + + + Bahrain + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 15593 + + + + Bahrain + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2789 + + + + Bahrain + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12041 + + + + Bahrain + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9124 + + + + Bahrain + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2917 + + + + Bahrain + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8556 + + + + Bahrain + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4888 + + + + Bahrain + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3668 + + + + Bahrain + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7994 + + + + Bahrain + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3323 + + + + Bahrain + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4671 + + + + Bahrain + 2001 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14964 + + + + Bahrain + 2001 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3840 + + + + Bahrain + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11124 + + + + Bangladesh + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 15872379 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 9378314 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6494065 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 91657370 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 45639423 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 46017947 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 12076480 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8336805 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3739675 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11135355 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6439156 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4696199 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 10982014 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5307223 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5674791 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8641719 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3807553 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4834166 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7890542 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3328087 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4562455 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6261028 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2538266 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3722762 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4675742 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1930296 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2745446 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4005072 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1440167 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2564905 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2387825 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 872726 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1515099 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 60 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7729214 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 60 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2260830 + 3 + + + Bangladesh + 2001 + Total + Both Sexes + 60 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5468384 + 3 + + + Belarus + 2019 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 506319 + + + + Belarus + 2019 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 505768 + + + + Belarus + 2019 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 479 + + + + Belarus + 2019 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 72 + + + + Belarus + 2019 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8326120 + + + + Belarus + 2019 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8288313 + + + + Belarus + 2019 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10297 + + + + Belarus + 2019 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 27510 + + + + Belarus + 2019 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 455767 + + + + Belarus + 2019 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 455136 + + + + Belarus + 2019 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 529 + + + + Belarus + 2019 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 102 + + + + Belarus + 2019 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 448048 + + + + Belarus + 2019 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 446474 + + + + Belarus + 2019 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 619 + + + + Belarus + 2019 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 955 + + + + Belarus + 2019 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 616321 + + + + Belarus + 2019 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 613644 + + + + Belarus + 2019 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 792 + + + + Belarus + 2019 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1885 + + + + Belarus + 2019 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 781253 + + + + Belarus + 2019 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 777798 + + + + Belarus + 2019 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 886 + + + + Belarus + 2019 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2569 + + + + Belarus + 2019 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 749051 + + + + Belarus + 2019 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 745502 + + + + Belarus + 2019 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 934 + + + + Belarus + 2019 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2615 + + + + Belarus + 2019 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 670373 + + + + Belarus + 2019 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 667048 + + + + Belarus + 2019 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 865 + + + + Belarus + 2019 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2460 + + + + Belarus + 2019 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 639833 + + + + Belarus + 2019 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 636638 + + + + Belarus + 2019 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 790 + + + + Belarus + 2019 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2405 + + + + Belarus + 2019 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 623346 + + + + Belarus + 2019 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 620270 + + + + Belarus + 2019 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 656 + + + + Belarus + 2019 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2420 + + + + Belarus + 2019 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 704300 + + + + Belarus + 2019 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 700991 + + + + Belarus + 2019 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 597 + + + + Belarus + 2019 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2712 + + + + Belarus + 2019 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 680161 + + + + Belarus + 2019 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 677155 + + + + Belarus + 2019 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 514 + + + + Belarus + 2019 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2492 + + + + Belarus + 2019 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 513568 + + + + Belarus + 2019 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 511349 + + + + Belarus + 2019 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 332 + + + + Belarus + 2019 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1887 + + + + Belarus + 2019 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 343305 + + + + Belarus + 2019 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 341701 + + + + Belarus + 2019 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 245 + + + + Belarus + 2019 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1359 + + + + Belarus + 2019 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 227859 + + + + Belarus + 2019 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 226480 + + + + Belarus + 2019 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 248 + + + + Belarus + 2019 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1131 + + + + Belarus + 2019 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 366616 + + + + Belarus + 2019 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 362359 + + + + Belarus + 2019 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1811 + + + + Belarus + 2019 + Total + Both Sexes + 80 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2446 + + + + Belarus + 2009 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 465788 + + + + Belarus + 2009 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 464930 + + + + Belarus + 2009 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 719 + + + + Belarus + 2009 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 139 + + + + Belarus + 2009 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8568817 + + + + Belarus + 2009 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8316792 + + + + Belarus + 2009 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 30905 + + + + Belarus + 2009 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 221120 + + + + Belarus + 2009 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 636522 + + + + Belarus + 2009 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 623845 + + + + Belarus + 2009 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1066 + + + + Belarus + 2009 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11611 + + + + Belarus + 2009 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 777661 + + + + Belarus + 2009 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 755040 + + + + Belarus + 2009 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1376 + + + + Belarus + 2009 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 21245 + + + + Belarus + 2009 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 746296 + + + + Belarus + 2009 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 719144 + + + + Belarus + 2009 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1519 + + + + Belarus + 2009 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 25633 + + + + Belarus + 2009 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 679498 + + + + Belarus + 2009 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 654660 + + + + Belarus + 2009 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1408 + + + + Belarus + 2009 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 23430 + + + + Belarus + 2009 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 662721 + + + + Belarus + 2009 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 640233 + + + + Belarus + 2009 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1239 + + + + Belarus + 2009 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 21249 + + + + Belarus + 2009 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 660808 + + + + Belarus + 2009 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 640500 + + + + Belarus + 2009 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1176 + + + + Belarus + 2009 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 19132 + + + + Belarus + 2009 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 773975 + + + + Belarus + 2009 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 750548 + + + + Belarus + 2009 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1174 + + + + Belarus + 2009 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 22253 + + + + Belarus + 2009 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 753971 + + + + Belarus + 2009 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 732647 + + + + Belarus + 2009 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1049 + + + + Belarus + 2009 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 20275 + + + + Belarus + 2009 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 611836 + + + + Belarus + 2009 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 594642 + + + + Belarus + 2009 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 749 + + + + Belarus + 2009 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16445 + + + + Belarus + 2009 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 448907 + + + + Belarus + 2009 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 436555 + + + + Belarus + 2009 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 667 + + + + Belarus + 2009 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11685 + + + + Belarus + 2009 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 346882 + + + + Belarus + 2009 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 338377 + + + + Belarus + 2009 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 960 + + + + Belarus + 2009 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7545 + + + + Belarus + 2009 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 412808 + + + + Belarus + 2009 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 401551 + + + + Belarus + 2009 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2755 + + + + Belarus + 2009 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8502 + + + + Belarus + 2009 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 290217 + + + + Belarus + 2009 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 279203 + + + + Belarus + 2009 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5761 + + + + Belarus + 2009 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5253 + + + + Belarus + 2009 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 203676 + + + + Belarus + 2009 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 195383 + + + + Belarus + 2009 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4259 + + + + Belarus + 2009 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4034 + + + + Belarus + 2009 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 96955 + + + + Belarus + 2009 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 89415 + + + + Belarus + 2009 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5025 + + + + Belarus + 2009 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2515 + + + + Belarus + 2009 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 296 + + + + Belarus + 2009 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 119 + + + + Belarus + 2009 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3 + + + + Belarus + 2009 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 174 + + + + Belarus + 1999 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 790418 + + + + Belarus + 1999 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 788587 + + + + Belarus + 1999 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1638 + + + + Belarus + 1999 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 193 + + + + Belarus + 1999 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 8084634 + + + + Belarus + 1999 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 8046281 + + + + Belarus + 1999 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 33066 + + + + Belarus + 1999 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 5287 + + + + Belarus + 1999 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 710033 + + + + Belarus + 1999 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 708114 + + + + Belarus + 1999 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1484 + + + + Belarus + 1999 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 435 + + + + Belarus + 1999 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 688788 + + + + Belarus + 1999 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 687051 + + + + Belarus + 1999 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1262 + + + + Belarus + 1999 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 475 + + + + Belarus + 1999 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 704537 + + + + Belarus + 1999 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 702696 + + + + Belarus + 1999 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1343 + + + + Belarus + 1999 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 498 + + + + Belarus + 1999 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 839004 + + + + Belarus + 1999 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 837255 + + + + Belarus + 1999 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1279 + + + + Belarus + 1999 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 470 + + + + Belarus + 1999 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 810383 + + + + Belarus + 1999 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 808750 + + + + Belarus + 1999 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1137 + + + + Belarus + 1999 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 496 + + + + Belarus + 1999 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 680080 + + + + Belarus + 1999 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 678838 + + + + Belarus + 1999 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 804 + + + + Belarus + 1999 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 438 + + + + Belarus + 1999 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 489718 + + + + Belarus + 1999 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 488941 + + + + Belarus + 1999 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 452 + + + + Belarus + 1999 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 325 + + + + Belarus + 1999 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 473179 + + + + Belarus + 1999 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 472368 + + + + Belarus + 1999 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 624 + + + + Belarus + 1999 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 187 + + + + Belarus + 1999 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 562968 + + + + Belarus + 1999 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 561574 + + + + Belarus + 1999 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1212 + + + + Belarus + 1999 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 182 + + + + Belarus + 1999 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 493598 + + + + Belarus + 1999 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 491693 + + + + Belarus + 1999 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1759 + + + + Belarus + 1999 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 146 + + + + Belarus + 1999 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 840763 + + + + Belarus + 1999 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 820378 + + + + Belarus + 1999 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 20072 + + + + Belarus + 1999 + Total + Both Sexes + 70 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 313 + + + + Belarus + 1999 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1165 + + + + Belarus + 1999 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 36 + + + + Belarus + 1999 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1129 + + + + Belize + 2000 + Total + Both Sexes + 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5527 + + + + Belize + 2000 + Total + Both Sexes + 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3818 + + + + Belize + 2000 + Total + Both Sexes + 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1709 + + + + Belize + 2000 + Total + Both Sexes + 14 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 142536 + + + + Belize + 2000 + Total + Both Sexes + 14 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 109182 + + + + Belize + 2000 + Total + Both Sexes + 14 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 33354 + + + + Belize + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 25533 + + + + Belize + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 21544 + + + + Belize + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3989 + + + + Belize + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20680 + + + + Belize + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17378 + + + + Belize + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3302 + + + + Belize + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18139 + + + + Belize + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14571 + + + + Belize + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3568 + + + + Belize + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15680 + + + + Belize + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12181 + + + + Belize + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3499 + + + + Belize + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 13742 + + + + Belize + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10440 + + + + Belize + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3302 + + + + Belize + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10897 + + + + Belize + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8195 + + + + Belize + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2702 + + + + Belize + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8298 + + + + Belize + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6081 + + + + Belize + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2217 + + + + Belize + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6019 + + + + Belize + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4298 + + + + Belize + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1721 + + + + Belize + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4425 + + + + Belize + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2953 + + + + Belize + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1472 + + + + Belize + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3852 + + + + Belize + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2421 + + + + Belize + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1431 + + + + Belize + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3395 + + + + Belize + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2010 + + + + Belize + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1385 + + + + Belize + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2641 + + + + Belize + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1463 + + + + Belize + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1178 + + + + Belize + 2000 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3708 + + + + Belize + 2000 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1829 + + + + Belize + 2000 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1879 + + + + Benin + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 838746 + + + + Benin + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 455680 + + + + Benin + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 359220 + + + + Benin + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 23846 + + + + Benin + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4439276 + + + + Benin + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1628768 + + + + Benin + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2675485 + + + + Benin + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 135023 + + + + Benin + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 653250 + + + + Benin + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 308792 + + + + Benin + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 322924 + + + + Benin + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 21534 + + + + Benin + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 563946 + + + + Benin + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 213607 + + + + Benin + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 330178 + + + + Benin + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20161 + + + + Benin + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 532055 + + + + Benin + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 180479 + + + + Benin + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 334758 + + + + Benin + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 16818 + + + + Benin + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 414165 + + + + Benin + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 145467 + + + + Benin + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 255975 + + + + Benin + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12723 + + + + Benin + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 340629 + + + + Benin + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 109866 + + + + Benin + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 220848 + + + + Benin + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9915 + + + + Benin + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 264488 + + + + Benin + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 74903 + + + + Benin + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 181917 + + + + Benin + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7668 + + + + Benin + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 196055 + + + + Benin + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 51486 + + + + Benin + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 139289 + + + + Benin + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5280 + + + + Benin + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 167900 + + + + Benin + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35820 + + + + Benin + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 127551 + + + + Benin + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4529 + + + + Benin + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 93493 + + + + Benin + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 19538 + + + + Benin + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 71431 + + + + Benin + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2524 + + + + Benin + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 116796 + + + + Benin + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14041 + + + + Benin + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 99687 + + + + Benin + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3068 + + + + Benin + 2002 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 257408 + + + + Benin + 2002 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18857 + + + + Benin + 2002 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 231658 + + + + Benin + 2002 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6893 + + + + Benin + 2002 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 345 + + + + Benin + 2002 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 232 + + + + Benin + 2002 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49 + + + + Benin + 2002 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 64 + + + + Bhutan + 2017 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 536412 + + + + Bhutan + 2017 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 357042 + + + + Bhutan + 2017 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 179370 + + + + Bhutan + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 77007 + + + + Bhutan + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 66043 + + + + Bhutan + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 10964 + + + + Bhutan + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 502030 + + + + Bhutan + 2005 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 290516 + + + + Bhutan + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 211514 + + + + Bhutan + 2005 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 75236 + + + + Bhutan + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 60112 + + + + Bhutan + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 15124 + + + + Bhutan + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 70574 + + + + Bhutan + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 48376 + + + + Bhutan + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 22198 + + + + Bhutan + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 57358 + + + + Bhutan + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 34497 + + + + Bhutan + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 22861 + + + + Bhutan + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 42806 + + + + Bhutan + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 22550 + + + + Bhutan + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 20256 + + + + Bhutan + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 38729 + + + + Bhutan + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 18487 + + + + Bhutan + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 20242 + + + + Bhutan + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 29900 + + + + Bhutan + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 11597 + + + + Bhutan + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 18303 + + + + Bhutan + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 27662 + + + + Bhutan + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 9653 + + + + Bhutan + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 18009 + + + + Bhutan + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 22047 + + + + Bhutan + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 6992 + + + + Bhutan + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 15055 + + + + Bhutan + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 16392 + + + + Bhutan + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 4114 + + + + Bhutan + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 12278 + + + + Bhutan + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 14574 + + + + Bhutan + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 2952 + + + + Bhutan + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 11622 + + + + Bhutan + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 11361 + + + + Bhutan + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 2134 + + + + Bhutan + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 9227 + + + + Bhutan + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 8742 + + + + Bhutan + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 1487 + + + + Bhutan + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 7255 + + + + Bhutan + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bhutan + 2005 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2006 + 9642 + + + + Bhutan + 2005 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 1522 + + + + Bhutan + 2005 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2006 + 8120 + + + + Bhutan + 2005 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2006 + 0 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1077523 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1062721 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4032 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10770 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7958601 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7528601 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 350794 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 79206 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1105114 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1093573 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4564 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6977 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 975870 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 957161 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8450 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10259 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 814416 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 797357 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9225 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7834 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 751257 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 731163 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12855 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7239 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 629098 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 607821 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 15389 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5888 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 543180 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 520510 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 17414 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5256 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 460691 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 432784 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 22240 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5667 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 402148 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 369759 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 27925 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4464 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 323153 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 287495 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 32299 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3359 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 279143 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 233536 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 42323 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3284 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 204008 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 163183 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 38375 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2450 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 152105 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 113332 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 36736 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2037 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 99122 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 69238 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 28497 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1387 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 81008 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 51112 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 28597 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1299 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 37894 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 23892 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 13397 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 605 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 14647 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9067 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5338 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 242 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8224 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4897 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3138 + + + + Bolivia (Plurinational State of) + 2012 + Total + Both Sexes + 95 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 189 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1026770 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1014041 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10592 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2137 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6103021 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5401998 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 680880 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20143 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 873251 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 853713 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17778 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1760 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 780471 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 751935 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 26319 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2217 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 611381 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 579967 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 29442 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1972 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 522220 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 486932 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 33538 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1750 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 469765 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 424280 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 43889 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1596 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 414170 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 357903 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 54854 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1413 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 336376 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 273793 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 61316 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1267 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 274548 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 208366 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65020 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1162 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 214810 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 150702 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 63132 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 976 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 166616 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 103173 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 62515 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 928 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 143287 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 75657 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 66711 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 919 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 121053 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 58994 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 61273 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 786 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 74682 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34771 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 39383 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 528 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40344 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 16135 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23865 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 344 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19198 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7486 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 11555 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 157 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7846 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2807 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4958 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 81 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6233 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1343 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4740 + + + + Bolivia (Plurinational State of) + 2001 + Total + Both Sexes + 95 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 150 + + + + Brazil + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 17166761 + + + + Brazil + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16495659 + + + + Brazil + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 670982 + + + + Brazil + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 120 + + + + Brazil + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 161990266 + + + + Brazil + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 147385581 + + + + Brazil + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14604155 + + + + Brazil + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 530 + + + + Brazil + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16990872 + + + + Brazil + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16617189 + + + + Brazil + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 373596 + + + + Brazil + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 87 + + + + Brazil + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 17245192 + + + + Brazil + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16767660 + + + + Brazil + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 477466 + + + + Brazil + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 66 + + + + Brazil + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 17104414 + + + + Brazil + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16425545 + + + + Brazil + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 678823 + + + + Brazil + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 46 + + + + Brazil + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 15744512 + + + + Brazil + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14822960 + + + + Brazil + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 921510 + + + + Brazil + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 42 + + + + Brazil + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13888579 + + + + Brazil + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12865060 + + + + Brazil + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1023480 + + + + Brazil + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 39 + + + + Brazil + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13009364 + + + + Brazil + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11800327 + + + + Brazil + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1209013 + + + + Brazil + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 24 + + + + Brazil + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11833352 + + + + Brazil + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 10591463 + + + + Brazil + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1241866 + + + + Brazil + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 23 + + + + Brazil + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 10140402 + + + + Brazil + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8895243 + + + + Brazil + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1245146 + + + + Brazil + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13 + + + + Brazil + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8276221 + + + + Brazil + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 6974894 + + + + Brazil + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1301315 + + + + Brazil + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12 + + + + Brazil + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 6509120 + + + + Brazil + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5182313 + + + + Brazil + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1326791 + + + + Brazil + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16 + + + + Brazil + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4840810 + + + + Brazil + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3620917 + + + + Brazil + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1219885 + + + + Brazil + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8 + + + + Brazil + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3741636 + + + + Brazil + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2695518 + + + + Brazil + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1046111 + + + + Brazil + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7 + + + + Brazil + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2563447 + + + + Brazil + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1768283 + + + + Brazil + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 795159 + + + + Brazil + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5 + + + + Brazil + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1666972 + + + + Brazil + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1109769 + + + + Brazil + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 557190 + + + + Brazil + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13 + + + + Brazil + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 819483 + + + + Brazil + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 511065 + + + + Brazil + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 308414 + + + + Brazil + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4 + + + + Brazil + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 326558 + + + + Brazil + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 185172 + + + + Brazil + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 141383 + + + + Brazil + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3 + + + + Brazil + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 98335 + + + + Brazil + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 47628 + + + + Brazil + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 50706 + + + + Brazil + 2010 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1 + + + + Brazil + 2010 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 24236 + + + + Brazil + 2010 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 8916 + + + + Brazil + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 15319 + + + + Brazil + 2010 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1 + + + + Brazil + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17348067 + 4 + + + Brazil + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 16090194 + 4 + + + Brazil + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1257873 + 4 + + + Brazil + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 136881115 + 4 + + + Brazil + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 119328353 + 4 + + + Brazil + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17552762 + 4 + + + Brazil + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17939815 + 4 + + + Brazil + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17043398 + 4 + + + Brazil + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 896417 + 4 + + + Brazil + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 16141515 + 4 + + + Brazil + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 15055801 + 4 + + + Brazil + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1085714 + 4 + + + Brazil + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 13849665 + 4 + + + Brazil + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 12739047 + 4 + + + Brazil + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1110618 + 4 + + + Brazil + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 13028944 + 4 + + + Brazil + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 11765826 + 4 + + + Brazil + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1263118 + 4 + + + Brazil + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 12261529 + 4 + + + Brazil + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 10940001 + 4 + + + Brazil + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1321528 + 4 + + + Brazil + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 10546694 + 4 + + + Brazil + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 9235111 + 4 + + + Brazil + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1311583 + 4 + + + Brazil + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8721541 + 4 + + + Brazil + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7355198 + 4 + + + Brazil + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1366343 + 4 + + + Brazil + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7062601 + 4 + + + Brazil + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5626469 + 4 + + + Brazil + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1436132 + 4 + + + Brazil + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5444715 + 4 + + + Brazil + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4055355 + 4 + + + Brazil + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1389360 + 4 + + + Brazil + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4600929 + 4 + + + Brazil + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3259833 + 4 + + + Brazil + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1341096 + 4 + + + Brazil + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3581106 + 4 + + + Brazil + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2396782 + 4 + + + Brazil + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1184324 + 4 + + + Brazil + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2742302 + 4 + + + Brazil + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1755984 + 4 + + + Brazil + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 986318 + 4 + + + Brazil + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1779587 + 4 + + + Brazil + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1052365 + 4 + + + Brazil + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 727222 + 4 + + + Brazil + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1036034 + 4 + + + Brazil + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 561579 + 4 + + + Brazil + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 474455 + 4 + + + Brazil + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 534871 + 4 + + + Brazil + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 273103 + 4 + + + Brazil + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 261768 + 4 + + + Brazil + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 180426 + 4 + + + Brazil + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 81904 + 4 + + + Brazil + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 98522 + 4 + + + Brazil + 2000 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 56198 + 4 + + + Brazil + 2000 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 24045 + 4 + + + Brazil + 2000 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 32153 + 4 + + + Brazil + 2000 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 24576 + 4 + + + Brazil + 2000 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 16358 + 4 + + + Brazil + 2000 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8218 + 4 + + + British Virgin Islands + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 28054 + + + + British Virgin Islands + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 21114 + + + + British Virgin Islands + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 306 + + + + British Virgin Islands + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 6634 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 35453 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 35325 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 128 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 329390 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 317756 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 11634 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 34967 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 34820 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 147 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 38150 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 37834 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 316 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 39185 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 38735 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 450 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 36896 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 36337 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 559 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 33796 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 33199 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 597 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 30122 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 29450 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 672 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 24610 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 23889 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 721 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19781 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19027 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 754 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 14044 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 13225 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 819 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 8518 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 7366 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1152 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 5088 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3769 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1319 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3901 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2441 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1460 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2601 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1334 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1267 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1405 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 670 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 735 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 613 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 239 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 374 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 187 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 75 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 112 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 73 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 21 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 52 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 0 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 0 + + + + Brunei Darussalam + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 0 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 32020 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31903 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 117 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 263952 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 246837 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17115 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27963 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27796 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 167 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 32604 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 32101 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 503 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35773 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34910 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 863 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34375 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 33260 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1115 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 28764 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27645 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1119 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24198 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23063 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1135 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17149 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 16055 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1094 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10687 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9211 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1476 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6140 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4524 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1616 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4962 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2862 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2100 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9317 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3507 + + + + Brunei Darussalam + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5810 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 315466 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 309800 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5666 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6704764 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6593831 + + + + Bulgaria + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 110933 + + + + Bulgaria + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 377585 + + + + Bulgaria + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 370172 + + + + Bulgaria + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7413 + + + + Bulgaria + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 488807 + + + + Bulgaria + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 477723 + + + + Bulgaria + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11084 + + + + Bulgaria + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 491088 + + + + Bulgaria + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 479941 + + + + Bulgaria + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11147 + + + + Bulgaria + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 533945 + + + + Bulgaria + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 525688 + + + + Bulgaria + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8257 + + + + Bulgaria + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 545332 + + + + Bulgaria + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 538713 + + + + Bulgaria + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6619 + + + + Bulgaria + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 513814 + + + + Bulgaria + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 508504 + + + + Bulgaria + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5310 + + + + Bulgaria + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 495672 + + + + Bulgaria + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 490463 + + + + Bulgaria + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5209 + + + + Bulgaria + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 516851 + + + + Bulgaria + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 511606 + + + + Bulgaria + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5245 + + + + Bulgaria + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 523827 + + + + Bulgaria + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 518813 + + + + Bulgaria + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5014 + + + + Bulgaria + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 540980 + + + + Bulgaria + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 534811 + + + + Bulgaria + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6169 + + + + Bulgaria + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 415431 + + + + Bulgaria + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 408618 + + + + Bulgaria + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6813 + + + + Bulgaria + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 345327 + + + + Bulgaria + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 337557 + + + + Bulgaria + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7770 + + + + Bulgaria + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 301851 + + + + Bulgaria + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 292649 + + + + Bulgaria + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9202 + + + + Bulgaria + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 191309 + + + + Bulgaria + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 185373 + + + + Bulgaria + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5936 + + + + Bulgaria + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86822 + + + + Bulgaria + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 83874 + + + + Bulgaria + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2948 + + + + Bulgaria + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 17341 + + + + Bulgaria + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16503 + + + + Bulgaria + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 838 + + + + Bulgaria + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3078 + + + + Bulgaria + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2825 + + + + Bulgaria + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 253 + + + + Bulgaria + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 238 + + + + Bulgaria + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 198 + + + + Bulgaria + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 40 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 509023 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 497675 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10831 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 517 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7221083 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7069017 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 131041 + + + + Bulgaria + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 21025 + + + + Bulgaria + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 537284 + + + + Bulgaria + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 524632 + + + + Bulgaria + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11334 + + + + Bulgaria + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1318 + + + + Bulgaria + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 575671 + + + + Bulgaria + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 564949 + + + + Bulgaria + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 8497 + + + + Bulgaria + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2225 + + + + Bulgaria + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 571211 + + + + Bulgaria + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 562636 + + + + Bulgaria + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6562 + + + + Bulgaria + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2013 + + + + Bulgaria + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 542386 + + + + Bulgaria + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 535768 + + + + Bulgaria + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5221 + + + + Bulgaria + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1397 + + + + Bulgaria + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 526015 + + + + Bulgaria + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 520012 + + + + Bulgaria + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4915 + + + + Bulgaria + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1088 + + + + Bulgaria + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 550758 + + + + Bulgaria + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 544711 + + + + Bulgaria + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5004 + + + + Bulgaria + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1043 + + + + Bulgaria + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 561854 + + + + Bulgaria + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 555933 + + + + Bulgaria + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4775 + + + + Bulgaria + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1146 + + + + Bulgaria + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 593290 + + + + Bulgaria + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 585695 + + + + Bulgaria + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6315 + + + + Bulgaria + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1280 + + + + Bulgaria + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 483567 + + + + Bulgaria + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 474957 + + + + Bulgaria + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7503 + + + + Bulgaria + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1107 + + + + Bulgaria + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 440768 + + + + Bulgaria + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 430270 + + + + Bulgaria + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9450 + + + + Bulgaria + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1048 + + + + Bulgaria + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 455040 + + + + Bulgaria + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 439939 + + + + Bulgaria + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13928 + + + + Bulgaria + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1173 + + + + Bulgaria + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 388893 + + + + Bulgaria + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 374424 + + + + Bulgaria + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13030 + + + + Bulgaria + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1439 + + + + Bulgaria + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 291854 + + + + Bulgaria + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 279570 + + + + Bulgaria + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10461 + + + + Bulgaria + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1823 + + + + Bulgaria + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 115864 + + + + Bulgaria + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 108976 + + + + Bulgaria + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5742 + + + + Bulgaria + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1146 + + + + Bulgaria + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 59991 + + + + Bulgaria + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 54182 + + + + Bulgaria + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4904 + + + + Bulgaria + 2001 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 905 + + + + Bulgaria + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 15507 + + + + Bulgaria + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13077 + + + + Bulgaria + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2121 + + + + Bulgaria + 2001 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 309 + + + + Bulgaria + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1910 + + + + Bulgaria + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1499 + + + + Bulgaria + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 372 + + + + Bulgaria + 2001 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 39 + + + + Bulgaria + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 197 + + + + Bulgaria + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 112 + + + + Bulgaria + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 76 + + + + Bulgaria + 2001 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1746588 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 737176 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1009412 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9264639 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2415000 + + + + Burkina Faso + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6849639 + + + + Burkina Faso + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1475285 + + + + Burkina Faso + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 514409 + + + + Burkina Faso + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 960876 + + + + Burkina Faso + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1185378 + + + + Burkina Faso + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 356442 + + + + Burkina Faso + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 828936 + + + + Burkina Faso + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1009285 + + + + Burkina Faso + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 263804 + + + + Burkina Faso + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 745481 + + + + Burkina Faso + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 794820 + + + + Burkina Faso + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 183454 + + + + Burkina Faso + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 611366 + + + + Burkina Faso + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 656824 + + + + Burkina Faso + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 119635 + + + + Burkina Faso + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 537189 + + + + Burkina Faso + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 549287 + + + + Burkina Faso + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 83597 + + + + Burkina Faso + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 465690 + + + + Burkina Faso + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 427739 + + + + Burkina Faso + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 57471 + + + + Burkina Faso + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 370268 + + + + Burkina Faso + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 358810 + + + + Burkina Faso + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 42427 + + + + Burkina Faso + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 316383 + + + + Burkina Faso + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 273563 + + + + Burkina Faso + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 24348 + + + + Burkina Faso + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 249215 + + + + Burkina Faso + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 238962 + + + + Burkina Faso + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13043 + + + + Burkina Faso + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 225919 + + + + Burkina Faso + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 163609 + + + + Burkina Faso + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6850 + + + + Burkina Faso + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 156759 + + + + Burkina Faso + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 136282 + + + + Burkina Faso + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4046 + + + + Burkina Faso + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 132236 + + + + Burkina Faso + 2006 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 77113 + + + + Burkina Faso + 2006 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1617 + + + + Burkina Faso + 2006 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 75496 + + + + Burkina Faso + 2006 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50317 + + + + Burkina Faso + 2006 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 852 + + + + Burkina Faso + 2006 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49465 + + + + Burkina Faso + 2006 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 46290 + + + + Burkina Faso + 2006 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 766 + + + + Burkina Faso + 2006 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45524 + + + + Burkina Faso + 2006 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 74487 + + + + Burkina Faso + 2006 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5063 + + + + Burkina Faso + 2006 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 69424 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1082487 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 862667 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 216382 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3438 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5329185 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4631637 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 682809 + + + + Burkina Faso + 1996 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14739 + + + + Burkina Faso + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 767462 + + + + Burkina Faso + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 623220 + + + + Burkina Faso + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 141587 + + + + Burkina Faso + 1996 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2655 + + + + Burkina Faso + 1996 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 666645 + + + + Burkina Faso + 1996 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 567758 + + + + Burkina Faso + 1996 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 96864 + + + + Burkina Faso + 1996 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2023 + + + + Burkina Faso + 1996 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 572745 + + + + Burkina Faso + 1996 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 497614 + + + + Burkina Faso + 1996 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 73616 + + + + Burkina Faso + 1996 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1515 + + + + Burkina Faso + 1996 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 467470 + + + + Burkina Faso + 1996 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 413485 + + + + Burkina Faso + 1996 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 52821 + + + + Burkina Faso + 1996 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1164 + + + + Burkina Faso + 1996 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 390677 + + + + Burkina Faso + 1996 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 350958 + + + + Burkina Faso + 1996 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38833 + + + + Burkina Faso + 1996 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 886 + + + + Burkina Faso + 1996 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 311624 + + + + Burkina Faso + 1996 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 286642 + + + + Burkina Faso + 1996 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 24359 + + + + Burkina Faso + 1996 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 623 + + + + Burkina Faso + 1996 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 279315 + + + + Burkina Faso + 1996 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 264352 + + + + Burkina Faso + 1996 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14428 + + + + Burkina Faso + 1996 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 535 + + + + Burkina Faso + 1996 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 208700 + + + + Burkina Faso + 1996 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 199278 + + + + Burkina Faso + 1996 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9031 + + + + Burkina Faso + 1996 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 391 + + + + Burkina Faso + 1996 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 196248 + + + + Burkina Faso + 1996 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 189503 + + + + Burkina Faso + 1996 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6326 + + + + Burkina Faso + 1996 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 419 + + + + Burkina Faso + 1996 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 385812 + + + + Burkina Faso + 1996 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 376160 + + + + Burkina Faso + 1996 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8562 + + + + Burkina Faso + 1996 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1090 + + + + Burundi + 2008 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 992125 + + + + Burundi + 2008 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 576831 + + + + Burundi + 2008 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 415294 + + + + Burundi + 2008 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5414910 + + + + Burundi + 2008 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2629396 + + + + Burundi + 2008 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2785514 + + + + Burundi + 2008 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 967635 + + + + Burundi + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 589069 + + + + Burundi + 2008 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 378566 + + + + Burundi + 2008 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 771686 + + + + Burundi + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 424639 + + + + Burundi + 2008 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 347047 + + + + Burundi + 2008 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 607541 + + + + Burundi + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 342699 + + + + Burundi + 2008 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 264842 + + + + Burundi + 2008 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 414453 + + + + Burundi + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 214740 + + + + Burundi + 2008 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 199713 + + + + Burundi + 2008 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 371931 + + + + Burundi + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 139998 + + + + Burundi + 2008 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 231933 + + + + Burundi + 2008 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 303720 + + + + Burundi + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 96161 + + + + Burundi + 2008 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 207559 + + + + Burundi + 2008 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 280890 + + + + Burundi + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 85170 + + + + Burundi + 2008 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 195720 + + + + Burundi + 2008 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 228246 + + + + Burundi + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 63677 + + + + Burundi + 2008 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 164569 + + + + Burundi + 2008 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 141758 + + + + Burundi + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 39179 + + + + Burundi + 2008 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 102579 + + + + Burundi + 2008 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 107403 + + + + Burundi + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23489 + + + + Burundi + 2008 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 83914 + + + + Burundi + 2008 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 67434 + + + + Burundi + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13892 + + + + Burundi + 2008 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 53542 + + + + Burundi + 2008 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 63458 + + + + Burundi + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8795 + + + + Burundi + 2008 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 54663 + + + + Burundi + 2008 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 35140 + + + + Burundi + 2008 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4636 + + + + Burundi + 2008 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 30504 + + + + Burundi + 2008 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28212 + + + + Burundi + 2008 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2333 + + + + Burundi + 2008 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25879 + + + + Burundi + 2008 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11836 + + + + Burundi + 2008 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1201 + + + + Burundi + 2008 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10635 + + + + Burundi + 2008 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8545 + + + + Burundi + 2008 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 696 + + + + Burundi + 2008 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7849 + + + + Burundi + 2008 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7300 + + + + Burundi + 2008 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1345 + + + + Burundi + 2008 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5955 + + + + Burundi + 2008 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5597 + + + + Burundi + 2008 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 846 + + + + Burundi + 2008 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4751 + + + + Cambodia + 2008 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1619290 + + + + Cambodia + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1459706 + + + + Cambodia + 2008 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 159570 + + + + Cambodia + 2008 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 14 + + + + Cambodia + 2008 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8881890 + + + + Cambodia + 2008 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6891035 + + + + Cambodia + 2008 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1990705 + + + + Cambodia + 2008 + Total + Both Sexes + 15 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 150 + + + + Cambodia + 2008 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1369202 + + + + Cambodia + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1154342 + + + + Cambodia + 2008 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 214843 + + + + Cambodia + 2008 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 17 + + + + Cambodia + 2008 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1233361 + + + + Cambodia + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 988120 + + + + Cambodia + 2008 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 245223 + + + + Cambodia + 2008 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 18 + + + + Cambodia + 2008 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 693235 + + + + Cambodia + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 530388 + + + + Cambodia + 2008 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 162832 + + + + Cambodia + 2008 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 15 + + + + Cambodia + 2008 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 844948 + + + + Cambodia + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 666400 + + + + Cambodia + 2008 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 178531 + + + + Cambodia + 2008 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 17 + + + + Cambodia + 2008 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 737451 + + + + Cambodia + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 546019 + + + + Cambodia + 2008 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 191428 + + + + Cambodia + 2008 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4 + + + + Cambodia + 2008 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 653650 + + + + Cambodia + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 454342 + + + + Cambodia + 2008 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 199303 + + + + Cambodia + 2008 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5 + + + + Cambodia + 2008 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 490726 + + + + Cambodia + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 360066 + + + + Cambodia + 2008 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 130656 + + + + Cambodia + 2008 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4 + + + + Cambodia + 2008 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 391116 + + + + Cambodia + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 278759 + + + + Cambodia + 2008 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 112351 + + + + Cambodia + 2008 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6 + + + + Cambodia + 2008 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 277611 + + + + Cambodia + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 179347 + + + + Cambodia + 2008 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 98260 + + + + Cambodia + 2008 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4 + + + + Cambodia + 2008 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 216839 + + + + Cambodia + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 119337 + + + + Cambodia + 2008 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 97495 + + + + Cambodia + 2008 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7 + + + + Cambodia + 2008 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 158945 + + + + Cambodia + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 75024 + + + + Cambodia + 2008 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 83918 + + + + Cambodia + 2008 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3 + + + + Cambodia + 2008 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 195516 + + + + Cambodia + 2008 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 79185 + + + + Cambodia + 2008 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 116295 + + + + Cambodia + 2008 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 36 + + + + Cambodia + 1998 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1658196 + + + + Cambodia + 1998 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1119372 + + + + Cambodia + 1998 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 535651 + + + + Cambodia + 1998 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3173 + + + + Cambodia + 1998 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8198044 + + + + Cambodia + 1998 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5510127 + + + + Cambodia + 1998 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2665655 + + + + Cambodia + 1998 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 22262 + + + + Cambodia + 1998 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1344258 + + + + Cambodia + 1998 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1042795 + + + + Cambodia + 1998 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 297197 + + + + Cambodia + 1998 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4266 + + + + Cambodia + 1998 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 745687 + + + + Cambodia + 1998 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 546595 + + + + Cambodia + 1998 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 195996 + + + + Cambodia + 1998 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3096 + + + + Cambodia + 1998 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 888540 + + + + Cambodia + 1998 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 674920 + + + + Cambodia + 1998 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 210772 + + + + Cambodia + 1998 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2848 + + + + Cambodia + 1998 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 782682 + + + + Cambodia + 1998 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 547977 + + + + Cambodia + 1998 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 232850 + + + + Cambodia + 1998 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1855 + + + + Cambodia + 1998 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 695868 + + + + Cambodia + 1998 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 448112 + + + + Cambodia + 1998 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 246529 + + + + Cambodia + 1998 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1227 + + + + Cambodia + 1998 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 497067 + + + + Cambodia + 1998 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 345828 + + + + Cambodia + 1998 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 150364 + + + + Cambodia + 1998 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 875 + + + + Cambodia + 1998 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 415931 + + + + Cambodia + 1998 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 279396 + + + + Cambodia + 1998 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 135864 + + + + Cambodia + 1998 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 671 + + + + Cambodia + 1998 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 312463 + + + + Cambodia + 1998 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 183772 + + + + Cambodia + 1998 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 128170 + + + + Cambodia + 1998 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 521 + + + + Cambodia + 1998 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 256930 + + + + Cambodia + 1998 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 122146 + + + + Cambodia + 1998 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 134264 + + + + Cambodia + 1998 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 520 + + + + Cambodia + 1998 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 204994 + + + + Cambodia + 1998 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 79543 + + + + Cambodia + 1998 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 124724 + + + + Cambodia + 1998 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 727 + + + + Cambodia + 1998 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 166928 + + + + Cambodia + 1998 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 55776 + + + + Cambodia + 1998 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 110523 + + + + Cambodia + 1998 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 629 + + + + Cambodia + 1998 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 112213 + + + + Cambodia + 1998 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 33210 + + + + Cambodia + 1998 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 78374 + + + + Cambodia + 1998 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 629 + + + + Cambodia + 1998 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 116287 + + + + Cambodia + 1998 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 30685 + + + + Cambodia + 1998 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 84377 + + + + Cambodia + 1998 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1225 + + + + Chile + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1422452 + + + + Chile + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1370710 + + + + Chile + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 51742 + + + + Chile + 2002 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12648761 + + + + Chile + 2002 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12116154 + + + + Chile + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 532607 + + + + Chile + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1280089 + + + + Chile + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1267901 + + + + Chile + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12188 + + + + Chile + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1201426 + + + + Chile + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1188575 + + + + Chile + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12851 + + + + Chile + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1192724 + + + + Chile + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1177556 + + + + Chile + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 15168 + + + + Chile + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1200191 + + + + Chile + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1177102 + + + + Chile + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 23089 + + + + Chile + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1235000 + + + + Chile + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1200838 + + + + Chile + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 34162 + + + + Chile + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1131758 + + + + Chile + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1096169 + + + + Chile + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 35589 + + + + Chile + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 904666 + + + + Chile + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 872539 + + + + Chile + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 32127 + + + + Chile + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 759003 + + + + Chile + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 719530 + + + + Chile + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 39473 + + + + Chile + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 603974 + + + + Chile + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 558508 + + + + Chile + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 45466 + + + + Chile + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 499902 + + + + Chile + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 447612 + + + + Chile + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 52290 + + + + Chile + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 399287 + + + + Chile + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 350182 + + + + Chile + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 49105 + + + + Chile + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 348118 + + + + Chile + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 300519 + + + + Chile + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 47599 + + + + Chile + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 219331 + + + + Chile + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 182630 + + + + Chile + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 36701 + + + + Chile + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 137154 + + + + Chile + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 112734 + + + + Chile + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 24420 + + + + Chile + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 75130 + + + + Chile + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 61722 + + + + Chile + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 13408 + + + + Chile + 2002 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 28396 + + + + Chile + 2002 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 23163 + + + + Chile + 2002 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 5233 + + + + Chile + 2002 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9019 + + + + Chile + 2002 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 7223 + + + + Chile + 2002 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1796 + + + + Chile + 2002 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1141 + + + + Chile + 2002 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 941 + + + + Chile + 2002 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 200 + + + + China + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1111488248 + 5 + + + China + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1057297384 + 5 + + + China + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 54190864 + 5 + + + China + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 99889114 + 5 + + + China + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 99577266 + 5 + + + China + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 311848 + 5 + + + China + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 127412518 + 5 + + + China + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 126911286 + 5 + + + China + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 501232 + 5 + + + China + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 101013852 + 5 + + + China + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 100404823 + 5 + + + China + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 609029 + 5 + + + China + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 97138203 + 5 + + + China + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 96273898 + 5 + + + China + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 864305 + 5 + + + China + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 118025959 + 5 + + + China + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 116605651 + 5 + + + China + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1420308 + 5 + + + China + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 124753964 + 5 + + + China + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 122657002 + 5 + + + China + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2096962 + 5 + + + China + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 105594553 + 5 + + + China + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 103301323 + 5 + + + China + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2293230 + 5 + + + China + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 78753171 + 5 + + + China + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 75430773 + 5 + + + China + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3322398 + 5 + + + China + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 81312474 + 5 + + + China + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 75649087 + 5 + + + China + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5663387 + 5 + + + China + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 58667282 + 5 + + + China + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 52590232 + 5 + + + China + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6077050 + 5 + + + China + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 41113282 + 5 + + + China + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 34776290 + 5 + + + China + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6336992 + 5 + + + China + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 32972397 + 5 + + + China + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 25264402 + 5 + + + China + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7707995 + 5 + + + China + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 23852133 + 5 + + + China + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16126999 + 5 + + + China + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7725134 + 5 + + + China + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 13373198 + 5 + + + China + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7867884 + 5 + + + China + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5505314 + 5 + + + China + 2010 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7616148 + 5 + + + China + 2010 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3860468 + 5 + + + China + 2010 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3755680 + 5 + + + China + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 103031165 + 5,6 + + + China + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 102079099 + 5,6 + + + China + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 952066 + 5,6 + + + China + 2000 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 958084632 + 5,6 + + + China + 2000 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 871092563 + 5,6 + + + China + 2000 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 86992069 + 5,6 + + + China + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 94573174 + 5,6 + + + China + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 93270041 + 5,6 + + + China + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1303133 + 5,6 + + + China + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 117602265 + 5,6 + + + China + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 115453779 + 5,6 + + + China + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2148486 + 5,6 + + + China + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 127314298 + 5,6 + + + China + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 124604247 + 5,6 + + + China + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2710051 + 5,6 + + + China + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 109147295 + 5,6 + + + China + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 106517264 + 5,6 + + + China + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2630031 + 5,6 + + + China + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 81242945 + 5,6 + + + China + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 77691515 + 5,6 + + + China + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3551430 + 5,6 + + + China + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 85521045 + 5,6 + + + China + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 79609738 + 5,6 + + + China + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5911307 + 5,6 + + + China + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 63304200 + 5,6 + + + China + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 56775576 + 5,6 + + + China + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 6528624 + 5,6 + + + China + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 46370375 + 5,6 + + + China + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 38765410 + 5,6 + + + China + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7604965 + 5,6 + + + China + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 41703848 + 5,6 + + + China + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 30631813 + 5,6 + + + China + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 11072035 + 5,6 + + + China + 2000 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 88274022 + 5,6 + + + China + 2000 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 45694081 + 5,6 + + + China + 2000 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 42579941 + 5,6 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 289398 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 288644 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 754 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6894630 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6572421 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 322209 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 264900 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 264549 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 351 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 326214 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 325313 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 901 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 458407 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 456071 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2336 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 527028 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 523367 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3661 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 587743 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 583351 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4392 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 586611 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 580475 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6136 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 582989 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 575035 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7954 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 575242 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 563585 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 11657 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 630782 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 612374 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 18408 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 613802 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 583648 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 30154 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 492235 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 456273 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 35962 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 370751 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 335655 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 35096 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 588528 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 424081 + 7 + + + China, Hong Kong SAR + 2021 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 164447 + 7 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 259218 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 257926 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1292 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6765348 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6382575 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 382773 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 340907 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 338913 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1994 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 445074 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 442049 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3025 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 510236 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 505846 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4390 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 577232 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 570706 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6526 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 571293 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 563693 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7600 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 569805 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 561239 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8566 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 567037 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 556852 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10185 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 643065 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 625442 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 17623 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 623049 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 596795 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 26254 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 495279 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 463939 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 31340 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 395703 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 359030 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 36673 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 220827 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 187666 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 33161 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 546623 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 352479 + 8 + + + China, Hong Kong SAR + 2016 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 194144 + 8 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 - 19 + Total + Sample survey - de jure + Final figure, complete + 2017 + 32689 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 - 19 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 32620 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 69 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 + + Total + Sample survey - de jure + Final figure, complete + 2017 + 572987 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 + + Literate + Sample survey - de jure + Final figure, complete + 2017 + 553153 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 15 + + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 19834 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 20 - 24 + Total + Sample survey - de jure + Final figure, complete + 2017 + 52773 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 20 - 24 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 52670 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 103 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 25 - 29 + Total + Sample survey - de jure + Final figure, complete + 2017 + 71139 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 25 - 29 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 70950 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 189 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 30 - 34 + Total + Sample survey - de jure + Final figure, complete + 2017 + 63877 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 30 - 34 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 63727 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 150 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 35 - 39 + Total + Sample survey - de jure + Final figure, complete + 2017 + 50042 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 35 - 39 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 49735 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 307 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 40 - 44 + Total + Sample survey - de jure + Final figure, complete + 2017 + 51495 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 40 - 44 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 50942 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 553 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 45 - 49 + Total + Sample survey - de jure + Final figure, complete + 2017 + 50630 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 45 - 49 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 49835 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 795 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 50 - 54 + Total + Sample survey - de jure + Final figure, complete + 2017 + 53376 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 50 - 54 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 52082 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 1294 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 55 - 59 + Total + Sample survey - de jure + Final figure, complete + 2017 + 49272 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 55 - 59 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 46876 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 2396 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 60 - 64 + Total + Sample survey - de jure + Final figure, complete + 2017 + 38311 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 60 - 64 + Literate + Sample survey - de jure + Final figure, complete + 2017 + 35497 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 2814 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 65 + + Total + Sample survey - de jure + Final figure, complete + 2017 + 59383 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 65 + + Literate + Sample survey - de jure + Final figure, complete + 2017 + 48219 + 9 + + + China, Macao SAR + 2016 + Total + Both Sexes + 65 + + Illiterate + Sample survey - de jure + Final figure, complete + 2017 + 11164 + 9 + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38729 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38589 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 140 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 486633 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 465416 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 21217 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56044 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 55874 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 170 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56312 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56116 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 196 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 42331 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 42106 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 225 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 44661 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 44334 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 327 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 44822 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 44238 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 584 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 51324 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 50027 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1297 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 48063 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 45698 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2365 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38347 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 35452 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2895 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 26036 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 23956 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2080 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 39964 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 29026 + + + + China, Macao SAR + 2011 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10938 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 35972 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 35876 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 96 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 341014 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 311330 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 29684 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 28974 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 28832 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 142 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 31804 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 31490 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 314 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 34943 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 34260 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 683 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 45256 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 43710 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1546 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 46214 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 43155 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3059 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 37357 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 33982 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3375 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 25167 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 22659 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2508 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 13728 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 11984 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1744 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 9911 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7580 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2331 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 31688 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17802 + + + + China, Macao SAR + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 13886 + + + + Colombia + 2018 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3610584 + + + + Colombia + 2018 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3528944 + + + + Colombia + 2018 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 49473 + + + + Colombia + 2018 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 32167 + + + + Colombia + 2018 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 37791396 + + + + Colombia + 2018 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 35495014 + + + + Colombia + 2018 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1795994 + + + + Colombia + 2018 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 500388 + + + + Colombia + 2018 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3852255 + + + + Colombia + 2018 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3732205 + + + + Colombia + 2018 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 52996 + + + + Colombia + 2018 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 67054 + + + + Colombia + 2018 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3940288 + + + + Colombia + 2018 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3802178 + + + + Colombia + 2018 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 61037 + + + + Colombia + 2018 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 77073 + + + + Colombia + 2018 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3692174 + + + + Colombia + 2018 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3568351 + + + + Colombia + 2018 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 69281 + + + + Colombia + 2018 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 54542 + + + + Colombia + 2018 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3350529 + + + + Colombia + 2018 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3221929 + + + + Colombia + 2018 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 82015 + + + + Colombia + 2018 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 46585 + + + + Colombia + 2018 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3216644 + + + + Colombia + 2018 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3079864 + + + + Colombia + 2018 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 94625 + + + + Colombia + 2018 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 42155 + + + + Colombia + 2018 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2744664 + + + + Colombia + 2018 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2603167 + + + + Colombia + 2018 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 107209 + + + + Colombia + 2018 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 34288 + + + + Colombia + 2018 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2646101 + + + + Colombia + 2018 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2491350 + + + + Colombia + 2018 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 121341 + + + + Colombia + 2018 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 33410 + + + + Colombia + 2018 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2596378 + + + + Colombia + 2018 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2419034 + + + + Colombia + 2018 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 144951 + + + + Colombia + 2018 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 32393 + + + + Colombia + 2018 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2280799 + + + + Colombia + 2018 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2090829 + + + + Colombia + 2018 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 161363 + + + + Colombia + 2018 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 28607 + + + + Colombia + 2018 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1824650 + + + + Colombia + 2018 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1638311 + + + + Colombia + 2018 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 167583 + + + + Colombia + 2018 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 18756 + + + + Colombia + 2018 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1390092 + + + + Colombia + 2018 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1213356 + + + + Colombia + 2018 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 164755 + + + + Colombia + 2018 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 11981 + + + + Colombia + 2018 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1004419 + + + + Colombia + 2018 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 846131 + + + + Colombia + 2018 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 150666 + + + + Colombia + 2018 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 7622 + + + + Colombia + 2018 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 730633 + + + + Colombia + 2018 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 582724 + + + + Colombia + 2018 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 142437 + + + + Colombia + 2018 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 5472 + + + + Colombia + 2018 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 486776 + + + + Colombia + 2018 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 369634 + + + + Colombia + 2018 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 113208 + + + + Colombia + 2018 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 3934 + + + + Colombia + 2018 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 271420 + + + + Colombia + 2018 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 198764 + + + + Colombia + 2018 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 70229 + + + + Colombia + 2018 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2427 + + + + Colombia + 2018 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 109563 + + + + Colombia + 2018 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 78006 + + + + Colombia + 2018 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 30447 + + + + Colombia + 2018 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 1110 + + + + Colombia + 2018 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 31201 + + + + Colombia + 2018 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 21251 + + + + Colombia + 2018 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 9544 + + + + Colombia + 2018 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 406 + + + + Colombia + 2018 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2020 + 12226 + + + + Colombia + 2018 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 8986 + + + + Colombia + 2018 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2020 + 2834 + + + + Colombia + 2018 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2020 + 406 + + + + Colombia + 2005 + Total + Both Sexes + 5 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2008 + 37359523 + + + + Colombia + 2005 + Total + Both Sexes + 5 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2008 + 33441424 + + + + Colombia + 2005 + Total + Both Sexes + 5 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2008 + 3269504 + + + + Colombia + 2005 + Total + Both Sexes + 5 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2008 + 648595 + + + + Colombia + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4325890 + + + + Colombia + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4158697 + + + + Colombia + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 109008 + + + + Colombia + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 58185 + + + + Colombia + 2005 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 32778276 + + + + Colombia + 2005 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29729723 + + + + Colombia + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2457673 + + + + Colombia + 2005 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 590880 + + + + Colombia + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3885257 + + + + Colombia + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3723749 + + + + Colombia + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 111646 + + + + Colombia + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49862 + + + + Colombia + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3560869 + + + + Colombia + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3393379 + + + + Colombia + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 119795 + + + + Colombia + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47695 + + + + Colombia + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3241664 + + + + Colombia + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3064826 + + + + Colombia + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 130176 + + + + Colombia + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 46662 + + + + Colombia + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2895677 + + + + Colombia + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2707164 + + + + Colombia + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 140498 + + + + Colombia + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 48015 + + + + Colombia + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2903378 + + + + Colombia + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2681796 + + + + Colombia + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 164833 + + + + Colombia + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 56749 + + + + Colombia + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2721239 + + + + Colombia + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2494542 + + + + Colombia + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 182384 + + + + Colombia + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44313 + + + + Colombia + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2283328 + + + + Colombia + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2038758 + + + + Colombia + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 198728 + + + + Colombia + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45842 + + + + Colombia + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1829635 + + + + Colombia + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1584398 + + + + Colombia + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 200101 + + + + Colombia + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45136 + + + + Colombia + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1446203 + + + + Colombia + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1202263 + + + + Colombia + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 199775 + + + + Colombia + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44165 + + + + Colombia + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1100559 + + + + Colombia + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 865433 + + + + Colombia + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 194042 + + + + Colombia + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41084 + + + + Colombia + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 916133 + + + + Colombia + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 678561 + + + + Colombia + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 209855 + + + + Colombia + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27717 + + + + Colombia + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 696740 + + + + Colombia + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 486325 + + + + Colombia + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 183558 + + + + Colombia + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26857 + + + + Colombia + 2005 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 497309 + + + + Colombia + 2005 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 343890 + + + + Colombia + 2005 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 149417 + + + + Colombia + 2005 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4002 + + + + Colombia + 2005 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 272275 + + + + Colombia + 2005 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 180791 + + + + Colombia + 2005 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 89098 + + + + Colombia + 2005 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2386 + + + + Colombia + 2005 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 140027 + + + + Colombia + 2005 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 89075 + + + + Colombia + 2005 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49609 + + + + Colombia + 2005 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1343 + + + + Colombia + 2005 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47020 + + + + Colombia + 2005 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28489 + + + + Colombia + 2005 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 17968 + + + + Colombia + 2005 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 563 + + + + Colombia + 2005 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12059 + + + + Colombia + 2005 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6348 + + + + Colombia + 2005 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5538 + + + + Colombia + 2005 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 173 + + + + Colombia + 2005 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3014 + + + + Colombia + 2005 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1239 + + + + Colombia + 2005 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1644 + + + + Colombia + 2005 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 131 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 387056 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 384194 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2862 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3620938 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3534208 + + + + Costa Rica + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86730 + + + + Costa Rica + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 405176 + + + + Costa Rica + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 402228 + + + + Costa Rica + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2948 + + + + Costa Rica + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 410480 + + + + Costa Rica + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 406362 + + + + Costa Rica + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4118 + + + + Costa Rica + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 378424 + + + + Costa Rica + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 373176 + + + + Costa Rica + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5248 + + + + Costa Rica + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 332897 + + + + Costa Rica + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 326993 + + + + Costa Rica + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5904 + + + + Costa Rica + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 288071 + + + + Costa Rica + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 281974 + + + + Costa Rica + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6097 + + + + Costa Rica + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 282914 + + + + Costa Rica + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 277344 + + + + Costa Rica + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5570 + + + + Costa Rica + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 267747 + + + + Costa Rica + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 261930 + + + + Costa Rica + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5817 + + + + Costa Rica + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 235256 + + + + Costa Rica + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 228999 + + + + Costa Rica + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6257 + + + + Costa Rica + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 183581 + + + + Costa Rica + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 177774 + + + + Costa Rica + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5807 + + + + Costa Rica + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 137624 + + + + Costa Rica + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 131525 + + + + Costa Rica + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6099 + + + + Costa Rica + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 103528 + + + + Costa Rica + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 96733 + + + + Costa Rica + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6795 + + + + Costa Rica + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 78054 + + + + Costa Rica + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 70921 + + + + Costa Rica + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7133 + + + + Costa Rica + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56538 + + + + Costa Rica + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 49860 + + + + Costa Rica + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6678 + + + + Costa Rica + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 40154 + + + + Costa Rica + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 35409 + + + + Costa Rica + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4745 + + + + Costa Rica + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 21263 + + + + Costa Rica + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 18526 + + + + Costa Rica + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2737 + + + + Costa Rica + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8719 + + + + Costa Rica + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7396 + + + + Costa Rica + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1323 + + + + Costa Rica + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2947 + + + + Costa Rica + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2472 + + + + Costa Rica + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 475 + + + + Costa Rica + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 509 + + + + Costa Rica + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 392 + + + + Costa Rica + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 117 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 429019 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 417314 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11705 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3022391 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2877599 + + + + Costa Rica + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 144792 + + + + Costa Rica + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 392063 + + + + Costa Rica + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 383652 + + + + Costa Rica + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8411 + + + + Costa Rica + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 342728 + + + + Costa Rica + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 333612 + + + + Costa Rica + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9116 + + + + Costa Rica + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 295752 + + + + Costa Rica + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 286644 + + + + Costa Rica + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9108 + + + + Costa Rica + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 296738 + + + + Costa Rica + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 287816 + + + + Costa Rica + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8922 + + + + Costa Rica + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 288790 + + + + Costa Rica + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 279210 + + + + Costa Rica + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9580 + + + + Costa Rica + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 241262 + + + + Costa Rica + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 231840 + + + + Costa Rica + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9422 + + + + Costa Rica + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 183629 + + + + Costa Rica + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 174538 + + + + Costa Rica + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9091 + + + + Costa Rica + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 146024 + + + + Costa Rica + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 136043 + + + + Costa Rica + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9981 + + + + Costa Rica + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 104912 + + + + Costa Rica + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 94509 + + + + Costa Rica + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10403 + + + + Costa Rica + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 88142 + + + + Costa Rica + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 76116 + + + + Costa Rica + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12026 + + + + Costa Rica + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 71650 + + + + Costa Rica + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 60068 + + + + Costa Rica + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11582 + + + + Costa Rica + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 57641 + + + + Costa Rica + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 48705 + + + + Costa Rica + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8936 + + + + Costa Rica + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38313 + + + + Costa Rica + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 31663 + + + + Costa Rica + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6650 + + + + Costa Rica + 2000 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 45728 + + + + Costa Rica + 2000 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35869 + + + + Costa Rica + 2000 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9859 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2628957 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1791614 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 813587 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 23756 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15814477 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7506559 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 8114245 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 193673 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2114581 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1190941 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 896278 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 27362 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2105594 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1013725 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1057180 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 34689 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2050384 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 896044 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1120931 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 33409 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1770782 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 749240 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 995703 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 25839 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1359469 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 585089 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 758223 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 16157 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1002585 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 413317 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 578983 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 10285 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 781041 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 290637 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 482868 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7536 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 641975 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 222220 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 414766 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4989 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 445441 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 150410 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 291584 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3447 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 337681 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 100401 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 235046 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2234 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 575987 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 102921 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 469096 + + + + Côte d'Ivoire + 2014 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3970 + + + + Croatia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 235402 + + + + Croatia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 234871 + + + + Croatia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 531 + + + + Croatia + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3867863 + + + + Croatia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3835561 + + + + Croatia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 32302 + + + + Croatia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 244177 + + + + Croatia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 243540 + + + + Croatia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 637 + + + + Croatia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 261658 + + + + Croatia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 260897 + + + + Croatia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 761 + + + + Croatia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 289066 + + + + Croatia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 288164 + + + + Croatia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 902 + + + + Croatia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 294619 + + + + Croatia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 293777 + + + + Croatia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 842 + + + + Croatia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 284754 + + + + Croatia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 283889 + + + + Croatia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 865 + + + + Croatia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 286933 + + + + Croatia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 286071 + + + + Croatia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 862 + + + + Croatia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 307561 + + + + Croatia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 306505 + + + + Croatia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1056 + + + + Croatia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 320502 + + + + Croatia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 319306 + + + + Croatia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1196 + + + + Croatia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 311818 + + + + Croatia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 310562 + + + + Croatia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1256 + + + + Croatia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 272740 + + + + Croatia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 271284 + + + + Croatia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1456 + + + + Croatia + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 202002 + + + + Croatia + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 199919 + + + + Croatia + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2083 + + + + Croatia + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 212401 + + + + Croatia + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 208337 + + + + Croatia + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 4064 + + + + Croatia + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 175526 + + + + Croatia + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 169448 + + + + Croatia + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 6078 + + + + Croatia + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 108104 + + + + Croatia + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 102764 + + + + Croatia + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 5340 + + + + Croatia + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 47641 + + + + Croatia + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 44508 + + + + Croatia + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 3133 + + + + Croatia + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 10758 + + + + Croatia + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9821 + + + + Croatia + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 937 + + + + Croatia + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2003 + + + + Croatia + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1732 + + + + Croatia + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 271 + + + + Croatia + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 198 + + + + Croatia + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 166 + + + + Croatia + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 32 + + + + Croatia + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 268584 + + + + Croatia + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 267788 + + + + Croatia + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 791 + + + + Croatia + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5 + + + + Croatia + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3951410 + + + + Croatia + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3871123 + + + + Croatia + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 69777 + + + + Croatia + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10510 + + + + Croatia + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 298606 + + + + Croatia + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 297380 + + + + Croatia + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1054 + + + + Croatia + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 172 + + + + Croatia + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 305631 + + + + Croatia + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 304156 + + + + Croatia + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1067 + + + + Croatia + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 408 + + + + Croatia + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 294497 + + + + Croatia + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 293044 + + + + Croatia + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1011 + + + + Croatia + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 442 + + + + Croatia + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 295431 + + + + Croatia + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 293978 + + + + Croatia + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1082 + + + + Croatia + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 371 + + + + Croatia + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 317273 + + + + Croatia + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 315547 + + + + Croatia + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1334 + + + + Croatia + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 392 + + + + Croatia + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 333403 + + + + Croatia + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 331432 + + + + Croatia + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1488 + + + + Croatia + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 483 + + + + Croatia + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 333576 + + + + Croatia + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 331355 + + + + Croatia + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1635 + + + + Croatia + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 586 + + + + Croatia + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 299773 + + + + Croatia + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 297093 + + + + Croatia + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2000 + + + + Croatia + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 680 + + + + Croatia + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 229775 + + + + Croatia + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 226316 + + + + Croatia + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2960 + + + + Croatia + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 499 + + + + Croatia + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 262016 + + + + Croatia + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 255408 + + + + Croatia + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6148 + + + + Croatia + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 460 + + + + Croatia + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 252947 + + + + Croatia + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 241598 + + + + Croatia + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10981 + + + + Croatia + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 368 + + + + Croatia + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 203885 + + + + Croatia + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 191261 + + + + Croatia + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 12305 + + + + Croatia + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 319 + + + + Croatia + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 137201 + + + + Croatia + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 125801 + + + + Croatia + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11135 + + + + Croatia + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 265 + + + + Croatia + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 56954 + + + + Croatia + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 50968 + + + + Croatia + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5826 + + + + Croatia + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 160 + + + + Croatia + 2001 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 42553 + + + + Croatia + 2001 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 34577 + + + + Croatia + 2001 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7763 + + + + Croatia + 2001 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 213 + + + + Croatia + 2001 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 19305 + + + + Croatia + 2001 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13421 + + + + Croatia + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1197 + + + + Croatia + 2001 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4687 + + + + Cuba + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 858271 + + + + Cuba + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 858271 + + + + Cuba + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 0 + + + + Cuba + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9739666 + + + + Cuba + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9721821 + + + + Cuba + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 17845 + + + + Cuba + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 807796 + + + + Cuba + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 807630 + + + + Cuba + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 166 + + + + Cuba + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 665299 + + + + Cuba + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 664811 + + + + Cuba + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 488 + + + + Cuba + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 895385 + + + + Cuba + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 894897 + + + + Cuba + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 488 + + + + Cuba + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1076571 + + + + Cuba + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1076084 + + + + Cuba + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 487 + + + + Cuba + 2002 + Total + Both Sexes + 35 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1938289 + + + + Cuba + 2002 + Total + Both Sexes + 35 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1937177 + + + + Cuba + 2002 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1112 + + + + Cuba + 2002 + Total + Both Sexes + 45 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1297106 + + + + Cuba + 2002 + Total + Both Sexes + 45 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1295546 + + + + Cuba + 2002 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1560 + + + + Cuba + 2002 + Total + Both Sexes + 55 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1036983 + + + + Cuba + 2002 + Total + Both Sexes + 55 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1033170 + + + + Cuba + 2002 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3813 + + + + Cuba + 2002 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1163966 + + + + Cuba + 2002 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1154235 + + + + Cuba + 2002 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9731 + + + + Cyprus + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55818 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55320 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 83 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 415 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 705459 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 683214 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9152 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 13093 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 66073 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 65125 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 133 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 815 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 74114 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 72308 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 209 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1597 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 69834 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 67110 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 199 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2525 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 61862 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 59749 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 225 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1888 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 59728 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 57924 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 232 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1572 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 57240 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55981 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 254 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1005 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 56128 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 54971 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 231 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 926 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 47762 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 46864 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 295 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 603 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 45034 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44093 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 421 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 520 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 36328 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 35233 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 711 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 384 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 29433 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 28018 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1131 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 284 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 21058 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 19353 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1556 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 149 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 24948 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 21157 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3470 + 10 + + + Cyprus + 2011 + Total + Both Sexes + 80 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 321 + 10 + + + Cyprus + 2011 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 99 + 10 + + + Cyprus + 2011 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8 + 10 + + + Cyprus + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + 10 + + + Cyprus + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 89 + 10 + + + Cyprus + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 54603 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 54361 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 99 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 143 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 542087 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 521334 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17225 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3528 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 51803 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 51590 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 140 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 73 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 48272 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 47978 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 202 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 92 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 48233 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 47924 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 196 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 113 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 51561 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 51200 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 261 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 100 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 52289 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 51930 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 282 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 77 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 45580 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 45163 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 319 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 98 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 42587 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 41949 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 499 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 139 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 34554 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 33561 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 828 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 165 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 30747 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 29106 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1397 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 244 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 80473 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 66300 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 12982 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1191 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1385 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 272 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 20 + 10,11 + + + Cyprus + 2001 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1093 + 10,11 + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2021350 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2021345 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20495407 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20495081 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 326 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2052342 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2052339 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1841400 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1841391 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1737185 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1737181 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1680272 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1680264 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2214929 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2214927 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2015514 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2015510 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1559527 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1559523 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1315101 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1315090 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 902876 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 902863 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1058263 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1058259 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 913304 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 913296 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 662627 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 662591 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 335467 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 335417 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 185250 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 185085 + + + + Democratic People's Republic of Korea + 2008 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 165 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 973761 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 905769 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 67992 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7610115 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6690727 + + + + Dominican Republic + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 919388 + + + + Dominican Republic + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 983223 + + + + Dominican Republic + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 939814 + + + + Dominican Republic + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43409 + + + + Dominican Republic + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 876934 + + + + Dominican Republic + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 818723 + + + + Dominican Republic + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58211 + + + + Dominican Republic + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 766233 + + + + Dominican Republic + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 702226 + + + + Dominican Republic + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 64007 + + + + Dominican Republic + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 713072 + + + + Dominican Republic + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 642425 + + + + Dominican Republic + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 70647 + + + + Dominican Republic + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 636723 + + + + Dominican Republic + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 566260 + + + + Dominican Republic + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 70463 + + + + Dominican Republic + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 580398 + + + + Dominican Republic + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 508757 + + + + Dominican Republic + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 71641 + + + + Dominican Republic + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 499459 + + + + Dominican Republic + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 427638 + + + + Dominican Republic + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 71821 + + + + Dominican Republic + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 403689 + + + + Dominican Republic + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 330996 + + + + Dominican Republic + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 72693 + + + + Dominican Republic + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 320960 + + + + Dominican Republic + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 251426 + + + + Dominican Republic + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 69534 + + + + Dominican Republic + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 268529 + + + + Dominican Republic + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 207732 + + + + Dominican Republic + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 60797 + + + + Dominican Republic + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 186305 + + + + Dominican Republic + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 140510 + + + + Dominican Republic + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 45795 + + + + Dominican Republic + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 157330 + + + + Dominican Republic + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 107098 + + + + Dominican Republic + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 50232 + + + + Dominican Republic + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 103228 + + + + Dominican Republic + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 66082 + + + + Dominican Republic + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 37146 + + + + Dominican Republic + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 76710 + + + + Dominican Republic + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44342 + + + + Dominican Republic + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32368 + + + + Dominican Republic + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34585 + + + + Dominican Republic + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 18131 + + + + Dominican Republic + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 16454 + + + + Dominican Republic + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17991 + + + + Dominican Republic + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8190 + + + + Dominican Republic + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9801 + + + + Dominican Republic + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7029 + + + + Dominican Republic + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2988 + + + + Dominican Republic + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4041 + + + + Dominican Republic + 2010 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3956 + + + + Dominican Republic + 2010 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1620 + + + + Dominican Republic + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2336 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 959338 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 924534 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 34804 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6616763 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5846514 + + + + Dominican Republic + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 770249 + + + + Dominican Republic + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 838239 + + + + Dominican Republic + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 800558 + + + + Dominican Republic + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37681 + + + + Dominican Republic + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 785802 + + + + Dominican Republic + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 729574 + + + + Dominican Republic + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 56228 + + + + Dominican Republic + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 687785 + + + + Dominican Republic + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 630167 + + + + Dominican Republic + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 57618 + + + + Dominican Republic + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 646112 + + + + Dominican Republic + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 586769 + + + + Dominican Republic + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 59343 + + + + Dominican Republic + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 590750 + + + + Dominican Republic + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 525626 + + + + Dominican Republic + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 65124 + + + + Dominican Republic + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 476647 + + + + Dominican Republic + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 409801 + + + + Dominican Republic + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 66846 + + + + Dominican Republic + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 380028 + + + + Dominican Republic + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 316046 + + + + Dominican Republic + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 63982 + + + + Dominican Republic + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 330713 + + + + Dominican Republic + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 268127 + + + + Dominican Republic + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 62586 + + + + Dominican Republic + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 233976 + + + + Dominican Republic + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 192427 + + + + Dominican Republic + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 41549 + + + + Dominican Republic + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 207933 + + + + Dominican Republic + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 156930 + + + + Dominican Republic + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 51003 + + + + Dominican Republic + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 158365 + + + + Dominican Republic + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 114737 + + + + Dominican Republic + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 43628 + + + + Dominican Republic + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 136068 + + + + Dominican Republic + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 87701 + + + + Dominican Republic + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 48367 + + + + Dominican Republic + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 77871 + + + + Dominican Republic + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 48348 + + + + Dominican Republic + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29523 + + + + Dominican Republic + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 54402 + + + + Dominican Republic + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 28520 + + + + Dominican Republic + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25882 + + + + Dominican Republic + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27303 + + + + Dominican Republic + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14799 + + + + Dominican Republic + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12504 + + + + Dominican Republic + 2002 + Total + Both Sexes + 90 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25431 + + + + Dominican Republic + 2002 + Total + Both Sexes + 90 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11850 + + + + Dominican Republic + 2002 + Total + Both Sexes + 90 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 13581 + + + + Ecuador + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1539342 + + + + Ecuador + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1522726 + + + + Ecuador + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 16616 + + + + Ecuador + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 11494416 + + + + Ecuador + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 10805704 + + + + Ecuador + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 688712 + + + + Ecuador + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1419537 + + + + Ecuador + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1401122 + + + + Ecuador + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 18415 + + + + Ecuador + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1292126 + + + + Ecuador + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1266508 + + + + Ecuador + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 25618 + + + + Ecuador + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1200564 + + + + Ecuador + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1170277 + + + + Ecuador + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 30287 + + + + Ecuador + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1067289 + + + + Ecuador + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1034978 + + + + Ecuador + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 32311 + + + + Ecuador + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 938726 + + + + Ecuador + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 904535 + + + + Ecuador + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 34191 + + + + Ecuador + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 819002 + + + + Ecuador + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 779275 + + + + Ecuador + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 39727 + + + + Ecuador + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 750141 + + + + Ecuador + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 700310 + + + + Ecuador + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 49831 + + + + Ecuador + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 610132 + + + + Ecuador + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 553357 + + + + Ecuador + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 56775 + + + + Ecuador + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 515893 + + + + Ecuador + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 453709 + + + + Ecuador + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 62184 + + + + Ecuador + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 400759 + + + + Ecuador + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 334570 + + + + Ecuador + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 66189 + + + + Ecuador + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 323817 + + + + Ecuador + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 254646 + + + + Ecuador + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 69171 + + + + Ecuador + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 240091 + + + + Ecuador + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 176589 + + + + Ecuador + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 63502 + + + + Ecuador + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 165218 + + + + Ecuador + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 115004 + + + + Ecuador + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 50214 + + + + Ecuador + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 115552 + + + + Ecuador + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 77047 + + + + Ecuador + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 38505 + + + + Ecuador + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 60735 + + + + Ecuador + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 39313 + + + + Ecuador + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 21422 + + + + Ecuador + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 25500 + + + + Ecuador + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 15906 + + + + Ecuador + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 9594 + + + + Ecuador + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 8039 + + + + Ecuador + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 4773 + + + + Ecuador + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 3266 + + + + Ecuador + 2010 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1953 + + + + Ecuador + 2010 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 1059 + + + + Ecuador + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 894 + + + + Ecuador + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1341039 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1277117 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 63307 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 615 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9457627 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 8654019 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 794314 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9294 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1240531 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1195871 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 44095 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 565 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1168637 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1126335 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 41697 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 605 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 947395 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 910866 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 35919 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 610 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 863071 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 822418 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 40041 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 612 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 774543 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 726074 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 47909 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 560 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 673871 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 616777 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 56412 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 682 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 538983 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 481430 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 56937 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 616 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 462855 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 395859 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 66360 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 636 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 339411 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 280591 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 58253 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 567 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 293667 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 228230 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 64856 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 581 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 813624 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 592451 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 218528 + 12 + + + Ecuador + 2001 + Total + Both Sexes + 65 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 2645 + 12 + + + Egypt + 2017 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 9030546 + 13 + + + Egypt + 2017 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8662609 + 13 + + + Egypt + 2017 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 367937 + 13 + + + Egypt + 2017 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 71382733 + 13 + + + Egypt + 2017 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 52949037 + 13 + + + Egypt + 2017 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 18433696 + 13 + + + Egypt + 2017 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 9006058 + 13 + + + Egypt + 2017 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8188770 + 13 + + + Egypt + 2017 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 817288 + 13 + + + Egypt + 2017 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8231944 + 13 + + + Egypt + 2017 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7009596 + 13 + + + Egypt + 2017 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1222348 + 13 + + + Egypt + 2017 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8167607 + 13 + + + Egypt + 2017 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 6641638 + 13 + + + Egypt + 2017 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1525969 + 13 + + + Egypt + 2017 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7344289 + 13 + + + Egypt + 2017 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5638508 + 13 + + + Egypt + 2017 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1705781 + 13 + + + Egypt + 2017 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 6486415 + 13 + + + Egypt + 2017 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4671001 + 13 + + + Egypt + 2017 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1815414 + 13 + + + Egypt + 2017 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5152723 + 13 + + + Egypt + 2017 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3419163 + 13 + + + Egypt + 2017 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1733560 + 13 + + + Egypt + 2017 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4392511 + 13 + + + Egypt + 2017 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2688019 + 13 + + + Egypt + 2017 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1704492 + 13 + + + Egypt + 2017 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3998096 + 13 + + + Egypt + 2017 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2122206 + 13 + + + Egypt + 2017 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1875890 + 13 + + + Egypt + 2017 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3260371 + 13 + + + Egypt + 2017 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1597864 + 13 + + + Egypt + 2017 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1662507 + 13 + + + Egypt + 2017 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2649360 + 13 + + + Egypt + 2017 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1118545 + 13 + + + Egypt + 2017 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1530815 + 13 + + + Egypt + 2017 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1720201 + 13 + + + Egypt + 2017 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 650011 + 13 + + + Egypt + 2017 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1070190 + 13 + + + Egypt + 2017 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1015950 + 13 + + + Egypt + 2017 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 316833 + 13 + + + Egypt + 2017 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 699117 + 13 + + + Egypt + 2017 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 926662 + 13 + + + Egypt + 2017 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 224274 + 13 + + + Egypt + 2017 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 702388 + 13 + + + Egypt + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7718491 + + + + Egypt + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 347384 + + + + Egypt + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7370716 + + + + Egypt + 2006 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 391 + + + + Egypt + 2006 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 57434884 + + + + Egypt + 2006 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 17023517 + + + + Egypt + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 40365422 + + + + Egypt + 2006 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 45945 + + + + Egypt + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8539832 + + + + Egypt + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 999281 + + + + Egypt + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7539376 + + + + Egypt + 2006 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1175 + + + + Egypt + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7873192 + + + + Egypt + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1478114 + + + + Egypt + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6389259 + + + + Egypt + 2006 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5819 + + + + Egypt + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6391623 + + + + Egypt + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1610872 + + + + Egypt + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4773707 + + + + Egypt + 2006 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7044 + + + + Egypt + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4733495 + + + + Egypt + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1405707 + + + + Egypt + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3318466 + + + + Egypt + 2006 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9322 + + + + Egypt + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4656897 + + + + Egypt + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1734445 + + + + Egypt + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2916440 + + + + Egypt + 2006 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6012 + + + + Egypt + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4092499 + + + + Egypt + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1734928 + + + + Egypt + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2353166 + + + + Egypt + 2006 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4405 + + + + Egypt + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3674382 + + + + Egypt + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1753407 + + + + Egypt + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1917624 + + + + Egypt + 2006 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3351 + + + + Egypt + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3061286 + + + + Egypt + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1624349 + + + + Egypt + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1434162 + + + + Egypt + 2006 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2775 + + + + Egypt + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2265429 + + + + Egypt + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1296060 + + + + Egypt + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 967742 + + + + Egypt + 2006 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1627 + + + + Egypt + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1705502 + + + + Egypt + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1050538 + + + + Egypt + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 653641 + + + + Egypt + 2006 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1323 + + + + Egypt + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1193600 + + + + Egypt + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 821134 + + + + Egypt + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 371545 + + + + Egypt + 2006 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 921 + + + + Egypt + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 789892 + + + + Egypt + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 584687 + + + + Egypt + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 204617 + + + + Egypt + 2006 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 588 + + + + Egypt + 2006 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 738764 + + + + Egypt + 2006 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 582611 + + + + Egypt + 2006 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 154961 + + + + Egypt + 2006 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1192 + + + + El Salvador + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 706347 + + + + El Salvador + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 670367 + + + + El Salvador + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35980 + + + + El Salvador + 2007 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4503493 + + + + El Salvador + 2007 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3784775 + + + + El Salvador + 2007 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 718718 + + + + El Salvador + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 600565 + + + + El Salvador + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 568012 + + + + El Salvador + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 32553 + + + + El Salvador + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 486542 + + + + El Salvador + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 448997 + + + + El Salvador + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37545 + + + + El Salvador + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 457890 + + + + El Salvador + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 411723 + + + + El Salvador + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 46167 + + + + El Salvador + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 402249 + + + + El Salvador + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 352868 + + + + El Salvador + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49381 + + + + El Salvador + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 353147 + + + + El Salvador + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 298892 + + + + El Salvador + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 54255 + + + + El Salvador + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 303631 + + + + El Salvador + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 247058 + + + + El Salvador + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 56573 + + + + El Salvador + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 252122 + + + + El Salvador + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 194966 + + + + El Salvador + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 57156 + + + + El Salvador + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 215734 + + + + El Salvador + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 160271 + + + + El Salvador + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 55463 + + + + El Salvador + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 183075 + + + + El Salvador + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 128322 + + + + El Salvador + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 54753 + + + + El Salvador + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 151864 + + + + El Salvador + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 98381 + + + + El Salvador + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 53483 + + + + El Salvador + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 125157 + + + + El Salvador + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75027 + + + + El Salvador + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 50130 + + + + El Salvador + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 97457 + + + + El Salvador + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 52187 + + + + El Salvador + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 45270 + + + + El Salvador + 2007 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75984 + + + + El Salvador + 2007 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 36951 + + + + El Salvador + 2007 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 39033 + + + + El Salvador + 2007 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 46870 + + + + El Salvador + 2007 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 21724 + + + + El Salvador + 2007 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25146 + + + + El Salvador + 2007 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 44859 + + + + El Salvador + 2007 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 19029 + + + + El Salvador + 2007 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25830 + + + + Estonia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 58636 + 14 + + + Estonia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 58026 + 14 + + + Estonia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 14 + + + Estonia + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 610 + 14 + + + Estonia + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1153200 + + + + Estonia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1135218 + + + + Estonia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1490 + + + + Estonia + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16492 + + + + Estonia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 67639 + + + + Estonia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 67486 + + + + Estonia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 30 + + + + Estonia + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 123 + + + + Estonia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 94294 + + + + Estonia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 93400 + + + + Estonia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 62 + + + + Estonia + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 832 + + + + Estonia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 92924 + + + + Estonia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 90746 + + + + Estonia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 152 + + + + Estonia + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2026 + + + + Estonia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 88648 + + + + Estonia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86570 + + + + Estonia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 157 + + + + Estonia + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1921 + + + + Estonia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 89773 + + + + Estonia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 88041 + + + + Estonia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 177 + + + + Estonia + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1555 + + + + Estonia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 88227 + + + + Estonia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86639 + + + + Estonia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 151 + + + + Estonia + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1437 + + + + Estonia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 85869 + + + + Estonia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 84423 + + + + Estonia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 108 + + + + Estonia + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1338 + + + + Estonia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 91535 + + + + Estonia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 90128 + + + + Estonia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 94 + + + + Estonia + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1313 + + + + Estonia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86426 + + + + Estonia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 85296 + + + + Estonia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 79 + + + + Estonia + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1051 + + + + Estonia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 79789 + + + + Estonia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 78886 + + + + Estonia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 58 + + + + Estonia + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 845 + + + + Estonia + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 57796 + + + + Estonia + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 57120 + + + + Estonia + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 49 + + + + Estonia + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 627 + + + + Estonia + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 65471 + + + + Estonia + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 64658 + + + + Estonia + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 59 + + + + Estonia + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 754 + + + + Estonia + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 47683 + + + + Estonia + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 46907 + + + + Estonia + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 127 + + + + Estonia + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 649 + + + + Estonia + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 35617 + + + + Estonia + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 34830 + + + + Estonia + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 110 + + + + Estonia + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 677 + + + + Estonia + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 17320 + + + + Estonia + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16792 + + + + Estonia + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 53 + + + + Estonia + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 475 + + + + Estonia + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4483 + + + + Estonia + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4270 + + + + Estonia + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 18 + + + + Estonia + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 195 + + + + Estonia + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 944 + + + + Estonia + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 886 + + + + Estonia + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5 + + + + Estonia + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 53 + + + + Estonia + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 126 + + + + Estonia + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 114 + + + + Estonia + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + + + + Estonia + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11 + + + + Estonia + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 107465 + + + + Estonia + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 106637 + + + + Estonia + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 303 + + + + Estonia + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 525 + + + + Estonia + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1228606 + + + + Estonia + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1198143 + + + + Estonia + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2850 + + + + Estonia + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 27613 + + + + Estonia + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 103772 + + + + Estonia + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 101468 + + + + Estonia + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 205 + + + + Estonia + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2099 + + + + Estonia + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 94648 + + + + Estonia + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 91119 + + + + Estonia + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 238 + + + + Estonia + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 3291 + + + + Estonia + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 94433 + + + + Estonia + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 91835 + + + + Estonia + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 213 + + + + Estonia + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2385 + + + + Estonia + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 89336 + + + + Estonia + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 87441 + + + + Estonia + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 187 + + + + Estonia + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1708 + + + + Estonia + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 96623 + + + + Estonia + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 94659 + + + + Estonia + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 174 + + + + Estonia + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1790 + + + + Estonia + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 99434 + + + + Estonia + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 97479 + + + + Estonia + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 129 + + + + Estonia + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1826 + + + + Estonia + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 95069 + + + + Estonia + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 92930 + + + + Estonia + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 173 + + + + Estonia + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1966 + + + + Estonia + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 85760 + + + + Estonia + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 83656 + + + + Estonia + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 98 + + + + Estonia + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2006 + + + + Estonia + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 74163 + + + + Estonia + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 72421 + + + + Estonia + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 112 + + + + Estonia + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1630 + + + + Estonia + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 82746 + + + + Estonia + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 80568 + + + + Estonia + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 130 + + + + Estonia + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2048 + + + + Estonia + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 69442 + + + + Estonia + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 67426 + + + + Estonia + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 198 + + + + Estonia + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1818 + + + + Estonia + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 60865 + + + + Estonia + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 58844 + + + + Estonia + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 185 + + + + Estonia + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1836 + + + + Estonia + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 39142 + + + + Estonia + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 37736 + + + + Estonia + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 133 + + + + Estonia + 2000 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1273 + + + + Estonia + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 18187 + + + + Estonia + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 17411 + + + + Estonia + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 120 + + + + Estonia + 2000 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 656 + + + + Estonia + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 12728 + + + + Estonia + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 12037 + + + + Estonia + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 170 + + + + Estonia + 2000 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 521 + + + + Estonia + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 4062 + + + + Estonia + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 3801 + + + + Estonia + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 66 + + + + Estonia + 2000 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 195 + + + + Estonia + 2000 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 663 + + + + Estonia + 2000 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 610 + + + + Estonia + 2000 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 15 + + + + Estonia + 2000 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 38 + + + + Estonia + 2000 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 68 + + + + Estonia + 2000 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 65 + + + + Estonia + 2000 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 1 + + + + Estonia + 2000 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 2 + + + + Estonia + 2000 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2004 + 0 + + + + Estonia + 2000 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 0 + + + + Estonia + 2000 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2004 + 0 + + + + Estonia + 2000 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2004 + 0 + + + + Eswatini + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 127822 + + + + Eswatini + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 119491 + + + + Eswatini + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6755 + + + + Eswatini + 2007 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1576 + + + + Eswatini + 2007 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 714320 + + + + Eswatini + 2007 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 620241 + + + + Eswatini + 2007 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 77568 + + + + Eswatini + 2007 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 16511 + + + + Eswatini + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 118842 + + + + Eswatini + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 112078 + + + + Eswatini + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4509 + + + + Eswatini + 2007 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2255 + + + + Eswatini + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 103834 + + + + Eswatini + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 95501 + + + + Eswatini + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5511 + + + + Eswatini + 2007 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2822 + + + + Eswatini + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 81635 + + + + Eswatini + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 74208 + + + + Eswatini + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4958 + + + + Eswatini + 2007 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2469 + + + + Eswatini + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 59303 + + + + Eswatini + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 53295 + + + + Eswatini + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4448 + + + + Eswatini + 2007 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1560 + + + + Eswatini + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49389 + + + + Eswatini + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 43243 + + + + Eswatini + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4806 + + + + Eswatini + 2007 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1340 + + + + Eswatini + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 38100 + + + + Eswatini + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31922 + + + + Eswatini + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5123 + + + + Eswatini + 2007 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1055 + + + + Eswatini + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33012 + + + + Eswatini + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26458 + + + + Eswatini + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5691 + + + + Eswatini + 2007 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 863 + + + + Eswatini + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25721 + + + + Eswatini + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19794 + + + + Eswatini + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5314 + + + + Eswatini + 2007 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 613 + + + + Eswatini + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20089 + + + + Eswatini + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14584 + + + + Eswatini + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5019 + + + + Eswatini + 2007 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 486 + + + + Eswatini + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18169 + + + + Eswatini + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11121 + + + + Eswatini + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6609 + + + + Eswatini + 2007 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 439 + + + + Eswatini + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14438 + + + + Eswatini + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7865 + + + + Eswatini + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6242 + + + + Eswatini + 2007 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 331 + + + + Eswatini + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8815 + + + + Eswatini + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4438 + + + + Eswatini + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4171 + + + + Eswatini + 2007 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 206 + + + + Eswatini + 2007 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6683 + + + + Eswatini + 2007 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2847 + + + + Eswatini + 2007 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3675 + + + + Eswatini + 2007 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 161 + + + + Eswatini + 2007 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6790 + + + + Eswatini + 2007 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2545 + + + + Eswatini + 2007 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4060 + + + + Eswatini + 2007 + Total + Both Sexes + 80 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 185 + + + + Eswatini + 2007 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1678 + + + + Eswatini + 2007 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 851 + + + + Eswatini + 2007 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 677 + + + + Eswatini + 2007 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 150 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 10412226 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 5944535 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4467691 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 50978968 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 21763933 + + + + Ethiopia + 2007 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 29215035 + + + + Ethiopia + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 8748344 + + + + Ethiopia + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 5299527 + + + + Ethiopia + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3448817 + + + + Ethiopia + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 6401976 + + + + Ethiopia + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3030571 + + + + Ethiopia + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3371405 + + + + Ethiopia + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 5662510 + + + + Ethiopia + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2206198 + + + + Ethiopia + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3456312 + + + + Ethiopia + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4220156 + + + + Ethiopia + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1528150 + + + + Ethiopia + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2692006 + + + + Ethiopia + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3777698 + + + + Ethiopia + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1289861 + + + + Ethiopia + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2487837 + + + + Ethiopia + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2874562 + + + + Ethiopia + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 806741 + + + + Ethiopia + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2067821 + + + + Ethiopia + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2248907 + + + + Ethiopia + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 569601 + + + + Ethiopia + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1679306 + + + + Ethiopia + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1893856 + + + + Ethiopia + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 366826 + + + + Ethiopia + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1527030 + + + + Ethiopia + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1172356 + + + + Ethiopia + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 226135 + + + + Ethiopia + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 946221 + + + + Ethiopia + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1236689 + + + + Ethiopia + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 178360 + + + + Ethiopia + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1058329 + + + + Ethiopia + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 803871 + + + + Ethiopia + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 131155 + + + + Ethiopia + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 672716 + + + + Ethiopia + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 675206 + + + + Ethiopia + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 82751 + + + + Ethiopia + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 592455 + + + + Ethiopia + 2007 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 850611 + + + + Ethiopia + 2007 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 103522 + + + + Ethiopia + 2007 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 747089 + + + + Fiji + 1996 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 92855 + + + + Fiji + 1996 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 90892 + + + + Fiji + 1996 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 1963 + + + + Fiji + 1996 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 593768 + + + + Fiji + 1996 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 556455 + + + + Fiji + 1996 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 37313 + + + + Fiji + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 83682 + + + + Fiji + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 83149 + + + + Fiji + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 533 + + + + Fiji + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 66955 + + + + Fiji + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 66369 + + + + Fiji + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 586 + + + + Fiji + 1996 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 61660 + + + + Fiji + 1996 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 60911 + + + + Fiji + 1996 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 749 + + + + Fiji + 1996 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 60841 + + + + Fiji + 1996 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 59875 + + + + Fiji + 1996 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 966 + + + + Fiji + 1996 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 55779 + + + + Fiji + 1996 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 54208 + + + + Fiji + 1996 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 1571 + + + + Fiji + 1996 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 44180 + + + + Fiji + 1996 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 40428 + + + + Fiji + 1996 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3752 + + + + Fiji + 1996 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 37081 + + + + Fiji + 1996 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 32378 + + + + Fiji + 1996 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 4703 + + + + Fiji + 1996 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 28683 + + + + Fiji + 1996 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 23893 + + + + Fiji + 1996 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 4790 + + + + Fiji + 1996 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 22245 + + + + Fiji + 1996 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 17660 + + + + Fiji + 1996 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 4585 + + + + Fiji + 1996 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 15459 + + + + Fiji + 1996 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 11643 + + + + Fiji + 1996 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3816 + + + + Fiji + 1996 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 10761 + + + + Fiji + 1996 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 7249 + + + + Fiji + 1996 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3512 + + + + Fiji + 1996 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 6357 + + + + Fiji + 1996 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 4072 + + + + Fiji + 1996 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 2285 + + + + Fiji + 1996 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 7230 + + + + Fiji + 1996 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3728 + + + + Fiji + 1996 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3502 + + + + Georgia + 2014 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 206216 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 205221 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 253 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 742 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3228691 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3170810 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 12576 + 15 + + + Georgia + 2014 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 45305 + 15 + + + Georgia + 2014 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 226022 + 15 + + + Georgia + 2014 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 223463 + 15 + + + Georgia + 2014 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 583 + 15 + + + Georgia + 2014 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1976 + 15 + + + Georgia + 2014 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 266125 + 15 + + + Georgia + 2014 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 260983 + 15 + + + Georgia + 2014 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 862 + 15 + + + Georgia + 2014 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4280 + 15 + + + Georgia + 2014 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 278662 + 15 + + + Georgia + 2014 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 273181 + 15 + + + Georgia + 2014 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1035 + 15 + + + Georgia + 2014 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4446 + 15 + + + Georgia + 2014 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 262060 + 15 + + + Georgia + 2014 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 257007 + 15 + + + Georgia + 2014 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 820 + 15 + + + Georgia + 2014 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4233 + 15 + + + Georgia + 2014 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 248549 + 15 + + + Georgia + 2014 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 243946 + 15 + + + Georgia + 2014 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 701 + 15 + + + Georgia + 2014 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3902 + 15 + + + Georgia + 2014 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 243281 + 15 + + + Georgia + 2014 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 238812 + 15 + + + Georgia + 2014 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 668 + 15 + + + Georgia + 2014 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3801 + 15 + + + Georgia + 2014 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 239407 + 15 + + + Georgia + 2014 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 235223 + 15 + + + Georgia + 2014 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 658 + 15 + + + Georgia + 2014 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3526 + 15 + + + Georgia + 2014 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 271386 + 15 + + + Georgia + 2014 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 266925 + 15 + + + Georgia + 2014 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 714 + 15 + + + Georgia + 2014 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3747 + 15 + + + Georgia + 2014 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 245391 + 15 + + + Georgia + 2014 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 241265 + 15 + + + Georgia + 2014 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 690 + 15 + + + Georgia + 2014 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3436 + 15 + + + Georgia + 2014 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 211385 + 15 + + + Georgia + 2014 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 207645 + 15 + + + Georgia + 2014 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 756 + 15 + + + Georgia + 2014 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2984 + 15 + + + Georgia + 2014 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 155702 + 15 + + + Georgia + 2014 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 152779 + 15 + + + Georgia + 2014 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 671 + 15 + + + Georgia + 2014 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2252 + 15 + + + Georgia + 2014 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 123605 + 15 + + + Georgia + 2014 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 120950 + 15 + + + Georgia + 2014 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 738 + 15 + + + Georgia + 2014 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1917 + 15 + + + Georgia + 2014 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 135764 + 15 + + + Georgia + 2014 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 132191 + 15 + + + Georgia + 2014 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1406 + 15 + + + Georgia + 2014 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2167 + 15 + + + Georgia + 2014 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 71675 + 15 + + + Georgia + 2014 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 69327 + 15 + + + Georgia + 2014 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1208 + 15 + + + Georgia + 2014 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1140 + 15 + + + Georgia + 2014 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 34508 + 15 + + + Georgia + 2014 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 33421 + 15 + + + Georgia + 2014 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 523 + 15 + + + Georgia + 2014 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 564 + 15 + + + Georgia + 2014 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7495 + 15 + + + Georgia + 2014 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7160 + 15 + + + Georgia + 2014 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 177 + 15 + + + Georgia + 2014 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 158 + 15 + + + Georgia + 2014 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1171 + 15 + + + Georgia + 2014 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1077 + 15 + + + Georgia + 2014 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 70 + 15 + + + Georgia + 2014 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 24 + 15 + + + Georgia + 2014 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 287 + 15 + + + Georgia + 2014 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 234 + 15 + + + Georgia + 2014 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 43 + 15 + + + Georgia + 2014 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 0 + 15 + + + Georgia + 2014 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 0 + 15 + + + Georgia + 2014 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 0 + 15 + + + Georgia + 2014 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 0 + 15 + + + Georgia + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 370068 + + + + Georgia + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 362701 + + + + Georgia + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 553 + + + + Georgia + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21 + + + + Georgia + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3825659 + + + + Georgia + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3765495 + + + + Georgia + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12557 + + + + Georgia + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2269 + + + + Georgia + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 357145 + + + + Georgia + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 355590 + + + + Georgia + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 636 + + + + Georgia + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 59 + + + + Georgia + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 327471 + + + + Georgia + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 326301 + + + + Georgia + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 559 + + + + Georgia + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 74 + + + + Georgia + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 311176 + + + + Georgia + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 310175 + + + + Georgia + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 444 + + + + Georgia + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55 + + + + Georgia + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 300627 + + + + Georgia + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 299580 + + + + Georgia + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 475 + + + + Georgia + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 66 + + + + Georgia + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 323458 + + + + Georgia + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 322281 + + + + Georgia + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 490 + + + + Georgia + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 60 + + + + Georgia + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 335467 + + + + Georgia + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 334153 + + + + Georgia + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 467 + + + + Georgia + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 94 + + + + Georgia + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 287627 + + + + Georgia + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 286352 + + + + Georgia + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 377 + + + + Georgia + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 66 + + + + Georgia + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 247379 + + + + Georgia + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 245856 + + + + Georgia + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 424 + + + + Georgia + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 63 + + + + Georgia + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 148879 + + + + Georgia + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 147496 + + + + Georgia + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 334 + + + + Georgia + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31 + + + + Georgia + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 257825 + + + + Georgia + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 253150 + + + + Georgia + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1086 + + + + Georgia + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49 + + + + Georgia + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 202359 + + + + Georgia + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 194834 + + + + Georgia + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1524 + + + + Georgia + 2002 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27 + + + + Georgia + 2002 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 353856 + + + + Georgia + 2002 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 326290 + + + + Georgia + 2002 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5187 + + + + Georgia + 2002 + Total + Both Sexes + 70 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25 + + + + Georgia + 2002 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2322 + + + + Georgia + 2002 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 736 + + + + Georgia + 2002 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1 + + + + Georgia + 2002 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1579 + + + + Ghana + 2010 + Total + Both Sexes + 11 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2184430 + + + + Ghana + 2010 + Total + Both Sexes + 11 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2019208 + + + + Ghana + 2010 + Total + Both Sexes + 11 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 165222 + + + + Ghana + 2010 + Total + Both Sexes + 11 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 17392855 + + + + Ghana + 2010 + Total + Both Sexes + 11 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 12892787 + + + + Ghana + 2010 + Total + Both Sexes + 11 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4500068 + + + + Ghana + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2609989 + + + + Ghana + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2320303 + + + + Ghana + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 289686 + + + + Ghana + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2323491 + + + + Ghana + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1908486 + + + + Ghana + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 415005 + + + + Ghana + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2050111 + + + + Ghana + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1567779 + + + + Ghana + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 482332 + + + + Ghana + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1678809 + + + + Ghana + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1199801 + + + + Ghana + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 479008 + + + + Ghana + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1421403 + + + + Ghana + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 972033 + + + + Ghana + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 449370 + + + + Ghana + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1186350 + + + + Ghana + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 774258 + + + + Ghana + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 412092 + + + + Ghana + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 938098 + + + + Ghana + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 611452 + + + + Ghana + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 326646 + + + + Ghana + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 833098 + + + + Ghana + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 526868 + + + + Ghana + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 306230 + + + + Ghana + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 523695 + + + + Ghana + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 341194 + + + + Ghana + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 182501 + + + + Ghana + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 475849 + + + + Ghana + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 244046 + + + + Ghana + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 231803 + + + + Ghana + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 293871 + + + + Ghana + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 138364 + + + + Ghana + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 155507 + + + + Ghana + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 351330 + + + + Ghana + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 122948 + + + + Ghana + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 228382 + + + + Ghana + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 205953 + + + + Ghana + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 66374 + + + + Ghana + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 139579 + + + + Ghana + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 159084 + + + + Ghana + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 40716 + + + + Ghana + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 118368 + + + + Ghana + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 83070 + + + + Ghana + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 23224 + + + + Ghana + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 59846 + + + + Ghana + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 51081 + + + + Ghana + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10378 + + + + Ghana + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 40703 + + + + Ghana + 2010 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 23143 + + + + Ghana + 2010 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5355 + + + + Ghana + 2010 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 17788 + + + + Ghana + 2000 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 11105236 + + + + Ghana + 2000 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 6010428 + + + + Ghana + 2000 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 5094808 + + + + Greece + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 519429 + + + + Greece + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 262427 + + + + Greece + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 257002 + 16 + + + Greece + 2011 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9766447 + + + + Greece + 2011 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9243940 + + + + Greece + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 522507 + 16 + + + Greece + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 553276 + + + + Greece + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 546954 + + + + Greece + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6322 + 16 + + + Greece + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 627097 + + + + Greece + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 618010 + + + + Greece + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9087 + 16 + + + Greece + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 723771 + + + + Greece + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 711609 + + + + Greece + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12162 + 16 + + + Greece + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 822475 + + + + Greece + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 810292 + + + + Greece + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12183 + 16 + + + Greece + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 812829 + + + + Greece + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 802080 + + + + Greece + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10749 + 16 + + + Greece + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 832666 + + + + Greece + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 823100 + + + + Greece + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9566 + 16 + + + Greece + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 748429 + + + + Greece + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 740062 + + + + Greece + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8367 + 16 + + + Greece + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 731486 + + + + Greece + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 723118 + + + + Greece + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8368 + 16 + + + Greece + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 660368 + + + + Greece + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 652179 + + + + Greece + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8189 + 16 + + + Greece + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 625769 + + + + Greece + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 615406 + + + + Greece + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10363 + 16 + + + Greece + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 508276 + + + + Greece + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 494723 + + + + Greece + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 13553 + 16 + + + Greece + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 542165 + + + + Greece + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 509412 + + + + Greece + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 32753 + 16 + + + Greece + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 475077 + + + + Greece + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 421169 + + + + Greece + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 53908 + 16 + + + Greece + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 352373 + + + + Greece + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 314708 + + + + Greece + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 37665 + 16 + + + Greece + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 159841 + + + + Greece + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 140456 + + + + Greece + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 19385 + 16 + + + Greece + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 53445 + + + + Greece + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 44638 + + + + Greece + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8807 + 16 + + + Greece + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 15187 + + + + Greece + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 11866 + + + + Greece + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3321 + 16 + + + Greece + 2011 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2488 + + + + Greece + 2011 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1731 + + + + Greece + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 757 + 16 + + + Greece + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 586395 + + + + Greece + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 586394 + + + + Greece + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1 + + + + Greece + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9859593 + + + + Greece + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9488141 + + + + Greece + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 371452 + + + + Greece + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 726174 + + + + Greece + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 720168 + + + + Greece + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6006 + + + + Greece + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 835463 + + + + Greece + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 824924 + + + + Greece + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10539 + + + + Greece + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 847427 + + + + Greece + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 836892 + + + + Greece + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10535 + + + + Greece + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 869932 + + + + Greece + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 859532 + + + + Greece + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10400 + + + + Greece + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 783413 + + + + Greece + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 773899 + + + + Greece + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9514 + + + + Greece + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 781943 + + + + Greece + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 772414 + + + + Greece + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9529 + + + + Greece + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 713975 + + + + Greece + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 704149 + + + + Greece + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 9826 + + + + Greece + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 687349 + + + + Greece + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 675695 + + + + Greece + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11654 + + + + Greece + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 560215 + + + + Greece + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 544138 + + + + Greece + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 16077 + + + + Greece + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 640074 + + + + Greece + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 601470 + + + + Greece + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 38604 + + + + Greece + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 623245 + + + + Greece + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 554898 + + + + Greece + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 68347 + + + + Greece + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 545018 + + + + Greece + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 489964 + + + + Greece + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 55054 + + + + Greece + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 328918 + + + + Greece + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 288173 + + + + Greece + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 40745 + + + + Greece + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 188193 + + + + Greece + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 154064 + + + + Greece + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 34129 + + + + Greece + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 105194 + + + + Greece + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 78822 + + + + Greece + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 26372 + + + + Greece + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 29500 + + + + Greece + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 18561 + + + + Greece + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10939 + + + + Greece + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5467 + + + + Greece + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2976 + + + + Greece + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2491 + + + + Greece + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1698 + + + + Greece + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1008 + + + + Greece + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 690 + + + + Guatemala + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1480290 + + + + Guatemala + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1265942 + + + + Guatemala + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 214348 + + + + Guatemala + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7967465 + + + + Guatemala + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5748692 + + + + Guatemala + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2218773 + + + + Guatemala + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1208669 + + + + Guatemala + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1017723 + + + + Guatemala + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 190946 + + + + Guatemala + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1023878 + + + + Guatemala + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 817883 + + + + Guatemala + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 205995 + + + + Guatemala + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 772115 + + + + Guatemala + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 593553 + + + + Guatemala + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 178562 + + + + Guatemala + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 652460 + + + + Guatemala + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 480314 + + + + Guatemala + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 172146 + + + + Guatemala + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 575161 + + + + Guatemala + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 390943 + + + + Guatemala + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 184218 + + + + Guatemala + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 513438 + + + + Guatemala + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 325567 + + + + Guatemala + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 187871 + + + + Guatemala + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 410410 + + + + Guatemala + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 240809 + + + + Guatemala + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 169601 + + + + Guatemala + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 367940 + + + + Guatemala + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 195598 + + + + Guatemala + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 172342 + + + + Guatemala + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 249324 + + + + Guatemala + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 122264 + + + + Guatemala + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 127060 + + + + Guatemala + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 215713 + + + + Guatemala + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 95932 + + + + Guatemala + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 119781 + + + + Guatemala + 2002 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 498067 + + + + Guatemala + 2002 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 202164 + + + + Guatemala + 2002 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 295903 + + + + Guinea + 2014 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 5824177 + + + + Guinea + 2014 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1862117 + + + + Guinea + 2014 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3946813 + + + + Guinea + 2014 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15247 + + + + Guinea-Bissau + 2009 + Total + Both Sexes + 6 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1171087 + + + + Guinea-Bissau + 2009 + Total + Both Sexes + 6 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 581986 + + + + Guinea-Bissau + 2009 + Total + Both Sexes + 6 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 539344 + + + + Guinea-Bissau + 2009 + Total + Both Sexes + 6 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 49757 + + + + Honduras + 2013 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1020405.76901 + + + + Honduras + 2013 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 962627.25415 + + + + Honduras + 2013 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 57778.51486 + + + + Honduras + 2013 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 6374213.62722 + + + + Honduras + 2013 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 5559961.59 + + + + Honduras + 2013 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 814252.03722 + + + + Honduras + 2013 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 982164.01348 + + + + Honduras + 2013 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 926551.32371 + + + + Honduras + 2013 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 55612.68977 + + + + Honduras + 2013 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 840800.14369 + + + + Honduras + 2013 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 783620.15422 + + + + Honduras + 2013 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 57179.98947 + + + + Honduras + 2013 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 656443.40525 + + + + Honduras + 2013 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 599901.78843 + + + + Honduras + 2013 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 56541.61682 + + + + Honduras + 2013 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 567366.86525 + + + + Honduras + 2013 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 508057.63457 + + + + Honduras + 2013 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 59309.23068 + + + + Honduras + 2013 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 484739.82428 + + + + Honduras + 2013 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 422773.95391 + + + + Honduras + 2013 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 61965.87037 + + + + Honduras + 2013 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 399554.90255 + + + + Honduras + 2013 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 340199.62186 + + + + Honduras + 2013 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 59355.28069 + + + + Honduras + 2013 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 318026.28261 + + + + Honduras + 2013 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 263087.85052 + + + + Honduras + 2013 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 54938.43209 + + + + Honduras + 2013 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 293255.93621 + + + + Honduras + 2013 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 231315.72871 + + + + Honduras + 2013 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 61940.2075 + + + + Honduras + 2013 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 210708.36279 + + + + Honduras + 2013 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 159989.15958 + + + + Honduras + 2013 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 50719.20321 + + + + Honduras + 2013 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 189636.43846 + + + + Honduras + 2013 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 134214.65835 + + + + Honduras + 2013 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 55421.78011 + + + + Honduras + 2013 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 135708.57467 + + + + Honduras + 2013 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 87212.69501 + + + + Honduras + 2013 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 48495.87966 + + + + Honduras + 2013 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 106565.71489 + + + + Honduras + 2013 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 62448.63615 + + + + Honduras + 2013 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 44117.07874 + + + + Honduras + 2013 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 78406.95758 + + + + Honduras + 2013 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 41226.83976 + + + + Honduras + 2013 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 37180.11782 + + + + Honduras + 2013 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 90430.4365 + + + + Honduras + 2013 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 36734.29107 + + + + Honduras + 2013 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 53696.14543 + + + + Honduras + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 805682 + + + + Honduras + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 716173 + + + + Honduras + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 89509 + + + + Honduras + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4330051 + + + + Honduras + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3536057 + + + + Honduras + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 793994 + + + + Honduras + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 706845 + + + + Honduras + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 633879 + + + + Honduras + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 72966 + + + + Honduras + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 586457 + + + + Honduras + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 516419 + + + + Honduras + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 70038 + + + + Honduras + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 433087 + + + + Honduras + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 375553 + + + + Honduras + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 57534 + + + + Honduras + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 352292 + + + + Honduras + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 299285 + + + + Honduras + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 53007 + + + + Honduras + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 310363 + + + + Honduras + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 251883 + + + + Honduras + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 58480 + + + + Honduras + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 269632 + + + + Honduras + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 211301 + + + + Honduras + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 58331 + + + + Honduras + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 212570 + + + + Honduras + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 160750 + + + + Honduras + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 51820 + + + + Honduras + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 179471 + + + + Honduras + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 124901 + + + + Honduras + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 54570 + + + + Honduras + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 121043 + + + + Honduras + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 74529 + + + + Honduras + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 46514 + + + + Honduras + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 111483 + + + + Honduras + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 61551 + + + + Honduras + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49932 + + + + Honduras + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 82186 + + + + Honduras + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 40674 + + + + Honduras + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 41512 + + + + Honduras + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 63283 + + + + Honduras + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29101 + + + + Honduras + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 34182 + + + + Honduras + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 44178 + + + + Honduras + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18259 + + + + Honduras + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25919 + + + + Honduras + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27664 + + + + Honduras + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11651 + + + + Honduras + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 16013 + + + + Honduras + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14959 + + + + Honduras + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6262 + + + + Honduras + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8697 + + + + Honduras + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5989 + + + + Honduras + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2686 + + + + Honduras + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3303 + + + + Honduras + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2487 + + + + Honduras + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1085 + + + + Honduras + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1402 + + + + Honduras + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 380 + + + + Honduras + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 115 + + + + Honduras + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 265 + + + + Hungary + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 624495 + + + + Hungary + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 619290 + + + + Hungary + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 5205 + + + + Hungary + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 9127874 + + + + Hungary + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 9064758 + + + + Hungary + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 63116 + + + + Hungary + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 668609 + + + + Hungary + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 664815 + + + + Hungary + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3794 + + + + Hungary + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 809302 + + + + Hungary + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 805682 + + + + Hungary + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3620 + + + + Hungary + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 786991 + + + + Hungary + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 783322 + + + + Hungary + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3669 + + + + Hungary + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 700857 + + + + Hungary + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 697179 + + + + Hungary + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3678 + + + + Hungary + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 608734 + + + + Hungary + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 604946 + + + + Hungary + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3788 + + + + Hungary + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 708584 + + + + Hungary + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 703954 + + + + Hungary + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 4630 + + + + Hungary + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 824725 + + + + Hungary + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 820170 + + + + Hungary + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 4555 + + + + Hungary + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 704742 + + + + Hungary + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 700302 + + + + Hungary + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 4440 + + + + Hungary + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 609276 + + + + Hungary + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 604652 + + + + Hungary + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 4624 + + + + Hungary + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 535309 + + + + Hungary + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 530198 + + + + Hungary + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 5111 + + + + Hungary + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 490297 + + + + Hungary + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 485180 + + + + Hungary + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 5117 + + + + Hungary + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 437347 + + + + Hungary + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 433657 + + + + Hungary + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 3690 + + + + Hungary + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 338823 + + + + Hungary + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 336016 + + + + Hungary + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 2807 + + + + Hungary + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 154224 + + + + Hungary + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 152802 + + + + Hungary + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 1422 + + + + Hungary + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 89448 + + + + Hungary + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 87805 + + + + Hungary + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 1643 + + + + Hungary + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 29189 + + + + Hungary + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 28129 + + + + Hungary + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 1060 + + + + Hungary + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 5993 + + + + Hungary + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 5792 + + + + Hungary + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 201 + + + + Hungary + 2001 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 929 + + + + Hungary + 2001 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 867 + + + + Hungary + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 62 + + + + India + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 124846858 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 102015840 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22831018 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 787107902 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 506091478 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 281016424 + 17,18 + + + India + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 100215890 + 17,18 + + + India + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 79462115 + 17,18 + + + India + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20753775 + 17,18 + + + India + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 89764132 + 17,18 + + + India + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65731454 + 17,18 + + + India + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24032678 + 17,18 + + + India + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 83422393 + 17,18 + + + India + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55931949 + 17,18 + + + India + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27490444 + 17,18 + + + India + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 74274044 + 17,18 + + + India + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 45813001 + 17,18 + + + India + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 28461043 + 17,18 + + + India + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 70574085 + 17,18 + + + India + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 41072506 + 17,18 + + + India + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 29501579 + 17,18 + + + India + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55738297 + 17,18 + + + India + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31477300 + 17,18 + + + India + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24260997 + 17,18 + + + India + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 47408976 + 17,18 + + + India + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 25782154 + 17,18 + + + India + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 21626822 + 17,18 + + + India + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36587559 + 17,18 + + + India + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18389356 + 17,18 + + + India + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18198203 + 17,18 + + + India + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27653347 + 17,18 + + + India + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12592616 + 17,18 + + + India + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15060731 + 17,18 + + + India + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27516779 + 17,18 + + + India + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10344085 + 17,18 + + + India + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17172694 + 17,18 + + + India + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19806955 + 17,18 + + + India + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7362603 + 17,18 + + + India + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12444352 + 17,18 + + + India + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14708644 + 17,18 + + + India + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5008866 + 17,18 + + + India + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9699778 + 17,18 + + + India + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6551225 + 17,18 + + + India + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2471546 + 17,18 + + + India + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4079679 + 17,18 + + + India + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + 80 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8038718 + 17,18 + + + India + 2001 + Total + Both Sexes + 80 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2636087 + 17,18 + + + India + 2001 + Total + Both Sexes + 80 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5402631 + 17,18 + + + India + 2001 + Total + Both Sexes + 80 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + India + 2001 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2738472 + 17,18 + + + India + 2001 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1397264 + 17,18 + + + India + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1341208 + 17,18 + + + India + 2001 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + 17,18 + + + Indonesia + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 22671081 + + + + Indonesia + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 22136576 + + + + Indonesia + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 405230 + + + + Indonesia + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 129275 + + + + Indonesia + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 191709144 + + + + Indonesia + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 176506096 + + + + Indonesia + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 14333073 + + + + Indonesia + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 869975 + + + + Indonesia + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 20880734 + + + + Indonesia + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 20334630 + + + + Indonesia + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 287185 + + + + Indonesia + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 258919 + + + + Indonesia + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19891633 + + + + Indonesia + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19410698 + + + + Indonesia + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 313346 + + + + Indonesia + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 167589 + + + + Indonesia + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 21310443 + + + + Indonesia + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 20798054 + + + + Indonesia + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 410398 + + + + Indonesia + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 101991 + + + + Indonesia + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19830685 + + + + Indonesia + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19256159 + + + + Indonesia + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 512024 + + + + Indonesia + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 62502 + + + + Indonesia + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 18505131 + + + + Indonesia + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 17792985 + + + + Indonesia + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 664681 + + + + Indonesia + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 47465 + + + + Indonesia + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 16524852 + + + + Indonesia + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 15442250 + + + + Indonesia + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1046902 + + + + Indonesia + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 35700 + + + + Indonesia + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 14040982 + + + + Indonesia + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 12655389 + + + + Indonesia + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1361433 + + + + Indonesia + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 24160 + + + + Indonesia + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 11561321 + + + + Indonesia + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 9975371 + + + + Indonesia + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1568773 + + + + Indonesia + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 17177 + + + + Indonesia + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 8448570 + + + + Indonesia + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 7056212 + + + + Indonesia + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1382602 + + + + Indonesia + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 9756 + + + + Indonesia + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 6058761 + + + + Indonesia + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 4526735 + + + + Indonesia + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1525533 + + + + Indonesia + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 6493 + + + + Indonesia + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 4694031 + + + + Indonesia + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3224112 + + + + Indonesia + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1466313 + + + + Indonesia + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3606 + + + + Indonesia + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3456331 + + + + Indonesia + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2008105 + + + + Indonesia + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1445774 + + + + Indonesia + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2452 + + + + Indonesia + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1977905 + + + + Indonesia + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1043897 + + + + Indonesia + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 932879 + + + + Indonesia + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1129 + + + + Indonesia + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 1143170 + + + + Indonesia + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 545408 + + + + Indonesia + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 596980 + + + + Indonesia + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 782 + + + + Indonesia + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 437961 + + + + Indonesia + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 196403 + + + + Indonesia + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 241142 + + + + Indonesia + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 416 + + + + Indonesia + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 170899 + + + + Indonesia + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 66011 + + + + Indonesia + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 104617 + + + + Indonesia + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 271 + + + + Indonesia + 2010 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 104654 + + + + Indonesia + 2010 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 37101 + + + + Indonesia + 2010 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 67261 + + + + Indonesia + 2010 + Total + Both Sexes + 95 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2015 + 292 + + + + Indonesia + 2005 + Total + Both Sexes + 10 - 14 + Total + Sample survey - de facto + Final figure, complete + 2007 + 21306096 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 - 14 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 20980189 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 323972 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 1935 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 + + Total + Sample survey - de facto + Final figure, complete + 2007 + 172716191 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 + + Literate + Sample survey - de facto + Final figure, complete + 2007 + 157721798 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 + + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 14976629 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 10 + + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 17764 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 15 - 19 + Total + Sample survey - de facto + Final figure, complete + 2007 + 19796921 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 15 - 19 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 19530049 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 265554 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 1318 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 20 - 24 + Total + Sample survey - de facto + Final figure, complete + 2007 + 19445179 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 20 - 24 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 19152585 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 287986 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 4608 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 25 - 29 + Total + Sample survey - de facto + Final figure, complete + 2007 + 18680093 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 25 - 29 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 18304667 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 373439 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 1987 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 30 - 34 + Total + Sample survey - de facto + Final figure, complete + 2007 + 17420029 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 30 - 34 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 16925338 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 493107 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 1584 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 35 - 39 + Total + Sample survey - de facto + Final figure, complete + 2007 + 16454100 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 35 - 39 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 15586255 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 865139 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 2706 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 40 - 44 + Total + Sample survey - de facto + Final figure, complete + 2007 + 14489902 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 40 - 44 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 13212567 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1276649 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 686 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 45 - 49 + Total + Sample survey - de facto + Final figure, complete + 2007 + 12382818 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 45 - 49 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 10890781 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1490257 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 1780 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 50 - 54 + Total + Sample survey - de facto + Final figure, complete + 2007 + 9941064 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 50 - 54 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 8384541 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1556171 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 352 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 55 - 59 + Total + Sample survey - de facto + Final figure, complete + 2007 + 7262179 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 55 - 59 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 5624185 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1637664 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 330 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 60 - 64 + Total + Sample survey - de facto + Final figure, complete + 2007 + 5611827 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 60 - 64 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 3826381 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1785311 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 135 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 65 - 69 + Total + Sample survey - de facto + Final figure, complete + 2007 + 4112165 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 65 - 69 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 2445796 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1666227 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 142 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 70 - 74 + Total + Sample survey - de facto + Final figure, complete + 2007 + 2989927 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 70 - 74 + Literate + Sample survey - de facto + Final figure, complete + 2007 + 1548887 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1440991 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 49 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 75 + + Total + Sample survey - de facto + Final figure, complete + 2007 + 2823891 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 75 + + Literate + Sample survey - de facto + Final figure, complete + 2007 + 1309577 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 75 + + Illiterate + Sample survey - de facto + Final figure, complete + 2007 + 1514162 + 19,20 + + + Indonesia + 2005 + Total + Both Sexes + 75 + + Unknown + Sample survey - de facto + Final figure, complete + 2007 + 152 + 19,20 + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5684385 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5608191 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 74046 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2148 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 66380947 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 57801230 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 8538358 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 41359 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5454858 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5336735 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 115490 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2633 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 6387918 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 6196718 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 187042 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4158 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 8196472 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 7901483 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 289428 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5561 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 8597110 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 8251526 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 339735 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5849 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 7033698 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 6604421 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 424408 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4869 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5515112 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4971703 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 539735 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3674 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4830087 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4112988 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 713912 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3187 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3923533 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3072623 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 848421 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2489 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3348384 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2305870 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1040509 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2005 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 2540787 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1526937 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1012356 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1494 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1710377 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 861239 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 848109 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1029 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1176906 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 497391 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 678720 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 795 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 885943 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 292675 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 592705 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 563 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 646342 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 163265 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 482595 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 482 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 312291 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 69169 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 242847 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 275 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 111515 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 24215 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 87185 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 115 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 18664 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 3503 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 15134 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 27 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 6565 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 578 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 5981 + + + + Iran (Islamic Republic of) + 2016 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 6 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5671435 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5544525 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 112104 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 14806 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 63244403 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 53282676 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9483174 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 478553 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6607043 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6405868 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 181316 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 19859 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8414497 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8065293 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 302037 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 47167 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8672654 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8233511 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 355241 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 83902 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6971924 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6486365 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 422375 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 63184 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5571018 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4947820 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 544385 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 78813 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4906749 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4152032 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 709791 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44926 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4030481 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3172778 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 828932 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 28771 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3527408 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2432387 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1066623 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 28398 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2680119 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1617175 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1044857 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 18087 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1862907 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 918596 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 932162 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 12149 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1343731 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 554336 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 780658 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8737 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1119968 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 342446 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 769729 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7793 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1833070 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 386140 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1430729 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + 75 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 16201 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31399 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 23404 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2235 + + + + Iran (Islamic Republic of) + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5760 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6708594 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6550216 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 158378 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 59522747 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50032804 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9489943 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8726761 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8462866 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 263895 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9011422 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8679972 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 331450 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7224952 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6822009 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 402943 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5553531 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5044601 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 508930 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4921124 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4239304 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 681820 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4089158 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3274027 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 815131 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3522761 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2534859 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 987902 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2755420 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1745592 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1009828 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1887981 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1020941 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 867040 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1464452 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 641181 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 823271 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1197550 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 423405 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 774145 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1119318 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 294636 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 824682 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1339723 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 299195 + + + + Iran (Islamic Republic of) + 2006 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1040528 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 9080676 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 8740024 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 340652 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 45403833 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 35220840 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 10182993 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 7115547 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 6717864 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 397683 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 5221982 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 4738973 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 483009 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 4709154 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 4067281 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 641873 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 3980066 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 3221913 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 758153 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 3571779 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 2613636 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 958143 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 2812086 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1844351 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 967735 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 2013040 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1127141 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 885899 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1529078 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 719111 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 809967 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1366728 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 502278 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 864450 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1382946 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 374854 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 1008092 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 2595181 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 538291 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 2056890 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 1997 + 25570 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 15123 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 1997 + 10447 + + + + Iran (Islamic Republic of) + 1996 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 1997 + 0 + + + + Italy + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2795020 + + + + Italy + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 53902721 + + + + Italy + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2869465 + + + + Italy + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3052349 + + + + Italy + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3275542 + + + + Italy + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3781373 + + + + Italy + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4564166 + + + + Italy + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4795585 + + + + Italy + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4772283 + + + + Italy + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4146295 + + + + Italy + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3725539 + + + + Italy + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3740132 + + + + Italy + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3120029 + + + + Italy + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3112530 + + + + Italy + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2516448 + + + + Italy + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1944820 + + + + Italy + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1172992 + + + + Italy + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 391106 + + + + Italy + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 111968 + + + + Italy + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 15079 + + + + Italy + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2805287 + + + + Italy + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2803516 + + + + Italy + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1771 + + + + Italy + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 51697846 + + + + Italy + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 50921921 + + + + Italy + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 775925 + + + + Italy + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2963629 + + + + Italy + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2959276 + + + + Italy + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4353 + + + + Italy + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3424350 + + + + Italy + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3416702 + + + + Italy + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7648 + + + + Italy + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4246776 + + + + Italy + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4234051 + + + + Italy + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12725 + + + + Italy + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4543782 + + + + Italy + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4525639 + + + + Italy + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18143 + + + + Italy + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4623588 + + + + Italy + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4600433 + + + + Italy + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23155 + + + + Italy + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4065579 + + + + Italy + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4042305 + + + + Italy + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23274 + + + + Italy + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3739570 + + + + Italy + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3715667 + + + + Italy + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23903 + + + + Italy + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3849691 + + + + Italy + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3819954 + + + + Italy + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 29737 + + + + Italy + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3324773 + + + + Italy + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3286777 + + + + Italy + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 37996 + + + + Italy + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3464947 + + + + Italy + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3396947 + + + + Italy + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 68000 + + + + Italy + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3079948 + + + + Italy + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2960866 + + + + Italy + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 119082 + + + + Italy + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2803512 + + + + Italy + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2683028 + + + + Italy + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 120484 + + + + Italy + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2286776 + + + + Italy + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2171937 + + + + Italy + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 114839 + + + + Italy + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1235317 + + + + Italy + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1167116 + + + + Italy + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 68201 + + + + Italy + 2001 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1240321 + + + + Italy + 2001 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1137707 + + + + Italy + 2001 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 102614 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1620696 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1618472 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 2224 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 12297591 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 12243328 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 54254 + + + + Kazakhstan + 1999 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 9 + + + + Kazakhstan + 1999 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1374253 + + + + Kazakhstan + 1999 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1372042 + + + + Kazakhstan + 1999 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 2211 + + + + Kazakhstan + 1999 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1251252 + + + + Kazakhstan + 1999 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1249397 + + + + Kazakhstan + 1999 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1855 + + + + Kazakhstan + 1999 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1162585 + + + + Kazakhstan + 1999 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1161070 + + + + Kazakhstan + 1999 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1515 + + + + Kazakhstan + 1999 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1099761 + + + + Kazakhstan + 1999 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1098415 + + + + Kazakhstan + 1999 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1345 + + + + Kazakhstan + 1999 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1 + + + + Kazakhstan + 1999 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1199395 + + + + Kazakhstan + 1999 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1198116 + + + + Kazakhstan + 1999 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1277 + + + + Kazakhstan + 1999 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 2 + + + + Kazakhstan + 1999 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1041692 + + + + Kazakhstan + 1999 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1040652 + + + + Kazakhstan + 1999 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1040 + + + + Kazakhstan + 1999 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 855540 + + + + Kazakhstan + 1999 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 854804 + + + + Kazakhstan + 1999 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 736 + + + + Kazakhstan + 1999 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 541457 + + + + Kazakhstan + 1999 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 540683 + + + + Kazakhstan + 1999 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 772 + + + + Kazakhstan + 1999 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 2 + + + + Kazakhstan + 1999 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 545604 + + + + Kazakhstan + 1999 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 543834 + + + + Kazakhstan + 1999 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1770 + + + + Kazakhstan + 1999 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 597932 + + + + Kazakhstan + 1999 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 593351 + + + + Kazakhstan + 1999 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 4581 + + + + Kazakhstan + 1999 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 368371 + + + + Kazakhstan + 1999 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 362989 + + + + Kazakhstan + 1999 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 5379 + + + + Kazakhstan + 1999 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 3 + + + + Kazakhstan + 1999 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2000 + 639053 + + + + Kazakhstan + 1999 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 609503 + + + + Kazakhstan + 1999 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2000 + 29549 + + + + Kazakhstan + 1999 + Total + Both Sexes + 70 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2000 + 1 + + + + Kiribati + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 12166 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 11725 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 441 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 78040 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 75555 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2485 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10926 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10660 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 266 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10366 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10137 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 229 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 8416 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 8203 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 213 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6721 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6549 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 172 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5625 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5471 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 154 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6116 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5931 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 185 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5234 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5073 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 161 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3892 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3749 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 143 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2927 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2821 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 106 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1985 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1884 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 101 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1520 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1418 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 102 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1108 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1016 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 92 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1038 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 918 + 21 + + + Kiribati + 2010 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 120 + 21 + + + Kuwait + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 202135 + + + + Kuwait + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 198909 + + + + Kuwait + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 3226 + + + + Kuwait + 2011 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2572822 + + + + Kuwait + 2011 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 2354423 + + + + Kuwait + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 218399 + + + + Kuwait + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 183532 + + + + Kuwait + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 182589 + + + + Kuwait + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 943 + + + + Kuwait + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 260701 + + + + Kuwait + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 243076 + + + + Kuwait + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 17625 + + + + Kuwait + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 392740 + + + + Kuwait + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 360569 + + + + Kuwait + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 32171 + + + + Kuwait + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 409437 + + + + Kuwait + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 372593 + + + + Kuwait + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 36844 + + + + Kuwait + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 334986 + + + + Kuwait + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 302240 + + + + Kuwait + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 32746 + + + + Kuwait + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 278847 + + + + Kuwait + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 246617 + + + + Kuwait + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 32230 + + + + Kuwait + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 198414 + + + + Kuwait + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 178544 + + + + Kuwait + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 19870 + + + + Kuwait + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 131531 + + + + Kuwait + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 118841 + + + + Kuwait + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 12690 + + + + Kuwait + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 80059 + + + + Kuwait + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 71865 + + + + Kuwait + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 8194 + + + + Kuwait + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 43950 + + + + Kuwait + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 37867 + + + + Kuwait + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 6083 + + + + Kuwait + 2011 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2015 + 56490 + + + + Kuwait + 2011 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 40713 + + + + Kuwait + 2011 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2015 + 15777 + + + + Kuwait + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 188760 + + + + Kuwait + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 188714 + + + + Kuwait + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 39 + + + + Kuwait + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7 + + + + Kuwait + 2005 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2429321 + + + + Kuwait + 2005 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2278381 + + + + Kuwait + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 150714 + + + + Kuwait + 2005 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 226 + + + + Kuwait + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 179507 + + + + Kuwait + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 179357 + + + + Kuwait + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 115 + + + + Kuwait + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35 + + + + Kuwait + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 253137 + + + + Kuwait + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 251915 + + + + Kuwait + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1038 + + + + Kuwait + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 184 + + + + Kuwait + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 392198 + + + + Kuwait + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 387508 + + + + Kuwait + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4690 + + + + Kuwait + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 377301 + + + + Kuwait + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 363445 + + + + Kuwait + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 13856 + + + + Kuwait + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 341183 + + + + Kuwait + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 318409 + + + + Kuwait + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22774 + + + + Kuwait + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 254702 + + + + Kuwait + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 230484 + + + + Kuwait + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24218 + + + + Kuwait + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 182981 + + + + Kuwait + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 161815 + + + + Kuwait + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 21166 + + + + Kuwait + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 112524 + + + + Kuwait + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 95790 + + + + Kuwait + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 16734 + + + + Kuwait + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 64392 + + + + Kuwait + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 51460 + + + + Kuwait + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12932 + + + + Kuwait + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35993 + + + + Kuwait + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 25469 + + + + Kuwait + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10524 + + + + Kuwait + 2005 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 46643 + + + + Kuwait + 2005 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24015 + + + + Kuwait + 2005 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22628 + + + + Kuwait + 1995 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 139327 + + + + Kuwait + 1995 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 137584 + + + + Kuwait + 1995 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1743 + + + + Kuwait + 1995 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1239348 + + + + Kuwait + 1995 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 999951 + + + + Kuwait + 1995 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 239397 + + + + Kuwait + 1995 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 110592 + + + + Kuwait + 1995 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 108207 + + + + Kuwait + 1995 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 2385 + + + + Kuwait + 1995 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 133145 + + + + Kuwait + 1995 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 116136 + + + + Kuwait + 1995 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 17009 + + + + Kuwait + 1995 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 203303 + + + + Kuwait + 1995 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 161206 + + + + Kuwait + 1995 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 42097 + + + + Kuwait + 1995 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 195610 + + + + Kuwait + 1995 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 150542 + + + + Kuwait + 1995 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 45068 + + + + Kuwait + 1995 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 162031 + + + + Kuwait + 1995 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 123734 + + + + Kuwait + 1995 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 38297 + + + + Kuwait + 1995 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 113217 + + + + Kuwait + 1995 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 86395 + + + + Kuwait + 1995 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 26822 + + + + Kuwait + 1995 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 71643 + + + + Kuwait + 1995 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 52992 + + + + Kuwait + 1995 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 18651 + + + + Kuwait + 1995 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 43761 + + + + Kuwait + 1995 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 29768 + + + + Kuwait + 1995 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 13993 + + + + Kuwait + 1995 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 29757 + + + + Kuwait + 1995 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 17923 + + + + Kuwait + 1995 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11834 + + + + Kuwait + 1995 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 16307 + + + + Kuwait + 1995 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 8190 + + + + Kuwait + 1995 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 8117 + + + + Kuwait + 1995 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 20655 + + + + Kuwait + 1995 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 7274 + + + + Kuwait + 1995 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 13381 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 550614 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 549380 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1234 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4288840 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 4259248 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 29592 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 608648 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 607122 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1526 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 583374 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 581942 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1432 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 447256 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 446132 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 1124 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 378132 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 377313 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 819 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 347354 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 346559 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 795 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 320960 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 320298 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 662 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 308741 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 308082 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 659 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 234860 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 234317 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 543 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 164351 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 163731 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 620 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 88215 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 87336 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 879 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 256335 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 237036 + + + + Kyrgyzstan + 2009 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 19299 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 583082 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 580797 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2285 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3673762 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3631348 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 42414 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 492980 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 491319 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1661 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 430558 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 429408 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1150 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 387809 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 386845 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 964 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 350978 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 350211 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 767 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 345960 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 345143 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 817 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 273327 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 272726 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 601 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 200588 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 200028 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 560 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 113091 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 112249 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 842 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 108678 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 106709 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1969 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 123787 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 118884 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4903 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 102919 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 96313 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6606 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 83971 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 78481 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5490 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 40478 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 36393 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4085 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 18571 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 14979 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3592 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10938 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7592 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3346 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3523 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2114 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1409 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1905 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 925 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 980 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 619 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 232 + + + + Kyrgyzstan + 1999 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 387 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 718606 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 675619 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 42987 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5131036 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4411228 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 719808 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 699010 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 651903 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 47107 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 654037 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 599160 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 54877 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 615988 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 549300 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 66688 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 496234 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 431771 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 64463 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 420083 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 352514 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 67569 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 343870 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 282314 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 61556 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 295907 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 242311 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 53596 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 267418 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 210548 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 56870 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 197607 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 151294 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 46313 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 147179 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 103366 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 43813 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 98901 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 64483 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 34418 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 71427 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 41670 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 29757 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 47078 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 26664 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 20414 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 30190 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 15484 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 14706 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 15267 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7567 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7700 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7036 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3140 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3896 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5198 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2120 + + + + Lao People's Democratic Republic + 2015 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3078 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 647269 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 552031 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 91126 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4112 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3404703 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2475296 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 895167 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 34240 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 515297 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 423723 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 88018 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3556 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 429609 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 324088 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 102367 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3154 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 359995 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 266123 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 91286 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2586 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 329777 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 246397 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 81248 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2132 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 265867 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 198559 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 65541 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1767 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 227167 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 159839 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 65616 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1712 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 177980 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 108562 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 67415 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2003 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 128331 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 70767 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55573 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1991 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 105014 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47934 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 54687 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2393 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 79540 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33575 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 43645 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2320 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 59579 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21106 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36257 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2216 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 37172 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12409 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23158 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1605 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 22582 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5893 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15591 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1098 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10328 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2569 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7148 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 611 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4745 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 941 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3482 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 322 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2375 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 533 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1659 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 183 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1416 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 160 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1136 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 120 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 660 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 87 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 214 + + + + Lao People's Democratic Republic + 2005 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 359 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 454940 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 328792 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 126148 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 2551504 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 1537129 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 1014375 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 364893 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 254385 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 110508 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 341125 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 231105 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 110020 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 281597 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 193531 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 88066 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 266046 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 174703 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 91343 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 181923 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 107696 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 74227 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 156890 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 80719 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 76171 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 133143 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 54747 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 78396 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 109641 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 42330 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 67311 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 89981 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 28255 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 61726 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 68006 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 20002 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 48004 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 46042 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 10171 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 35871 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 56968 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 10693 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 46275 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2002 + 309 + + + + Lao People's Democratic Republic + 1995 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2002 + 309 + + + + Latvia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 89774 + + + + Latvia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 89558 + + + + Latvia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 216 + + + + Latvia + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1865995 + + + + Latvia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1863930 + + + + Latvia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2065 + + + + Latvia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 120371 + + + + Latvia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 120167 + + + + Latvia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 204 + + + + Latvia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 154894 + + + + Latvia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 154645 + + + + Latvia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 249 + + + + Latvia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 147978 + + + + Latvia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 147746 + + + + Latvia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 232 + + + + Latvia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 134532 + + + + Latvia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 134342 + + + + Latvia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 190 + + + + Latvia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 142546 + + + + Latvia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 142364 + + + + Latvia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 182 + + + + Latvia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 141290 + + + + Latvia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 141141 + + + + Latvia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 149 + + + + Latvia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 148015 + + + + Latvia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 147901 + + + + Latvia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 114 + + + + Latvia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 153017 + + + + Latvia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 152921 + + + + Latvia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 96 + + + + Latvia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 132702 + + + + Latvia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 132631 + + + + Latvia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 71 + + + + Latvia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 120420 + + + + Latvia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 120354 + + + + Latvia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 66 + + + + Latvia + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 105179 + + + + Latvia + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 105120 + + + + Latvia + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 59 + + + + Latvia + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 109228 + + + + Latvia + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 109156 + + + + Latvia + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 72 + + + + Latvia + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 76721 + + + + Latvia + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 76646 + + + + Latvia + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 75 + + + + Latvia + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55969 + + + + Latvia + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55921 + + + + Latvia + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 48 + + + + Latvia + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25851 + + + + Latvia + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25826 + + + + Latvia + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25 + + + + Latvia + 2011 + Total + Both Sexes + 90 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7508 + + + + Latvia + 2011 + Total + Both Sexes + 90 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7491 + + + + Latvia + 2011 + Total + Both Sexes + 90 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17 + + + + Latvia + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 186222 + 22 + + + Latvia + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 185874 + 22 + + + Latvia + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 348 + 22 + + + Latvia + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2133257 + 22 + + + Latvia + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2127981 + 22 + + + Latvia + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5276 + 22 + + + Latvia + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 177528 + 22 + + + Latvia + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 177070 + 22 + + + Latvia + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 458 + 22 + + + Latvia + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 160983 + 22 + + + Latvia + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 160587 + 22 + + + Latvia + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 396 + 22 + + + Latvia + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 164446 + 22 + + + Latvia + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 164122 + 22 + + + Latvia + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 324 + 22 + + + Latvia + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 158746 + 22 + + + Latvia + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 158488 + 22 + + + Latvia + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 258 + 22 + + + Latvia + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 176259 + 22 + + + Latvia + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 176019 + 22 + + + Latvia + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 240 + 22 + + + Latvia + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 174755 + 22 + + + Latvia + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 174557 + 22 + + + Latvia + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 198 + 22 + + + Latvia + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 154928 + 22 + + + Latvia + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 154737 + 22 + + + Latvia + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 191 + 22 + + + Latvia + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 139208 + 22 + + + Latvia + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 139026 + 22 + + + Latvia + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 182 + 22 + + + Latvia + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 142030 + 22 + + + Latvia + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 141783 + 22 + + + Latvia + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 247 + 22 + + + Latvia + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 146069 + 22 + + + Latvia + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 145754 + 22 + + + Latvia + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 315 + 22 + + + Latvia + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 120498 + 22 + + + Latvia + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 120095 + 22 + + + Latvia + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 403 + 22 + + + Latvia + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 105557 + 22 + + + Latvia + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 105242 + 22 + + + Latvia + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 315 + 22 + + + Latvia + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 66308 + 22 + + + Latvia + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 66012 + 22 + + + Latvia + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 296 + 22 + + + Latvia + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30370 + 22 + + + Latvia + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30024 + 22 + + + Latvia + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 346 + 22 + + + Latvia + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 21115 + 22 + + + Latvia + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20613 + 22 + + + Latvia + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 502 + 22 + + + Latvia + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6856 + 22 + + + Latvia + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6651 + 22 + + + Latvia + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 205 + 22 + + + Latvia + 2000 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1266 + 22 + + + Latvia + 2000 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1221 + 22 + + + Latvia + 2000 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 45 + 22 + + + Latvia + 2000 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 113 + 22 + + + Latvia + 2000 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 106 + 22 + + + Latvia + 2000 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7 + 22 + + + Lesotho + 2016 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 209737 + + + + Lesotho + 2016 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 206161 + + + + Lesotho + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3576 + + + + Lesotho + 2016 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1369302 + + + + Lesotho + 2016 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1331930 + + + + Lesotho + 2016 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 37372 + + + + Lesotho + 2016 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 199237 + + + + Lesotho + 2016 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 195714 + + + + Lesotho + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3523 + + + + Lesotho + 2016 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 188907 + + + + Lesotho + 2016 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 185202 + + + + Lesotho + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3705 + + + + Lesotho + 2016 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 168094 + + + + Lesotho + 2016 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 164003 + + + + Lesotho + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4091 + + + + Lesotho + 2016 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 130333 + + + + Lesotho + 2016 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 126868 + + + + Lesotho + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3465 + + + + Lesotho + 2016 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 96268 + + + + Lesotho + 2016 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 93314 + + + + Lesotho + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2954 + + + + Lesotho + 2016 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 74859 + + + + Lesotho + 2016 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 72677 + + + + Lesotho + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2182 + + + + Lesotho + 2016 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 70332 + + + + Lesotho + 2016 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 68045 + + + + Lesotho + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2287 + + + + Lesotho + 2016 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 59793 + + + + Lesotho + 2016 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 57835 + + + + Lesotho + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1958 + + + + Lesotho + 2016 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 49207 + + + + Lesotho + 2016 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 47150 + + + + Lesotho + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2057 + + + + Lesotho + 2016 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 37346 + + + + Lesotho + 2016 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 35778 + + + + Lesotho + 2016 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1568 + + + + Lesotho + 2016 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 30792 + + + + Lesotho + 2016 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 29047 + + + + Lesotho + 2016 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1745 + + + + Lesotho + 2016 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 24168 + + + + Lesotho + 2016 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 22605 + + + + Lesotho + 2016 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1563 + + + + Lesotho + 2016 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 18607 + + + + Lesotho + 2016 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 17106 + + + + Lesotho + 2016 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1501 + + + + Lesotho + 2016 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 11622 + + + + Lesotho + 2016 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10425 + + + + Lesotho + 2016 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1197 + + + + Lesotho + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 230617 + + + + Lesotho + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 174061 + + + + Lesotho + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 56556 + + + + Lesotho + 2006 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1231641 + + + + Lesotho + 2006 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 814067 + + + + Lesotho + 2006 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 417574 + + + + Lesotho + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 207953 + + + + Lesotho + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 157987 + + + + Lesotho + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49966 + + + + Lesotho + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 165378 + + + + Lesotho + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 123352 + + + + Lesotho + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 42026 + + + + Lesotho + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 119780 + + + + Lesotho + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 85863 + + + + Lesotho + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33917 + + + + Lesotho + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 93643 + + + + Lesotho + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 66360 + + + + Lesotho + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27283 + + + + Lesotho + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 83410 + + + + Lesotho + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55014 + + + + Lesotho + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28396 + + + + Lesotho + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 72715 + + + + Lesotho + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44120 + + + + Lesotho + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28595 + + + + Lesotho + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 63144 + + + + Lesotho + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33329 + + + + Lesotho + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29815 + + + + Lesotho + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50216 + + + + Lesotho + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23794 + + + + Lesotho + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26422 + + + + Lesotho + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 37769 + + + + Lesotho + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 16345 + + + + Lesotho + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21424 + + + + Lesotho + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 32099 + + + + Lesotho + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12798 + + + + Lesotho + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19301 + + + + Lesotho + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 35680 + + + + Lesotho + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10580 + + + + Lesotho + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25100 + + + + Lesotho + 2006 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18171 + + + + Lesotho + 2006 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5498 + + + + Lesotho + 2006 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12673 + + + + Lesotho + 2006 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21066 + + + + Lesotho + 2006 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4966 + + + + Lesotho + 2006 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 16100 + + + + Liberia + 2008 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 421666 + + + + Liberia + 2008 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 272878 + + + + Liberia + 2008 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 148788 + + + + Liberia + 2008 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2440202 + + + + Liberia + 2008 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1363280 + + + + Liberia + 2008 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1076922 + + + + Liberia + 2008 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 375695 + + + + Liberia + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 274362 + + + + Liberia + 2008 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 101333 + + + + Liberia + 2008 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 342930 + + + + Liberia + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 222981 + + + + Liberia + 2008 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 119949 + + + + Liberia + 2008 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 291858 + + + + Liberia + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 163171 + + + + Liberia + 2008 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 128687 + + + + Liberia + 2008 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 219632 + + + + Liberia + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 113847 + + + + Liberia + 2008 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 105785 + + + + Liberia + 2008 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 203536 + + + + Liberia + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 99609 + + + + Liberia + 2008 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 103927 + + + + Liberia + 2008 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 155737 + + + + Liberia + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 75491 + + + + Liberia + 2008 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 80246 + + + + Liberia + 2008 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 118807 + + + + Liberia + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 52596 + + + + Liberia + 2008 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 66211 + + + + Liberia + 2008 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 82940 + + + + Liberia + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 33939 + + + + Liberia + 2008 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 49001 + + + + Liberia + 2008 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 56460 + + + + Liberia + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 20432 + + + + Liberia + 2008 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 36028 + + + + Liberia + 2008 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 52830 + + + + Liberia + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 13631 + + + + Liberia + 2008 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 39199 + + + + Liberia + 2008 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 39807 + + + + Liberia + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 8730 + + + + Liberia + 2008 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 31077 + + + + Liberia + 2008 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 25746 + + + + Liberia + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4682 + + + + Liberia + 2008 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 21064 + + + + Liberia + 2008 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 22913 + + + + Liberia + 2008 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3317 + + + + Liberia + 2008 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 19596 + + + + Liberia + 2008 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 12007 + + + + Liberia + 2008 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1592 + + + + Liberia + 2008 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 10415 + + + + Liberia + 2008 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 17638 + + + + Liberia + 2008 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2022 + + + + Liberia + 2008 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 15616 + + + + Libya + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 639 + + + + Libya + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 1606 + + + + Libya + 2006 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 1 + + + + Libya + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 7868 + + + + Libya + 2006 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 138 + + + + Libya + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 13923 + + + + Libya + 2006 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 1229 + + + + Libya + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 18668 + + + + Libya + 2006 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 4608 + + + + Libya + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 26199 + + + + Libya + 2006 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 4568 + + + + Libya + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 34428 + + + + Libya + 2006 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 3974 + + + + Libya + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 48474 + + + + Libya + 2006 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 3376 + + + + Libya + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 49557 + + + + Libya + 2006 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 3024 + + + + Libya + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 58074 + + + + Libya + 2006 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 79 + + + + Libya + 2006 + Total + Both Sexes + 60 + + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2009 + 223646 + + + + Libya + 2006 + Total + Both Sexes + 60 + + Unknown + Census - de facto - complete tabulation + Provisional figure + 2009 + 7 + + + + Liechtenstein + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2061 + + + + Liechtenstein + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2061 + + + + Liechtenstein + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32435 + + + + Liechtenstein + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32435 + + + + Liechtenstein + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2155 + + + + Liechtenstein + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2155 + + + + Liechtenstein + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2220 + + + + Liechtenstein + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2220 + + + + Liechtenstein + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2224 + + + + Liechtenstein + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2224 + + + + Liechtenstein + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2346 + + + + Liechtenstein + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2346 + + + + Liechtenstein + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2612 + + + + Liechtenstein + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2612 + + + + Liechtenstein + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3152 + + + + Liechtenstein + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3152 + + + + Liechtenstein + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3084 + + + + Liechtenstein + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3084 + + + + Liechtenstein + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2854 + + + + Liechtenstein + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2854 + + + + Liechtenstein + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2458 + + + + Liechtenstein + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2458 + + + + Liechtenstein + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2247 + + + + Liechtenstein + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2247 + + + + Liechtenstein + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1788 + + + + Liechtenstein + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1788 + + + + Liechtenstein + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1244 + + + + Liechtenstein + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1244 + + + + Liechtenstein + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 829 + + + + Liechtenstein + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 829 + + + + Liechtenstein + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 621 + + + + Liechtenstein + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 621 + + + + Liechtenstein + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 373 + + + + Liechtenstein + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 373 + + + + Liechtenstein + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 132 + + + + Liechtenstein + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 132 + + + + Liechtenstein + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33 + + + + Liechtenstein + 2010 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33 + + + + Liechtenstein + 2010 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + + + + Liechtenstein + 2010 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + + + + Liechtenstein + 2010 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Liechtenstein + 2010 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 167852 + + + + Lithuania + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 167724 + + + + Lithuania + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 127 + + + + Lithuania + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1 + + + + Lithuania + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2758069 + + + + Lithuania + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2752949 + + + + Lithuania + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 4903 + + + + Lithuania + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 217 + + + + Lithuania + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 213394 + + + + Lithuania + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 213201 + + + + Lithuania + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 193 + + + + Lithuania + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 217962 + + + + Lithuania + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 217526 + + + + Lithuania + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 429 + + + + Lithuania + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 7 + + + + Lithuania + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 193362 + + + + Lithuania + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 192893 + + + + Lithuania + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 458 + + + + Lithuania + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 11 + + + + Lithuania + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 186317 + + + + Lithuania + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 185823 + + + + Lithuania + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 489 + + + + Lithuania + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 5 + + + + Lithuania + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 203781 + + + + Lithuania + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 203257 + + + + Lithuania + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 515 + + + + Lithuania + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9 + + + + Lithuania + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 218409 + + + + Lithuania + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 217909 + + + + Lithuania + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 467 + + + + Lithuania + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 33 + + + + Lithuania + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 231517 + + + + Lithuania + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 231049 + + + + Lithuania + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 419 + + + + Lithuania + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 49 + + + + Lithuania + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 231802 + + + + Lithuania + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 231370 + + + + Lithuania + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 369 + + + + Lithuania + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 63 + + + + Lithuania + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 184616 + + + + Lithuania + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 184351 + + + + Lithuania + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 241 + + + + Lithuania + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 24 + + + + Lithuania + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 163131 + + + + Lithuania + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 162934 + + + + Lithuania + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 184 + + + + Lithuania + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 13 + + + + Lithuania + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 148603 + + + + Lithuania + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 148427 + + + + Lithuania + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 175 + + + + Lithuania + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1 + + + + Lithuania + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 144300 + + + + Lithuania + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 144068 + + + + Lithuania + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 232 + + + + Lithuania + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 118684 + + + + Lithuania + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 118408 + + + + Lithuania + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 276 + + + + Lithuania + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 83120 + + + + Lithuania + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 82923 + + + + Lithuania + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 196 + + + + Lithuania + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 1 + + + + Lithuania + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 39182 + + + + Lithuania + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 39094 + + + + Lithuania + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 88 + + + + Lithuania + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9367 + + + + Lithuania + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 9342 + + + + Lithuania + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 25 + + + + Lithuania + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2258 + + + + Lithuania + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 2243 + + + + Lithuania + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 15 + + + + Lithuania + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 412 + + + + Lithuania + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 407 + + + + Lithuania + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 5 + + + + Lithuania + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2014 + 0 + + + + Lithuania + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 272909 + + + + Lithuania + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 272142 + + + + Lithuania + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 438 + + + + Lithuania + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 329 + + + + Lithuania + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 3076897 + + + + Lithuania + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 3052182 + + + + Lithuania + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 10324 + + + + Lithuania + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 14391 + + + + Lithuania + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 265842 + + + + Lithuania + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 264236 + + + + Lithuania + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 667 + + + + Lithuania + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 939 + + + + Lithuania + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 234503 + + + + Lithuania + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 232044 + + + + Lithuania + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 818 + + + + Lithuania + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1641 + + + + Lithuania + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 240007 + + + + Lithuania + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 237862 + + + + Lithuania + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 805 + + + + Lithuania + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1340 + + + + Lithuania + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 255410 + + + + Lithuania + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 253402 + + + + Lithuania + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 813 + + + + Lithuania + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1195 + + + + Lithuania + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 271340 + + + + Lithuania + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 269366 + + + + Lithuania + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 705 + + + + Lithuania + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1269 + + + + Lithuania + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 266280 + + + + Lithuania + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 264160 + + + + Lithuania + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 672 + + + + Lithuania + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1448 + + + + Lithuania + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 217954 + + + + Lithuania + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 216305 + + + + Lithuania + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 450 + + + + Lithuania + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1199 + + + + Lithuania + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 195329 + + + + Lithuania + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 193856 + + + + Lithuania + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 419 + + + + Lithuania + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1054 + + + + Lithuania + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 184810 + + + + Lithuania + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 183395 + + + + Lithuania + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 506 + + + + Lithuania + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 909 + + + + Lithuania + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 182838 + + + + Lithuania + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 181376 + + + + Lithuania + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 669 + + + + Lithuania + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 793 + + + + Lithuania + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 167594 + + + + Lithuania + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 166014 + + + + Lithuania + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 943 + + + + Lithuania + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 637 + + + + Lithuania + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 143502 + + + + Lithuania + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 142237 + + + + Lithuania + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 743 + + + + Lithuania + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 522 + + + + Lithuania + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 97523 + + + + Lithuania + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 96504 + + + + Lithuania + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 581 + + + + Lithuania + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 438 + + + + Lithuania + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 43031 + + + + Lithuania + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 42508 + + + + Lithuania + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 347 + + + + Lithuania + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 176 + + + + Lithuania + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 24778 + + + + Lithuania + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 24213 + + + + Lithuania + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 409 + + + + Lithuania + 2001 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 156 + + + + Lithuania + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 10412 + + + + Lithuania + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 10097 + + + + Lithuania + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 256 + + + + Lithuania + 2001 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 59 + + + + Lithuania + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2070 + + + + Lithuania + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1990 + + + + Lithuania + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 65 + + + + Lithuania + 2001 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 15 + + + + Lithuania + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 438 + + + + Lithuania + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 417 + + + + Lithuania + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 15 + + + + Lithuania + 2001 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 6 + + + + Lithuania + 2001 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 327 + + + + Lithuania + 2001 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 58 + + + + Lithuania + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 3 + + + + Lithuania + 2001 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 266 + + + + Malawi + 2018 + Total + Both Sexes + 5 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 15011343 + + + + Malawi + 2018 + Total + Both Sexes + 5 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 10301467 + + + + Malawi + 2018 + Total + Both Sexes + 5 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4709876 + + + + Malawi + 2008 + Total + Both Sexes + 5 - 9 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 313388 + + + + Malawi + 2008 + Total + Both Sexes + 5 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10676345 + + + + Malawi + 2008 + Total + Both Sexes + 5 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5859092 + + + + Malawi + 2008 + Total + Both Sexes + 5 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4817253 + + + + Malawi + 2008 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 952357 + + + + Malawi + 2008 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 943172 + + + + Malawi + 2008 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 909102 + + + + Malawi + 2008 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 800821 + + + + Malawi + 2008 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 556151 + + + + Malawi + 2008 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 390767 + + + + Malawi + 2008 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 266836 + + + + Malawi + 2008 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 197464 + + + + Malawi + 2008 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 142099 + + + + Malawi + 2008 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 126820 + + + + Malawi + 2008 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 87933 + + + + Malawi + 2008 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 65077 + + + + Malawi + 2008 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 40015 + + + + Malawi + 2008 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 33751 + + + + Malawi + 2008 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 15747 + + + + Malawi + 2008 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 17592 + + + + Malawi + 1998 + Total + Both Sexes + 5 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 8273478 + + + + Malawi + 1998 + Total + Both Sexes + 5 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 4765020 + + + + Malawi + 1998 + Total + Both Sexes + 5 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3508458 + + + + Malaysia + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2411581 + + + + Malaysia + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2362108 + + + + Malaysia + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49473 + + + + Malaysia + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 17177857 + + + + Malaysia + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 15457987 + + + + Malaysia + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1719870 + + + + Malaysia + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2251565 + + + + Malaysia + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2201859 + + + + Malaysia + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 49706 + + + + Malaysia + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1917252 + + + + Malaysia + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1851807 + + + + Malaysia + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 65445 + + + + Malaysia + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1804016 + + + + Malaysia + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1719393 + + + + Malaysia + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 84623 + + + + Malaysia + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1710728 + + + + Malaysia + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1610814 + + + + Malaysia + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 99914 + + + + Malaysia + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1633946 + + + + Malaysia + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1517407 + + + + Malaysia + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 116539 + + + + Malaysia + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1432771 + + + + Malaysia + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1300754 + + + + Malaysia + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 132017 + + + + Malaysia + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1131445 + + + + Malaysia + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1000574 + + + + Malaysia + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 130871 + + + + Malaysia + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 885662 + + + + Malaysia + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 730222 + + + + Malaysia + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 155440 + + + + Malaysia + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 600433 + + + + Malaysia + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 444624 + + + + Malaysia + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 155809 + + + + Malaysia + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 534248 + + + + Malaysia + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 335362 + + + + Malaysia + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 198886 + + + + Malaysia + 2000 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 864210 + + + + Malaysia + 2000 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 383063 + + + + Malaysia + 2000 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 481147 + + + + Maldives + 2014 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 26275 + + + + Maldives + 2014 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 25603 + + + + Maldives + 2014 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 222 + + + + Maldives + 2014 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 450 + + + + Maldives + 2014 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 333733 + + + + Maldives + 2014 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 317547 + + + + Maldives + 2014 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 11113 + + + + Maldives + 2014 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 5073 + + + + Maldives + 2014 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 31958 + + + + Maldives + 2014 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 31260 + + + + Maldives + 2014 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 362 + + + + Maldives + 2014 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 336 + + + + Maldives + 2014 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 47288 + + + + Maldives + 2014 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 44997 + + + + Maldives + 2014 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1535 + + + + Maldives + 2014 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 756 + + + + Maldives + 2014 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 56706 + + + + Maldives + 2014 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 53320 + + + + Maldives + 2014 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2258 + + + + Maldives + 2014 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1128 + + + + Maldives + 2014 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 43862 + + + + Maldives + 2014 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 41311 + + + + Maldives + 2014 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1840 + + + + Maldives + 2014 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 711 + + + + Maldives + 2014 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 30977 + + + + Maldives + 2014 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 29101 + + + + Maldives + 2014 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1386 + + + + Maldives + 2014 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 490 + + + + Maldives + 2014 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 24815 + + + + Maldives + 2014 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 23544 + + + + Maldives + 2014 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 898 + + + + Maldives + 2014 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 373 + + + + Maldives + 2014 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 20380 + + + + Maldives + 2014 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 19570 + + + + Maldives + 2014 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 578 + + + + Maldives + 2014 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 232 + + + + Maldives + 2014 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 16338 + + + + Maldives + 2014 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 15752 + + + + Maldives + 2014 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 398 + + + + Maldives + 2014 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 188 + + + + Maldives + 2014 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 12217 + + + + Maldives + 2014 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 11788 + + + + Maldives + 2014 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 301 + + + + Maldives + 2014 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 128 + + + + Maldives + 2014 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 6426 + + + + Maldives + 2014 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 6192 + + + + Maldives + 2014 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 153 + + + + Maldives + 2014 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 81 + + + + Maldives + 2014 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 4923 + + + + Maldives + 2014 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 4689 + + + + Maldives + 2014 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 178 + + + + Maldives + 2014 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 56 + + + + Maldives + 2014 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 4856 + + + + Maldives + 2014 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 4469 + + + + Maldives + 2014 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 330 + + + + Maldives + 2014 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 57 + + + + Maldives + 2014 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 3718 + + + + Maldives + 2014 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 3342 + + + + Maldives + 2014 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 334 + + + + Maldives + 2014 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 42 + + + + Maldives + 2014 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1952 + + + + Maldives + 2014 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1718 + + + + Maldives + 2014 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 200 + + + + Maldives + 2014 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 34 + + + + Maldives + 2014 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 727 + + + + Maldives + 2014 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 629 + + + + Maldives + 2014 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 91 + + + + Maldives + 2014 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 7 + + + + Maldives + 2014 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 231 + + + + Maldives + 2014 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 196 + + + + Maldives + 2014 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 33 + + + + Maldives + 2014 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2 + + + + Maldives + 2014 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 84 + + + + Maldives + 2014 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 66 + + + + Maldives + 2014 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 16 + + + + Maldives + 2014 + Total + Both Sexes + 95 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2 + + + + Maldives + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36999 + + + + Maldives + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35942 + + + + Maldives + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 387 + + + + Maldives + 2006 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 670 + + + + Maldives + 2006 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 237847 + + + + Maldives + 2006 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 228426 + + + + Maldives + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3521 + + + + Maldives + 2006 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5900 + + + + Maldives + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 39904 + + + + Maldives + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 38758 + + + + Maldives + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 286 + + + + Maldives + 2006 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 860 + + + + Maldives + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34809 + + + + Maldives + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 33552 + + + + Maldives + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 223 + + + + Maldives + 2006 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1034 + + + + Maldives + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24581 + + + + Maldives + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23657 + + + + Maldives + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 194 + + + + Maldives + 2006 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 730 + + + + Maldives + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20635 + + + + Maldives + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19842 + + + + Maldives + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 195 + + + + Maldives + 2006 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 598 + + + + Maldives + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18174 + + + + Maldives + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17503 + + + + Maldives + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 176 + + + + Maldives + 2006 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 495 + + + + Maldives + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15871 + + + + Maldives + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15222 + + + + Maldives + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 211 + + + + Maldives + 2006 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 438 + + + + Maldives + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 13569 + + + + Maldives + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12985 + + + + Maldives + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 226 + + + + Maldives + 2006 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 358 + + + + Maldives + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7936 + + + + Maldives + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7580 + + + + Maldives + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 151 + + + + Maldives + 2006 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 205 + + + + Maldives + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5859 + + + + Maldives + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5575 + + + + Maldives + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 148 + + + + Maldives + 2006 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 136 + + + + Maldives + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5566 + + + + Maldives + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5203 + + + + Maldives + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 234 + + + + Maldives + 2006 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 129 + + + + Maldives + 2006 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 13944 + + + + Maldives + 2006 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12607 + + + + Maldives + 2006 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1090 + + + + Maldives + 2006 + Total + Both Sexes + 65 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 247 + + + + Maldives + 1995 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 35870 + + + + Maldives + 1995 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 33610 + + + + Maldives + 1995 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1268 + + + + Maldives + 1995 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 992 + + + + Maldives + 1995 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 167083 + + + + Maldives + 1995 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 157358 + + + + Maldives + 1995 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6002 + + + + Maldives + 1995 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3723 + + + + Maldives + 1995 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 24905 + + + + Maldives + 1995 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 24076 + + + + Maldives + 1995 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 469 + + + + Maldives + 1995 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 360 + + + + Maldives + 1995 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 21021 + + + + Maldives + 1995 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 20184 + + + + Maldives + 1995 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 356 + + + + Maldives + 1995 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 481 + + + + Maldives + 1995 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 18191 + + + + Maldives + 1995 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 17427 + + + + Maldives + 1995 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 377 + + + + Maldives + 1995 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 387 + + + + Maldives + 1995 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 15364 + + + + Maldives + 1995 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 14649 + + + + Maldives + 1995 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 433 + + + + Maldives + 1995 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 282 + + + + Maldives + 1995 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 12632 + + + + Maldives + 1995 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 11998 + + + + Maldives + 1995 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 397 + + + + Maldives + 1995 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 237 + + + + Maldives + 1995 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6922 + + + + Maldives + 1995 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6534 + + + + Maldives + 1995 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 248 + + + + Maldives + 1995 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 140 + + + + Maldives + 1995 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6584 + + + + Maldives + 1995 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6161 + + + + Maldives + 1995 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 287 + + + + Maldives + 1995 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 136 + + + + Maldives + 1995 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6247 + + + + Maldives + 1995 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5724 + + + + Maldives + 1995 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 416 + + + + Maldives + 1995 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 107 + + + + Maldives + 1995 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5962 + + + + Maldives + 1995 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5384 + + + + Maldives + 1995 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 471 + + + + Maldives + 1995 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 107 + + + + Maldives + 1995 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5294 + + + + Maldives + 1995 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 4670 + + + + Maldives + 1995 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 517 + + + + Maldives + 1995 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 107 + + + + Maldives + 1995 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 7548 + + + + Maldives + 1995 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 6646 + + + + Maldives + 1995 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 737 + + + + Maldives + 1995 + Total + Both Sexes + 65 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 165 + + + + Maldives + 1995 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 543 + + + + Maldives + 1995 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 295 + + + + Maldives + 1995 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 26 + + + + Maldives + 1995 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 222 + + + + Mali + 2009 + Total + Both Sexes + 12 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1011070 + + + + Mali + 2009 + Total + Both Sexes + 12 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 460346 + + + + Mali + 2009 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 408243 + + + + Mali + 2009 + Total + Both Sexes + 12 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 142481 + + + + Mali + 2009 + Total + Both Sexes + 12 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8499010 + + + + Mali + 2009 + Total + Both Sexes + 12 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2533500 + + + + Mali + 2009 + Total + Both Sexes + 12 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5035502 + + + + Mali + 2009 + Total + Both Sexes + 12 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 930008 + + + + Mali + 2009 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1516146 + + + + Mali + 2009 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 643035 + + + + Mali + 2009 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 720103 + + + + Mali + 2009 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 153008 + + + + Mali + 2009 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1141903 + + + + Mali + 2009 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 385215 + + + + Mali + 2009 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 645318 + + + + Mali + 2009 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 111370 + + + + Mali + 2009 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 995702 + + + + Mali + 2009 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 256030 + + + + Mali + 2009 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 638225 + + + + Mali + 2009 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 101447 + + + + Mali + 2009 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 812798 + + + + Mali + 2009 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 187601 + + + + Mali + 2009 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 541731 + + + + Mali + 2009 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 83466 + + + + Mali + 2009 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 651949 + + + + Mali + 2009 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 152313 + + + + Mali + 2009 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 433879 + + + + Mali + 2009 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 65757 + + + + Mali + 2009 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 546603 + + + + Mali + 2009 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 128444 + + + + Mali + 2009 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 364905 + + + + Mali + 2009 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 53254 + + + + Mali + 2009 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 445887 + + + + Mali + 2009 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 101482 + + + + Mali + 2009 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 300921 + + + + Mali + 2009 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 43484 + + + + Mali + 2009 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 381806 + + + + Mali + 2009 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 82431 + + + + Mali + 2009 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 259897 + + + + Mali + 2009 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 39478 + + + + Mali + 2009 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 282677 + + + + Mali + 2009 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 53720 + + + + Mali + 2009 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 197522 + + + + Mali + 2009 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 31435 + + + + Mali + 2009 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 251018 + + + + Mali + 2009 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 33911 + + + + Mali + 2009 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 184510 + + + + Mali + 2009 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 32597 + + + + Mali + 2009 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 165374 + + + + Mali + 2009 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 20217 + + + + Mali + 2009 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 122198 + + + + Mali + 2009 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 22959 + + + + Mali + 2009 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 133382 + + + + Mali + 2009 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 14043 + + + + Mali + 2009 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 98617 + + + + Mali + 2009 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 20722 + + + + Mali + 2009 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 77101 + + + + Mali + 2009 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7528 + + + + Mali + 2009 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 56954 + + + + Mali + 2009 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12619 + + + + Mali + 2009 + Total + Both Sexes + 80 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 85594 + + + + Mali + 2009 + Total + Both Sexes + 80 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7184 + + + + Mali + 2009 + Total + Both Sexes + 80 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 62479 + + + + Mali + 2009 + Total + Both Sexes + 80 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 15931 + + + + Mali + 1998 + Total + Both Sexes + 12 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 677410 + + + + Mali + 1998 + Total + Both Sexes + 12 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 218736 + + + + Mali + 1998 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 458674 + + + + Mali + 1998 + Total + Both Sexes + 12 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6159740 + + + + Mali + 1998 + Total + Both Sexes + 12 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1222029 + + + + Mali + 1998 + Total + Both Sexes + 12 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4937711 + + + + Mali + 1998 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 991198 + + + + Mali + 1998 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 254287 + + + + Mali + 1998 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 736911 + + + + Mali + 1998 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5167907 + + + + Mali + 1998 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 984958 + + + + Mali + 1998 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4182949 + + + + Mali + 1998 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 755347 + + + + Mali + 1998 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 168144 + + + + Mali + 1998 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 587203 + + + + Mali + 1998 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 635174 + + + + Mali + 1998 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 132444 + + + + Mali + 1998 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 502730 + + + + Mali + 1998 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 561717 + + + + Mali + 1998 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 117185 + + + + Mali + 1998 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 444532 + + + + Mali + 1998 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 476791 + + + + Mali + 1998 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 93714 + + + + Mali + 1998 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 383077 + + + + Mali + 1998 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 394807 + + + + Mali + 1998 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75253 + + + + Mali + 1998 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 319554 + + + + Mali + 1998 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 304450 + + + + Mali + 1998 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 46385 + + + + Mali + 1998 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 258065 + + + + Mali + 1998 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 276043 + + + + Mali + 1998 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30117 + + + + Mali + 1998 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 245926 + + + + Mali + 1998 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 202230 + + + + Mali + 1998 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20435 + + + + Mali + 1998 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 181795 + + + + Mali + 1998 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 197807 + + + + Mali + 1998 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 16185 + + + + Mali + 1998 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 181622 + + + + Mali + 1998 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 127331 + + + + Mali + 1998 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9886 + + + + Mali + 1998 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 117445 + + + + Mali + 1998 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 104822 + + + + Mali + 1998 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7324 + + + + Mali + 1998 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 97498 + + + + Mali + 1998 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 53864 + + + + Mali + 1998 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3802 + + + + Mali + 1998 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 50062 + + + + Mali + 1998 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 111230 + + + + Mali + 1998 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7372 + + + + Mali + 1998 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 103858 + + + + Mali + 1998 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35725 + + + + Mali + 1998 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2150 + + + + Mali + 1998 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33575 + + + + Mali + 1998 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12082 + + + + Mali + 1998 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 776 + + + + Mali + 1998 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11306 + + + + Mali + 1998 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6413 + + + + Mali + 1998 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 432 + + + + Mali + 1998 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5981 + + + + Mali + 1998 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 32106 + + + + Mali + 1998 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6439 + + + + Mali + 1998 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25667 + + + + Malta + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 22248 + + + + Malta + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 21980 + + + + Malta + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 268 + + + + Malta + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 377952 + + + + Malta + 2011 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 353878 + + + + Malta + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 24074 + + + + Malta + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 26182 + + + + Malta + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 25943 + + + + Malta + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 239 + + + + Malta + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29450 + + + + Malta + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29067 + + + + Malta + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 383 + + + + Malta + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 30320 + + + + Malta + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29713 + + + + Malta + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 607 + + + + Malta + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 30194 + + + + Malta + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29414 + + + + Malta + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 780 + + + + Malta + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 28799 + + + + Malta + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 28016 + + + + Malta + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 783 + + + + Malta + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 25236 + + + + Malta + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 24190 + + + + Malta + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1046 + + + + Malta + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 26895 + + + + Malta + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 25187 + + + + Malta + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1708 + + + + Malta + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 30596 + + + + Malta + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 27946 + + + + Malta + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2650 + + + + Malta + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29246 + + + + Malta + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 26508 + + + + Malta + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2738 + + + + Malta + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 30595 + + + + Malta + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 27435 + + + + Malta + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3160 + + + + Malta + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 23728 + + + + Malta + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 21271 + + + + Malta + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2457 + + + + Malta + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 16205 + + + + Malta + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 14323 + + + + Malta + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1882 + + + + Malta + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 13287 + + + + Malta + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 11036 + + + + Malta + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2251 + + + + Malta + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8494 + + + + Malta + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6761 + + + + Malta + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1733 + + + + Malta + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4567 + + + + Malta + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3623 + + + + Malta + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 944 + + + + Malta + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1583 + + + + Malta + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1209 + + + + Malta + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 374 + + + + Malta + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 296 + + + + Malta + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 231 + + + + Malta + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 65 + + + + Malta + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 31 + + + + Malta + 2011 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 25 + + + + Malta + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6 + + + + Malta + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2014 + 0 + + + + Malta + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26900 + + + + Malta + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26399 + + + + Malta + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 501 + + + + Malta + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 362376 + + + + Malta + 2005 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 336255 + + + + Malta + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26121 + + + + Malta + 2005 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28734 + + + + Malta + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28297 + + + + Malta + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 437 + + + + Malta + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29365 + + + + Malta + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28794 + + + + Malta + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 571 + + + + Malta + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29676 + + + + Malta + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28855 + + + + Malta + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 821 + + + + Malta + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27670 + + + + Malta + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26804 + + + + Malta + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 866 + + + + Malta + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 24583 + + + + Malta + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23604 + + + + Malta + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 979 + + + + Malta + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27733 + + + + Malta + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26077 + + + + Malta + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1656 + + + + Malta + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 30433 + + + + Malta + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28118 + + + + Malta + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2315 + + + + Malta + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28830 + + + + Malta + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26390 + + + + Malta + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2440 + + + + Malta + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31018 + + + + Malta + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27874 + + + + Malta + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3144 + + + + Malta + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21763 + + + + Malta + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19486 + + + + Malta + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2277 + + + + Malta + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 17897 + + + + Malta + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15773 + + + + Malta + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2124 + + + + Malta + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14863 + + + + Malta + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12114 + + + + Malta + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2749 + + + + Malta + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10919 + + + + Malta + 2005 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8688 + + + + Malta + 2005 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2231 + + + + Malta + 2005 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7385 + + + + Malta + 2005 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5634 + + + + Malta + 2005 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1751 + + + + Malta + 2005 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3314 + + + + Malta + 2005 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2436 + + + + Malta + 2005 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 878 + + + + Malta + 2005 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2008 + 4607 + + + + Malta + 2005 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2008 + 3348 + + + + Malta + 2005 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2008 + 1259 + + + + Malta + 2005 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1022 + + + + Malta + 2005 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 733 + + + + Malta + 2005 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 289 + + + + Malta + 2005 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 237 + + + + Malta + 2005 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 156 + + + + Malta + 2005 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 81 + + + + Malta + 2005 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 34 + + + + Malta + 2005 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23 + + + + Malta + 2005 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + + + + Malta + 2005 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 2005 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 1995 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29025 + + + + Malta + 1995 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27436 + + + + Malta + 1995 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 707 + + + + Malta + 1995 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 882 + + + + Malta + 1995 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 324386 + + + + Malta + 1995 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 286284 + + + + Malta + 1995 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36444 + + + + Malta + 1995 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1658 + + + + Malta + 1995 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29188 + + + + Malta + 1995 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27946 + + + + Malta + 1995 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1068 + + + + Malta + 1995 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 174 + + + + Malta + 1995 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26577 + + + + Malta + 1995 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25374 + + + + Malta + 1995 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1135 + + + + Malta + 1995 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 68 + + + + Malta + 1995 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23195 + + + + Malta + 1995 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21923 + + + + Malta + 1995 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1217 + + + + Malta + 1995 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55 + + + + Malta + 1995 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26876 + + + + Malta + 1995 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 24772 + + + + Malta + 1995 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2053 + + + + Malta + 1995 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 51 + + + + Malta + 1995 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29925 + + + + Malta + 1995 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27068 + + + + Malta + 1995 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2807 + + + + Malta + 1995 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50 + + + + Malta + 1995 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28311 + + + + Malta + 1995 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25340 + + + + Malta + 1995 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2903 + + + + Malta + 1995 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 68 + + + + Malta + 1995 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 30729 + + + + Malta + 1995 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27072 + + + + Malta + 1995 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3610 + + + + Malta + 1995 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47 + + + + Malta + 1995 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21724 + + + + Malta + 1995 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19042 + + + + Malta + 1995 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2647 + + + + Malta + 1995 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 35 + + + + Malta + 1995 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18624 + + + + Malta + 1995 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15905 + + + + Malta + 1995 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2687 + + + + Malta + 1995 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 32 + + + + Malta + 1995 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 16930 + + + + Malta + 1995 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13251 + + + + Malta + 1995 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3643 + + + + Malta + 1995 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36 + + + + Malta + 1995 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14520 + + + + Malta + 1995 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10967 + + + + Malta + 1995 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3519 + + + + Malta + 1995 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 34 + + + + Malta + 1995 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12495 + + + + Malta + 1995 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9145 + + + + Malta + 1995 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3317 + + + + Malta + 1995 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33 + + + + Malta + 1995 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7825 + + + + Malta + 1995 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5531 + + + + Malta + 1995 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2274 + + + + Malta + 1995 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20 + + + + Malta + 1995 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5011 + + + + Malta + 1995 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3358 + + + + Malta + 1995 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1624 + + + + Malta + 1995 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29 + + + + Malta + 1995 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2585 + + + + Malta + 1995 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1616 + + + + Malta + 1995 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 939 + + + + Malta + 1995 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 30 + + + + Malta + 1995 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 714 + + + + Malta + 1995 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 455 + + + + Malta + 1995 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 249 + + + + Malta + 1995 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10 + + + + Malta + 1995 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 132 + + + + Malta + 1995 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 83 + + + + Malta + 1995 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45 + + + + Malta + 1995 + Total + Both Sexes + 95 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Malta + 1995 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 1995 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 1995 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Malta + 1995 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Marshall Islands + 1999 + Total + Both Sexes + Total + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 50848 + + + + Marshall Islands + 1999 + Total + Both Sexes + Total + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 39296 + + + + Marshall Islands + 1999 + Total + Both Sexes + Total + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 11552 + + + + Mauritania + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 304949 + + + + Mauritania + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 201989 + + + + Mauritania + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 102960 + + + + Mauritania + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1712386 + + + + Mauritania + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 922697 + + + + Mauritania + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 789681 + + + + Mauritania + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 272945 + + + + Mauritania + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 171973 + + + + Mauritania + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 100972 + + + + Mauritania + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 213675 + + + + Mauritania + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 126503 + + + + Mauritania + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 87172 + + + + Mauritania + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 189287 + + + + Mauritania + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 104918 + + + + Mauritania + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 84369 + + + + Mauritania + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 155217 + + + + Mauritania + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 80463 + + + + Mauritania + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 74754 + + + + Mauritania + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 137607 + + + + Mauritania + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65226 + + + + Mauritania + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 72381 + + + + Mauritania + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 106631 + + + + Mauritania + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 46914 + + + + Mauritania + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 59717 + + + + Mauritania + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 81661 + + + + Mauritania + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34310 + + + + Mauritania + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 47351 + + + + Mauritania + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 66325 + + + + Mauritania + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 25054 + + + + Mauritania + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 41271 + + + + Mauritania + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 44793 + + + + Mauritania + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17090 + + + + Mauritania + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27703 + + + + Mauritania + 2000 + Total + Both Sexes + 60 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 139296 + + + + Mauritania + 2000 + Total + Both Sexes + 60 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 48257 + + + + Mauritania + 2000 + Total + Both Sexes + 60 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 91031 + + + + Mauritius + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 93639 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 92280 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1283 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 76 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1074105 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 957683 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 105521 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10901 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 101008 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 99316 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1452 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 240 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 92671 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 89319 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2142 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1210 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 90937 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 84644 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3856 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2437 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 103429 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 95766 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5524 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2139 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 87797 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 80611 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5888 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1298 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 89386 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 80996 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7517 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 873 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 99341 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 89196 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9493 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 652 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 86337 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 75866 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10034 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 437 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 73054 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 61332 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11364 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 358 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 57342 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 44921 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 12133 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 288 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 35439 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 25401 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9817 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 221 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 99164 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 63436 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 34835 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 893 + 23,24 + + + Mauritius + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 25375 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16298 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8866 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 211 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 18044 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10654 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7222 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 168 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11369 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6419 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4813 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 137 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6368 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3387 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2892 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 89 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1982 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 990 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 945 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 47 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 491 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 249 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 224 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 18 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 96 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56 + 23 + + + Mauritius + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 56023 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 54176 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1823 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 24 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 937520 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 794390 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 139648 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 12 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3482 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 102088 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 97335 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4710 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 43 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 110892 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 103375 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6884 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 633 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 93797 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 85998 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6896 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 903 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 99515 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 89872 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 8858 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 785 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 101946 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 91042 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10543 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 361 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 90406 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 78679 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11536 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 191 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 77931 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 64029 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13804 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 98 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 56939 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 43453 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13403 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 83 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 40491 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 27728 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 12693 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 70 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 33097 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 19805 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13230 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 62 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 25768 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 14426 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11288 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 54 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 21694 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11431 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10206 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 57 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 14910 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7384 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7478 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 48 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7132 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3457 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3646 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 29 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3498 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1588 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1882 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 28 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1104 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 504 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 594 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 289 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 108 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 174 + 23 + + + Mauritius + 2000 + Total + Both Sexes + 95 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7 + 23 + + + Mayotte + 2007 + Total + Both Sexes + 14 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 23019 + + + + Mayotte + 2007 + Total + Both Sexes + 14 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20444 + + + + Mayotte + 2007 + Total + Both Sexes + 14 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2575 + + + + Mayotte + 2007 + Total + Both Sexes + 14 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 108187 + + + + Mayotte + 2007 + Total + Both Sexes + 14 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 87418 + + + + Mayotte + 2007 + Total + Both Sexes + 14 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20769 + + + + Mayotte + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13660 + + + + Mayotte + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11109 + + + + Mayotte + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2551 + + + + Mayotte + 2007 + Total + Both Sexes + 25 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41753 + + + + Mayotte + 2007 + Total + Both Sexes + 25 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33545 + + + + Mayotte + 2007 + Total + Both Sexes + 25 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8208 + + + + Mayotte + 2007 + Total + Both Sexes + 40 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19271 + + + + Mayotte + 2007 + Total + Both Sexes + 40 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15021 + + + + Mayotte + 2007 + Total + Both Sexes + 40 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4250 + + + + Mayotte + 2007 + Total + Both Sexes + 55 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6088 + + + + Mayotte + 2007 + Total + Both Sexes + 55 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4420 + + + + Mayotte + 2007 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1668 + + + + Mayotte + 2007 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4396 + + + + Mayotte + 2007 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2879 + + + + Mayotte + 2007 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1517 + + + + Mexico + 2020 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10943540 + + + + Mexico + 2020 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10770606 + + + + Mexico + 2020 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 131528 + + + + Mexico + 2020 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 41406 + + + + Mexico + 2020 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 104928894 + + + + Mexico + 2020 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 100091329 + + + + Mexico + 2020 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4587959 + + + + Mexico + 2020 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 249606 + + + + Mexico + 2020 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10806690 + + + + Mexico + 2020 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10679813 + + + + Mexico + 2020 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 87017 + + + + Mexico + 2020 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 39860 + + + + Mexico + 2020 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10422095 + + + + Mexico + 2020 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10271388 + + + + Mexico + 2020 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 107010 + + + + Mexico + 2020 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 43697 + + + + Mexico + 2020 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9993001 + + + + Mexico + 2020 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9845049 + + + + Mexico + 2020 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 124728 + + + + Mexico + 2020 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 23224 + + + + Mexico + 2020 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9420827 + + + + Mexico + 2020 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9232016 + + + + Mexico + 2020 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 167101 + + + + Mexico + 2020 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 21710 + + + + Mexico + 2020 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9020276 + + + + Mexico + 2020 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8770611 + + + + Mexico + 2020 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 228738 + + + + Mexico + 2020 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 20927 + + + + Mexico + 2020 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8503586 + + + + Mexico + 2020 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8198630 + + + + Mexico + 2020 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 286242 + + + + Mexico + 2020 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 18714 + + + + Mexico + 2020 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7942413 + + + + Mexico + 2020 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7628884 + + + + Mexico + 2020 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 299055 + + + + Mexico + 2020 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 14474 + + + + Mexico + 2020 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7037532 + + + + Mexico + 2020 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6668727 + + + + Mexico + 2020 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 361034 + + + + Mexico + 2020 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7771 + + + + Mexico + 2020 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5695958 + + + + Mexico + 2020 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5286790 + + + + Mexico + 2020 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 403697 + + + + Mexico + 2020 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5471 + + + + Mexico + 2020 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4821062 + + + + Mexico + 2020 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4382875 + + + + Mexico + 2020 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 434002 + + + + Mexico + 2020 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4185 + + + + Mexico + 2020 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3645077 + + + + Mexico + 2020 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3170576 + + + + Mexico + 2020 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 471595 + + + + Mexico + 2020 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2906 + + + + Mexico + 2020 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2647340 + + + + Mexico + 2020 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2207440 + + + + Mexico + 2020 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 437946 + + + + Mexico + 2020 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1954 + + + + Mexico + 2020 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1814582 + + + + Mexico + 2020 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1412708 + + + + Mexico + 2020 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 400514 + + + + Mexico + 2020 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1360 + + + + Mexico + 2020 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1175364 + + + + Mexico + 2020 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 873185 + + + + Mexico + 2020 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 301212 + + + + Mexico + 2020 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 967 + + + + Mexico + 2020 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 659245 + + + + Mexico + 2020 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 455148 + + + + Mexico + 2020 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 203511 + + + + Mexico + 2020 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 586 + + + + Mexico + 2020 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 266806 + + + + Mexico + 2020 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 174840 + + + + Mexico + 2020 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 91722 + + + + Mexico + 2020 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 244 + + + + Mexico + 2020 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 95205 + + + + Mexico + 2020 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 54085 + + + + Mexico + 2020 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 40998 + + + + Mexico + 2020 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 122 + + + + Mexico + 2020 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 18295 + + + + Mexico + 2020 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7958 + + + + Mexico + 2020 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 10309 + + + + Mexico + 2020 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2021 + 28 + + + + Mexico + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 10939937 + + + + Mexico + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 10674885 + + + + Mexico + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 196848 + + + + Mexico + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 68204 + + + + Mexico + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 89363273 + + + + Mexico + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 83099966 + + + + Mexico + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5590513 + + + + Mexico + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 672794 + + + + Mexico + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 11026112 + + + + Mexico + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 10807832 + + + + Mexico + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 140293 + + + + Mexico + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 77987 + + + + Mexico + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9892271 + + + + Mexico + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9602473 + + + + Mexico + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 184308 + + + + Mexico + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 105490 + + + + Mexico + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8788177 + + + + Mexico + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8481347 + + + + Mexico + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 234222 + + + + Mexico + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 72608 + + + + Mexico + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8470798 + + + + Mexico + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8102518 + + + + Mexico + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 301694 + + + + Mexico + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 66586 + + + + Mexico + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8292987 + + + + Mexico + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7913556 + + + + Mexico + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 325566 + + + + Mexico + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 53865 + + + + Mexico + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7009226 + + + + Mexico + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6610454 + + + + Mexico + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 363630 + + + + Mexico + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 35142 + + + + Mexico + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5928730 + + + + Mexico + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5472344 + + + + Mexico + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 424550 + + + + Mexico + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 31836 + + + + Mexico + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5064291 + + + + Mexico + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4575109 + + + + Mexico + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 459314 + + + + Mexico + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 29868 + + + + Mexico + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3895365 + + + + Mexico + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3383537 + + + + Mexico + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 486817 + + + + Mexico + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 25011 + + + + Mexico + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3116466 + + + + Mexico + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2570988 + + + + Mexico + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 520261 + + + + Mexico + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 25217 + + + + Mexico + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2317265 + + + + Mexico + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1788432 + + + + Mexico + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 507372 + + + + Mexico + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 21461 + + + + Mexico + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1873934 + + + + Mexico + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1334311 + + + + Mexico + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 519147 + + + + Mexico + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 20476 + + + + Mexico + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1245483 + + + + Mexico + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 853348 + + + + Mexico + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 377031 + + + + Mexico + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 15104 + + + + Mexico + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 798936 + + + + Mexico + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 516371 + + + + Mexico + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 270950 + + + + Mexico + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 11615 + + + + Mexico + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 454164 + + + + Mexico + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 275902 + + + + Mexico + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 170836 + + + + Mexico + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7426 + + + + Mexico + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 164924 + + + + Mexico + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 96891 + + + + Mexico + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 64982 + + + + Mexico + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3051 + + + + Mexico + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 65732 + + + + Mexico + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 32988 + + + + Mexico + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 31359 + + + + Mexico + 2010 + Total + Both Sexes + 95 - 99 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1385 + + + + Mexico + 2010 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 18475 + + + + Mexico + 2010 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6680 + + + + Mexico + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 11333 + + + + Mexico + 2010 + Total + Both Sexes + 100 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 462 + + + + Mexico + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10952123 + + + + Mexico + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10734066 + + + + Mexico + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 196057 + + + + Mexico + 2005 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 22000 + + + + Mexico + 2005 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 79754687 + + + + Mexico + 2005 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 73659958 + + + + Mexico + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5943863 + + + + Mexico + 2005 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 150866 + + + + Mexico + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10109021 + + + + Mexico + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9905567 + + + + Mexico + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 191002 + + + + Mexico + 2005 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12452 + + + + Mexico + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8964629 + + + + Mexico + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8690428 + + + + Mexico + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 259282 + + + + Mexico + 2005 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14919 + + + + Mexico + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8103358 + + + + Mexico + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7777565 + + + + Mexico + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 308745 + + + + Mexico + 2005 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 17048 + + + + Mexico + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7933951 + + + + Mexico + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7591410 + + + + Mexico + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 325918 + + + + Mexico + 2005 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 16623 + + + + Mexico + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7112526 + + + + Mexico + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6712231 + + + + Mexico + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 385428 + + + + Mexico + 2005 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14867 + + + + Mexico + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6017268 + + + + Mexico + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5572595 + + + + Mexico + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 433373 + + + + Mexico + 2005 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11300 + + + + Mexico + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5015255 + + + + Mexico + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4540621 + + + + Mexico + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 465947 + + + + Mexico + 2005 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8687 + + + + Mexico + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4090650 + + + + Mexico + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3587266 + + + + Mexico + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 495928 + + + + Mexico + 2005 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7456 + + + + Mexico + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3117071 + + + + Mexico + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2601763 + + + + Mexico + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 509804 + + + + Mexico + 2005 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5504 + + + + Mexico + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2622476 + + + + Mexico + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2023514 + + + + Mexico + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 592738 + + + + Mexico + 2005 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6224 + + + + Mexico + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1958069 + + + + Mexico + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1453162 + + + + Mexico + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 500753 + + + + Mexico + 2005 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4154 + + + + Mexico + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1496691 + + + + Mexico + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1048109 + + + + Mexico + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 444959 + + + + Mexico + 2005 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3623 + + + + Mexico + 2005 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1048315 + + + + Mexico + 2005 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 689974 + + + + Mexico + 2005 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 355875 + + + + Mexico + 2005 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2466 + + + + Mexico + 2005 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 657011 + + + + Mexico + 2005 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 415118 + + + + Mexico + 2005 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 240091 + + + + Mexico + 2005 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1802 + + + + Mexico + 2005 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 345154 + + + + Mexico + 2005 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 207267 + + + + Mexico + 2005 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 136956 + + + + Mexico + 2005 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 931 + + + + Mexico + 2005 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 132325 + + + + Mexico + 2005 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75676 + + + + Mexico + 2005 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 56188 + + + + Mexico + 2005 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 461 + + + + Mexico + 2005 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 61145 + + + + Mexico + 2005 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 28337 + + + + Mexico + 2005 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 32575 + + + + Mexico + 2005 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 233 + + + + Mexico + 2005 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 17649 + + + + Mexico + 2005 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5289 + + + + Mexico + 2005 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12244 + + + + Mexico + 2005 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 116 + + + + Mexico + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10736493 + + + + Mexico + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10411983 + + + + Mexico + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 306545 + + + + Mexico + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 17965 + + + + Mexico + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 73579131 + + + + Mexico + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 67253656 + + + + Mexico + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6248636 + + + + Mexico + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 76839 + + + + Mexico + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9992135 + + + + Mexico + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9691106 + + + + Mexico + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 293570 + + + + Mexico + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7459 + + + + Mexico + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9071134 + + + + Mexico + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8709487 + + + + Mexico + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 351649 + + + + Mexico + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9998 + + + + Mexico + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8157743 + + + + Mexico + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7814674 + + + + Mexico + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 337498 + + + + Mexico + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5571 + + + + Mexico + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7136523 + + + + Mexico + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6751708 + + + + Mexico + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 378672 + + + + Mexico + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6143 + + + + Mexico + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6352538 + + + + Mexico + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5880856 + + + + Mexico + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 467102 + + + + Mexico + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4580 + + + + Mexico + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5194833 + + + + Mexico + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4724764 + + + + Mexico + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 465335 + + + + Mexico + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4734 + + + + Mexico + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4072091 + + + + Mexico + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3565102 + + + + Mexico + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 503428 + + + + Mexico + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3561 + + + + Mexico + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3357953 + + + + Mexico + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2825835 + + + + Mexico + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 529008 + + + + Mexico + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3110 + + + + Mexico + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2559231 + + + + Mexico + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2031962 + + + + Mexico + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 524712 + + + + Mexico + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2557 + + + + Mexico + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2198146 + + + + Mexico + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1653681 + + + + Mexico + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 541365 + + + + Mexico + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3100 + + + + Mexico + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1660785 + + + + Mexico + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1196712 + + + + Mexico + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 462021 + + + + Mexico + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2052 + + + + Mexico + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1245674 + + + + Mexico + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 845945 + + + + Mexico + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 397891 + + + + Mexico + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1838 + + + + Mexico + 2000 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1843852 + + + + Mexico + 2000 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1149841 + + + + Mexico + 2000 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 689840 + + + + Mexico + 2000 + Total + Both Sexes + 75 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4171 + + + + Micronesia (Federated States of) + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 78056 + + + + Micronesia (Federated States of) + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 72140 + + + + Micronesia (Federated States of) + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5916 + + + + Mongolia + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 236865 + + + + Mongolia + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 233567 + + + + Mongolia + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3298 + + + + Mongolia + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2142834 + + + + Mongolia + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2106315 + + + + Mongolia + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 36519 + + + + Mongolia + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 257645 + + + + Mongolia + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 253504 + + + + Mongolia + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4141 + + + + Mongolia + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 292183 + + + + Mongolia + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 287858 + + + + Mongolia + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4325 + + + + Mongolia + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 247983 + + + + Mongolia + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 242498 + + + + Mongolia + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5485 + + + + Mongolia + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 222522 + + + + Mongolia + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 219358 + + + + Mongolia + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3164 + + + + Mongolia + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 202383 + + + + Mongolia + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 200111 + + + + Mongolia + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2272 + + + + Mongolia + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 179267 + + + + Mongolia + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 176690 + + + + Mongolia + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2577 + + + + Mongolia + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 158756 + + + + Mongolia + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 156242 + + + + Mongolia + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2514 + + + + Mongolia + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 122082 + + + + Mongolia + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 120499 + + + + Mongolia + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1583 + + + + Mongolia + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 71989 + + + + Mongolia + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 70999 + + + + Mongolia + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 990 + + + + Mongolia + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 49453 + + + + Mongolia + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 48730 + + + + Mongolia + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 723 + + + + Mongolia + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38232 + + + + Mongolia + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 37169 + + + + Mongolia + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1063 + + + + Mongolia + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 29332 + + + + Mongolia + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 27993 + + + + Mongolia + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1339 + + + + Mongolia + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 18617 + + + + Mongolia + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 17527 + + + + Mongolia + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1090 + + + + Mongolia + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9166 + + + + Mongolia + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8366 + + + + Mongolia + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 800 + + + + Mongolia + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4415 + + + + Mongolia + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3733 + + + + Mongolia + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 682 + + + + Mongolia + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1459 + + + + Mongolia + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1131 + + + + Mongolia + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 328 + + + + Mongolia + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 402 + + + + Mongolia + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 285 + + + + Mongolia + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 117 + + + + Mongolia + 2010 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 83 + + + + Mongolia + 2010 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 55 + + + + Mongolia + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 28 + + + + Mongolia + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 317434 + + + + Mongolia + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 306554 + + + + Mongolia + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10880 + + + + Mongolia + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1841806 + + + + Mongolia + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1796915 + + + + Mongolia + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 44891 + + + + Mongolia + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 263358 + + + + Mongolia + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 254950 + + + + Mongolia + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8408 + + + + Mongolia + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 235751 + + + + Mongolia + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 232730 + + + + Mongolia + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3021 + + + + Mongolia + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 216652 + + + + Mongolia + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 214399 + + + + Mongolia + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2253 + + + + Mongolia + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 187872 + + + + Mongolia + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 185621 + + + + Mongolia + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2251 + + + + Mongolia + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 172606 + + + + Mongolia + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 170335 + + + + Mongolia + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2271 + + + + Mongolia + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 127220 + + + + Mongolia + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 126005 + + + + Mongolia + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1215 + + + + Mongolia + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 82888 + + + + Mongolia + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 81940 + + + + Mongolia + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 948 + + + + Mongolia + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 57835 + + + + Mongolia + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 57084 + + + + Mongolia + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 751 + + + + Mongolia + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55895 + + + + Mongolia + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 54480 + + + + Mongolia + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1415 + + + + Mongolia + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 42292 + + + + Mongolia + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40539 + + + + Mongolia + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1753 + + + + Mongolia + 2000 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 82003 + + + + Mongolia + 2000 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 72278 + + + + Mongolia + 2000 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9725 + + + + Montenegro + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41371 + + + + Montenegro + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41059 + + + + Montenegro + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 312 + + + + Montenegro + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 542649 + + + + Montenegro + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 534500 + + + + Montenegro + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8149 + + + + Montenegro + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44093 + + + + Montenegro + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43732 + + + + Montenegro + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 361 + + + + Montenegro + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 42816 + + + + Montenegro + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 42492 + + + + Montenegro + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 324 + + + + Montenegro + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 45793 + + + + Montenegro + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 45504 + + + + Montenegro + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 289 + + + + Montenegro + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44495 + + + + Montenegro + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44226 + + + + Montenegro + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 269 + + + + Montenegro + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41879 + + + + Montenegro + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41649 + + + + Montenegro + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 230 + + + + Montenegro + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 40496 + + + + Montenegro + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 40249 + + + + Montenegro + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 247 + + + + Montenegro + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43089 + + + + Montenegro + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 42839 + + + + Montenegro + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 250 + + + + Montenegro + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43613 + + + + Montenegro + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43276 + + + + Montenegro + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 337 + + + + Montenegro + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41223 + + + + Montenegro + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 40912 + + + + Montenegro + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 311 + + + + Montenegro + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34196 + + + + Montenegro + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33826 + + + + Montenegro + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 370 + + + + Montenegro + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 22121 + + + + Montenegro + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 21689 + + + + Montenegro + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 432 + + + + Montenegro + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25141 + + + + Montenegro + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 24349 + + + + Montenegro + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 792 + + + + Montenegro + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17184 + + + + Montenegro + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 15733 + + + + Montenegro + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1451 + + + + Montenegro + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10021 + + + + Montenegro + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8729 + + + + Montenegro + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1292 + + + + Montenegro + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3739 + + + + Montenegro + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3159 + + + + Montenegro + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 580 + + + + Montenegro + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 885 + + + + Montenegro + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 688 + + + + Montenegro + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 197 + + + + Montenegro + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 202 + + + + Montenegro + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 148 + + + + Montenegro + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 54 + + + + Montenegro + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 44 + + + + Montenegro + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25 + + + + Montenegro + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 19 + + + + Montenegro + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2011 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 248 + + + + Montenegro + 2011 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 216 + + + + Montenegro + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32 + + + + Montenegro + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45214 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44890 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 324 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2006 + 94601 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 93976 + + + + Montenegro + 2003 + Total + Both Sexes + 10 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 625 + + + + Montenegro + 2003 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 532356 + + + + Montenegro + 2003 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 520088 + + + + Montenegro + 2003 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12268 + + + + Montenegro + 2003 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49387 + + + + Montenegro + 2003 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 49086 + + + + Montenegro + 2003 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 301 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 48963 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 48684 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 279 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2006 + 135479 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 134779 + + + + Montenegro + 2003 + Total + Both Sexes + 20 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 700 + + + + Montenegro + 2003 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44988 + + + + Montenegro + 2003 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44774 + + + + Montenegro + 2003 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 214 + + + + Montenegro + 2003 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41528 + + + + Montenegro + 2003 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41321 + + + + Montenegro + 2003 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 207 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41705 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41446 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 259 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2006 + 228116 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 225887 + + + + Montenegro + 2003 + Total + Both Sexes + 35 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 2229 + + + + Montenegro + 2003 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44175 + + + + Montenegro + 2003 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 43901 + + + + Montenegro + 2003 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 274 + + + + Montenegro + 2003 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44496 + + + + Montenegro + 2003 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 44163 + + + + Montenegro + 2003 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 333 + + + + Montenegro + 2003 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 40436 + + + + Montenegro + 2003 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 40109 + + + + Montenegro + 2003 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 327 + + + + Montenegro + 2003 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28071 + + + + Montenegro + 2003 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27695 + + + + Montenegro + 2003 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 376 + + + + Montenegro + 2003 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 29233 + + + + Montenegro + 2003 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28573 + + + + Montenegro + 2003 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 660 + + + + Montenegro + 2003 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28650 + + + + Montenegro + 2003 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27131 + + + + Montenegro + 2003 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1519 + + + + Montenegro + 2003 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2006 + 74160 + + + + Montenegro + 2003 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 65446 + + + + Montenegro + 2003 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 8714 + + + + Montenegro + 2003 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21240 + + + + Montenegro + 2003 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18761 + + + + Montenegro + 2003 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2479 + + + + Montenegro + 2003 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14270 + + + + Montenegro + 2003 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12026 + + + + Montenegro + 2003 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2244 + + + + Montenegro + 2003 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6613 + + + + Montenegro + 2003 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5314 + + + + Montenegro + 2003 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1299 + + + + Montenegro + 2003 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1966 + + + + Montenegro + 2003 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1344 + + + + Montenegro + 2003 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 622 + + + + Montenegro + 2003 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1087 + + + + Montenegro + 2003 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 682 + + + + Montenegro + 2003 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 405 + + + + Montenegro + 2003 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 265 + + + + Montenegro + 2003 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 152 + + + + Montenegro + 2003 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 113 + + + + Montenegro + 2003 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 69 + + + + Montenegro + 2003 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 36 + + + + Montenegro + 2003 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33 + + + + Montenegro + 2003 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2006 + 5542 + + + + Montenegro + 2003 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 5193 + + + + Montenegro + 2003 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2006 + 349 + + + + Montserrat + 2011 + Total + Both Sexes + 10 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 670 + + + + Montserrat + 2011 + Total + Both Sexes + 10 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 669 + + + + Montserrat + 2011 + Total + Both Sexes + 10 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + + + + Montserrat + 2011 + Total + Both Sexes + 10 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4165 + + + + Montserrat + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4019 + + + + Montserrat + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 145 + + + + Montserrat + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + + + + Montserrat + 2011 + Total + Both Sexes + 20 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 559 + + + + Montserrat + 2011 + Total + Both Sexes + 20 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 557 + + + + Montserrat + 2011 + Total + Both Sexes + 20 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2 + + + + Montserrat + 2011 + Total + Both Sexes + 20 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 30 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 651 + + + + Montserrat + 2011 + Total + Both Sexes + 30 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 642 + + + + Montserrat + 2011 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9 + + + + Montserrat + 2011 + Total + Both Sexes + 30 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 40 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 774 + + + + Montserrat + 2011 + Total + Both Sexes + 40 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 764 + + + + Montserrat + 2011 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 10 + + + + Montserrat + 2011 + Total + Both Sexes + 40 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 50 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 630 + + + + Montserrat + 2011 + Total + Both Sexes + 50 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 611 + + + + Montserrat + 2011 + Total + Both Sexes + 50 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 19 + + + + Montserrat + 2011 + Total + Both Sexes + 50 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 60 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 481 + + + + Montserrat + 2011 + Total + Both Sexes + 60 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 447 + + + + Montserrat + 2011 + Total + Both Sexes + 60 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 34 + + + + Montserrat + 2011 + Total + Both Sexes + 60 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + + + + Montserrat + 2011 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 400 + + + + Montserrat + 2011 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 329 + + + + Montserrat + 2011 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 70 + + + + Montserrat + 2011 + Total + Both Sexes + 70 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + + + + Morocco + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3281000 + + + + Morocco + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2844840 + + + + Morocco + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 436160 + + + + Morocco + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 23700447 + + + + Morocco + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 13516992 + + + + Morocco + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 10183455 + + + + Morocco + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3148590 + + + + Morocco + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2385067 + + + + Morocco + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 763523 + + + + Morocco + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2947700 + + + + Morocco + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1910283 + + + + Morocco + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1037417 + + + + Morocco + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2482273 + + + + Morocco + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1518007 + + + + Morocco + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 964266 + + + + Morocco + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2203371 + + + + Morocco + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1293377 + + + + Morocco + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 909994 + + + + Morocco + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1891551 + + + + Morocco + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 972939 + + + + Morocco + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 918612 + + + + Morocco + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1860474 + + + + Morocco + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 814515 + + + + Morocco + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1045959 + + + + Morocco + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1489679 + + + + Morocco + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 650380 + + + + Morocco + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 839299 + + + + Morocco + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1227188 + + + + Morocco + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 491170 + + + + Morocco + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 736018 + + + + Morocco + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 759563 + + + + Morocco + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 245689 + + + + Morocco + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 513874 + + + + Morocco + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 740891 + + + + Morocco + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 155587 + + + + Morocco + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 585304 + + + + Morocco + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 535064 + + + + Morocco + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 94078 + + + + Morocco + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 440986 + + + + Morocco + 2004 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 503367 + + + + Morocco + 2004 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 62363 + + + + Morocco + 2004 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 441004 + + + + Morocco + 2004 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 236772 + + + + Morocco + 2004 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 29128 + + + + Morocco + 2004 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 207644 + + + + Morocco + 2004 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 201017 + + + + Morocco + 2004 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 17242 + + + + Morocco + 2004 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 183775 + + + + Morocco + 2004 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 62306 + + + + Morocco + 2004 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7876 + + + + Morocco + 2004 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 54430 + + + + Morocco + 2004 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 158512 + + + + Morocco + 2004 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23454 + + + + Morocco + 2004 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 135058 + + + + Morocco + 2004 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 53738 + + + + Morocco + 2004 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5582 + + + + Morocco + 2004 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 48156 + + + + Morocco + 2004 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 15219 + + + + Morocco + 2004 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3824 + + + + Morocco + 2004 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11395 + + + + Morocco + 2004 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 27249 + + + + Morocco + 2004 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6172 + + + + Morocco + 2004 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 21077 + + + + Morocco + 2004 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 33435 + + + + Morocco + 2004 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 8873 + + + + Morocco + 2004 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 24562 + + + + Mozambique + 2017 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3432034 + + + + Mozambique + 2017 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2086896 + + + + Mozambique + 2017 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1300269 + + + + Mozambique + 2017 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 44869 + + + + Mozambique + 2017 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 17792726 + + + + Mozambique + 2017 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10730413 + + + + Mozambique + 2017 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6906948 + + + + Mozambique + 2017 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 155365 + + + + Mozambique + 2017 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2874951 + + + + Mozambique + 2017 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2026279 + + + + Mozambique + 2017 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 818954 + + + + Mozambique + 2017 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 29718 + + + + Mozambique + 2017 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2420057 + + + + Mozambique + 2017 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1693673 + + + + Mozambique + 2017 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 706932 + + + + Mozambique + 2017 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 19452 + + + + Mozambique + 2017 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1873543 + + + + Mozambique + 2017 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1255791 + + + + Mozambique + 2017 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 605548 + + + + Mozambique + 2017 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 12204 + + + + Mozambique + 2017 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1528432 + + + + Mozambique + 2017 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 940115 + + + + Mozambique + 2017 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 578349 + + + + Mozambique + 2017 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9968 + + + + Mozambique + 2017 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1349728 + + + + Mozambique + 2017 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 753594 + + + + Mozambique + 2017 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 587769 + + + + Mozambique + 2017 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8365 + + + + Mozambique + 2017 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1065955 + + + + Mozambique + 2017 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 566163 + + + + Mozambique + 2017 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 492935 + + + + Mozambique + 2017 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6857 + + + + Mozambique + 2017 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 835832 + + + + Mozambique + 2017 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 425261 + + + + Mozambique + 2017 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 405263 + + + + Mozambique + 2017 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5308 + + + + Mozambique + 2017 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 644364 + + + + Mozambique + 2017 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 324488 + + + + Mozambique + 2017 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 315646 + + + + Mozambique + 2017 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4230 + + + + Mozambique + 2017 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 492170 + + + + Mozambique + 2017 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 229647 + + + + Mozambique + 2017 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 259334 + + + + Mozambique + 2017 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3189 + + + + Mozambique + 2017 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 397957 + + + + Mozambique + 2017 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 157848 + + + + Mozambique + 2017 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 236877 + + + + Mozambique + 2017 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3232 + + + + Mozambique + 2017 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 308384 + + + + Mozambique + 2017 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 106267 + + + + Mozambique + 2017 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 199892 + + + + Mozambique + 2017 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2225 + + + + Mozambique + 2017 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 200672 + + + + Mozambique + 2017 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 62060 + + + + Mozambique + 2017 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 136967 + + + + Mozambique + 2017 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1645 + + + + Mozambique + 2017 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 159541 + + + + Mozambique + 2017 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 45025 + + + + Mozambique + 2017 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 113142 + + + + Mozambique + 2017 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1374 + + + + Mozambique + 2017 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 209106 + + + + Mozambique + 2017 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 57306 + + + + Mozambique + 2017 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 149071 + + + + Mozambique + 2017 + Total + Both Sexes + 80 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2729 + + + + Mozambique + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2406607 + + + + Mozambique + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1497084 + + + + Mozambique + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 892690 + + + + Mozambique + 2007 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 16833 + + + + Mozambique + 2007 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 13168223 + + + + Mozambique + 2007 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6888431 + + + + Mozambique + 2007 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6182587 + + + + Mozambique + 2007 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 97205 + + + + Mozambique + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1917052 + + + + Mozambique + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1318711 + + + + Mozambique + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 586983 + + + + Mozambique + 2007 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11358 + + + + Mozambique + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1760939 + + + + Mozambique + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1015117 + + + + Mozambique + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 721274 + + + + Mozambique + 2007 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 24548 + + + + Mozambique + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1549019 + + + + Mozambique + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 789783 + + + + Mozambique + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 747706 + + + + Mozambique + 2007 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11530 + + + + Mozambique + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1251554 + + + + Mozambique + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 604715 + + + + Mozambique + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 639377 + + + + Mozambique + 2007 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7462 + + + + Mozambique + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1037587 + + + + Mozambique + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 483818 + + + + Mozambique + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 547955 + + + + Mozambique + 2007 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5814 + + + + Mozambique + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 755605 + + + + Mozambique + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 365882 + + + + Mozambique + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 385374 + + + + Mozambique + 2007 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4349 + + + + Mozambique + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 649896 + + + + Mozambique + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 284814 + + + + Mozambique + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 361556 + + + + Mozambique + 2007 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3526 + + + + Mozambique + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 514520 + + + + Mozambique + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 180816 + + + + Mozambique + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 330477 + + + + Mozambique + 2007 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3227 + + + + Mozambique + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 402668 + + + + Mozambique + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 131100 + + + + Mozambique + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 269320 + + + + Mozambique + 2007 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2248 + + + + Mozambique + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 299703 + + + + Mozambique + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 82722 + + + + Mozambique + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 215035 + + + + Mozambique + 2007 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1946 + + + + Mozambique + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 241634 + + + + Mozambique + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 58937 + + + + Mozambique + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 181193 + + + + Mozambique + 2007 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1504 + + + + Mozambique + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 153617 + + + + Mozambique + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 34356 + + + + Mozambique + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 118229 + + + + Mozambique + 2007 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1032 + + + + Mozambique + 2007 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 116460 + + + + Mozambique + 2007 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 22597 + + + + Mozambique + 2007 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 93135 + + + + Mozambique + 2007 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 728 + + + + Mozambique + 2007 + Total + Both Sexes + 80 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 111362 + + + + Mozambique + 2007 + Total + Both Sexes + 80 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 17979 + + + + Mozambique + 2007 + Total + Both Sexes + 80 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 92283 + + + + Mozambique + 2007 + Total + Both Sexes + 80 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1100 + + + + Mozambique + 1997 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1825665 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 836615 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 971768 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 17282 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 10310782 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 4078755 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 6105546 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 126481 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1628405 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 797818 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 807304 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 23283 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1464727 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 628357 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 802874 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 33496 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1163574 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 486621 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 664233 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 12720 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 887710 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 396149 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 483949 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 7612 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 802208 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 312961 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 482391 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 6856 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 573193 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 191696 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 376026 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 5471 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 539168 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 150617 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 383498 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 5053 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 390962 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 92034 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 294894 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 4034 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 336356 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 71966 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 261161 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 3229 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 239431 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 47531 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 189340 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 2560 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 209713 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 33963 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 173766 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1984 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 98014 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 14386 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 82548 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1080 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2001 + 151656 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 18041 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2001 + 131794 + 25 + + + Mozambique + 1997 + Total + Both Sexes + 75 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2001 + 1821 + 25 + + + Myanmar + 2014 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 4857955 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 4631165 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 226790 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 38792586 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 35009984 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3782602 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 4260063 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 4021878 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 238185 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3922795 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3666652 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 256143 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3835001 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3537048 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 297953 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3688862 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3368511 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 320351 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3408280 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3086310 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 321970 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3158439 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2840156 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 318283 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2846351 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2529747 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 316604 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2480704 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2163484 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 317220 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1992677 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1731380 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 261297 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1533332 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1282026 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 251306 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1032828 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 846422 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 186406 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 691675 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 527469 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 164206 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 535331 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 400055 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 135276 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 324767 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 226086 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 98681 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 152997 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 106320 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 46677 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 90 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 70529 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 90 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 45275 + 26 + + + Myanmar + 2014 + Total + Both Sexes + 90 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 25254 + 26 + + + Namibia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 245209 + + + + Namibia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 227522 + + + + Namibia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 17687 + + + + Namibia + 2011 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1569443 + + + + Namibia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1402046 + + + + Namibia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 167397 + + + + Namibia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 237575 + + + + Namibia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 225025 + + + + Namibia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12550 + + + + Namibia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 212864 + + + + Namibia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 200277 + + + + Namibia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12587 + + + + Namibia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 174472 + + + + Namibia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 162680 + + + + Namibia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 11792 + + + + Namibia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 146425 + + + + Namibia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 135203 + + + + Namibia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 11222 + + + + Namibia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 122834 + + + + Namibia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 112662 + + + + Namibia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10172 + + + + Namibia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 96228 + + + + Namibia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 86683 + + + + Namibia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9545 + + + + Namibia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 78956 + + + + Namibia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 69488 + + + + Namibia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9468 + + + + Namibia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 60299 + + + + Namibia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 50390 + + + + Namibia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9909 + + + + Namibia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 47069 + + + + Namibia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 38247 + + + + Namibia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8822 + + + + Namibia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 40171 + + + + Namibia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 29412 + + + + Namibia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10759 + + + + Namibia + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 30699 + + + + Namibia + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 21217 + + + + Namibia + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9482 + + + + Namibia + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 23808 + + + + Namibia + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 15196 + + + + Namibia + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8612 + + + + Namibia + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 17083 + + + + Namibia + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10639 + + + + Namibia + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6444 + + + + Namibia + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 14214 + + + + Namibia + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7505 + + + + Namibia + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6709 + + + + Namibia + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9241 + + + + Namibia + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4652 + + + + Namibia + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 4589 + + + + Namibia + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6737 + + + + Namibia + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3001 + + + + Namibia + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3736 + + + + Namibia + 2011 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 5559 + + + + Namibia + 2011 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 2247 + + + + Namibia + 2011 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 3312 + + + + Namibia + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 201734 + + + + Namibia + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 182855 + + + + Namibia + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 18879 + + + + Namibia + 2001 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1100425 + + + + Namibia + 2001 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 894663 + + + + Namibia + 2001 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 205762 + + + + Namibia + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 173354 + + + + Namibia + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 152993 + + + + Namibia + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 20361 + + + + Namibia + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 149215 + + + + Namibia + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 130027 + + + + Namibia + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 19188 + + + + Namibia + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 117069 + + + + Namibia + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 100791 + + + + Namibia + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 16278 + + + + Namibia + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 95308 + + + + Namibia + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 79738 + + + + Namibia + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15570 + + + + Namibia + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 73188 + + + + Namibia + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 57995 + + + + Namibia + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15193 + + + + Namibia + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 57007 + + + + Namibia + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 44451 + + + + Namibia + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 12556 + + + + Namibia + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 47206 + + + + Namibia + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 34132 + + + + Namibia + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 13074 + + + + Namibia + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 34794 + + + + Namibia + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 24880 + + + + Namibia + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 9914 + + + + Namibia + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 34030 + + + + Namibia + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 22245 + + + + Namibia + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11785 + + + + Namibia + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 25083 + + + + Namibia + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15697 + + + + Namibia + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 9386 + + + + Namibia + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 21944 + + + + Namibia + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11958 + + + + Namibia + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 9986 + + + + Namibia + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15922 + + + + Namibia + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 8286 + + + + Namibia + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 7636 + + + + Namibia + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 13743 + + + + Namibia + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 5958 + + + + Namibia + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 7785 + + + + Namibia + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 5338 + + + + Namibia + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 2243 + + + + Namibia + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3095 + + + + Namibia + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 2531 + + + + Namibia + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 961 + + + + Namibia + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1570 + + + + Namibia + 2001 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 2701 + + + + Namibia + 2001 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 856 + + + + Namibia + 2001 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1845 + + + + Namibia + 2001 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 30258 + + + + Namibia + 2001 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 18597 + + + + Namibia + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11661 + + + + Nepal + 2011 + Total + Both Sexes + 5 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2017 + 23926541 + + + + Nepal + 2011 + Total + Both Sexes + 5 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 15777786 + + + + Nepal + 2011 + Total + Both Sexes + 5 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2017 + 8127204 + + + + Nepal + 2011 + Total + Both Sexes + 5 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2017 + 21551 + + + + Nepal + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2981932 + + + + Nepal + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2344138 + + + + Nepal + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 637435 + + + + Nepal + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 360 + + + + Nepal + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 16770279 + + + + Nepal + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8989343 + + + + Nepal + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7662974 + + + + Nepal + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 117963 + + + + Nepal + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2389002 + + + + Nepal + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1774426 + + + + Nepal + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 614260 + + + + Nepal + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 315 + + + + Nepal + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2016768 + + + + Nepal + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1311467 + + + + Nepal + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 704892 + + + + Nepal + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 410 + + + + Nepal + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1725478 + + + + Nepal + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 953698 + + + + Nepal + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 759207 + + + + Nepal + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 12575 + + + + Nepal + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1489503 + + + + Nepal + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 731745 + + + + Nepal + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 740739 + + + + Nepal + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 17018 + + + + Nepal + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1310653 + + + + Nepal + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 548859 + + + + Nepal + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 746121 + + + + Nepal + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 15673 + + + + Nepal + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1088044 + + + + Nepal + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 402413 + + + + Nepal + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 672152 + + + + Nepal + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 13479 + + + + Nepal + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 923373 + + + + Nepal + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 306996 + + + + Nepal + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 604956 + + + + Nepal + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 11421 + + + + Nepal + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 766054 + + + + Nepal + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 215692 + + + + Nepal + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 540250 + + + + Nepal + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 10112 + + + + Nepal + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 602093 + + + + Nepal + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 152432 + + + + Nepal + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 441619 + + + + Nepal + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8042 + + + + Nepal + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 520908 + + + + Nepal + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 97868 + + + + Nepal + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 414244 + + + + Nepal + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8795 + + + + Nepal + 2001 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 956471 + + + + Nepal + 2001 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 149609 + + + + Nepal + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 787099 + + + + Nepal + 2001 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2002 + 19763 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 540326 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 475263 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 65063 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3754225 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2982200 + + + + Nicaragua + 2005 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 772025 + + + + Nicaragua + 2005 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 586162 + + + + Nicaragua + 2005 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 517547 + + + + Nicaragua + 2005 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 68615 + + + + Nicaragua + 2005 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 539616 + + + + Nicaragua + 2005 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 461984 + + + + Nicaragua + 2005 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 77632 + + + + Nicaragua + 2005 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 412085 + + + + Nicaragua + 2005 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 334819 + + + + Nicaragua + 2005 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 77266 + + + + Nicaragua + 2005 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 338425 + + + + Nicaragua + 2005 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 271539 + + + + Nicaragua + 2005 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 66886 + + + + Nicaragua + 2005 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 293828 + + + + Nicaragua + 2005 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 238855 + + + + Nicaragua + 2005 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 54973 + + + + Nicaragua + 2005 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 248728 + + + + Nicaragua + 2005 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 192343 + + + + Nicaragua + 2005 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 56385 + + + + Nicaragua + 2005 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 202894 + + + + Nicaragua + 2005 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 146196 + + + + Nicaragua + 2005 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 56698 + + + + Nicaragua + 2005 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 159136 + + + + Nicaragua + 2005 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 107719 + + + + Nicaragua + 2005 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 51417 + + + + Nicaragua + 2005 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 119848 + + + + Nicaragua + 2005 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 74405 + + + + Nicaragua + 2005 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 45443 + + + + Nicaragua + 2005 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 92948 + + + + Nicaragua + 2005 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 53109 + + + + Nicaragua + 2005 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 39839 + + + + Nicaragua + 2005 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 72900 + + + + Nicaragua + 2005 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 38974 + + + + Nicaragua + 2005 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 33926 + + + + Nicaragua + 2005 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55526 + + + + Nicaragua + 2005 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 28048 + + + + Nicaragua + 2005 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27478 + + + + Nicaragua + 2005 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 40668 + + + + Nicaragua + 2005 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19502 + + + + Nicaragua + 2005 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 21166 + + + + Nicaragua + 2005 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 25503 + + + + Nicaragua + 2005 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11330 + + + + Nicaragua + 2005 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 14173 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15052 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6487 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8565 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25632 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10567 + + + + Nicaragua + 2005 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 15065 + + + + Nicaragua + 2005 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6652 + + + + Nicaragua + 2005 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2799 + + + + Nicaragua + 2005 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3853 + + + + Nicaragua + 2005 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2754 + + + + Nicaragua + 2005 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 975 + + + + Nicaragua + 2005 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1779 + + + + Nicaragua + 2005 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1174 + + + + Nicaragua + 2005 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 306 + + + + Nicaragua + 2005 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 868 + + + + Niger + 2012 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2494395 + + + + Niger + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1159001 + + + + Niger + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 278469 + + + + Niger + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 880532 + + + + Niger + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6960215 + + + + Niger + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1112504 + + + + Niger + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5847711 + + + + Niger + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1126189 + + + + Niger + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 240704 + + + + Niger + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 885485 + + + + Niger + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 871996 + + + + Niger + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 154729 + + + + Niger + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 717267 + + + + Niger + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 764125 + + + + Niger + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 126667 + + + + Niger + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 637458 + + + + Niger + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 622517 + + + + Niger + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 95738 + + + + Niger + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 526779 + + + + Niger + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 628562 + + + + Niger + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 80314 + + + + Niger + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 548248 + + + + Niger + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 544468 + + + + Niger + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 57678 + + + + Niger + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 486790 + + + + Niger + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 227646 + + + + Niger + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20083 + + + + Niger + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 207563 + + + + Niger + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 321030 + + + + Niger + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20736 + + + + Niger + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 300294 + + + + Niger + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 198572 + + + + Niger + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11831 + + + + Niger + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 186741 + + + + Niger + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 181363 + + + + Niger + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10051 + + + + Niger + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 171312 + + + + Niger + 2001 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 314746 + + + + Niger + 2001 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 15504 + + + + Niger + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 299242 + + + + Nigeria + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 16135950 + + + + Nigeria + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 11475145 + + + + Nigeria + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4660805 + + + + Nigeria + 2006 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 97831443 + + + + Nigeria + 2006 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 68824037 + + + + Nigeria + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 29007406 + + + + Nigeria + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 14899419 + + + + Nigeria + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 11886674 + + + + Nigeria + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3012745 + + + + Nigeria + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 13435079 + + + + Nigeria + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 10410997 + + + + Nigeria + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3024082 + + + + Nigeria + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 12211426 + + + + Nigeria + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 9105457 + + + + Nigeria + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3105969 + + + + Nigeria + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 9467538 + + + + Nigeria + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 6660211 + + + + Nigeria + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2807327 + + + + Nigeria + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 7331755 + + + + Nigeria + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 5220013 + + + + Nigeria + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2111742 + + + + Nigeria + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 6456470 + + + + Nigeria + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4199406 + + + + Nigeria + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2257064 + + + + Nigeria + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4591293 + + + + Nigeria + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3062875 + + + + Nigeria + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1528418 + + + + Nigeria + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 4249219 + + + + Nigeria + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2435519 + + + + Nigeria + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1813700 + + + + Nigeria + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2066247 + + + + Nigeria + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1255721 + + + + Nigeria + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 810526 + + + + Nigeria + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2450286 + + + + Nigeria + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1184445 + + + + Nigeria + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1265841 + + + + Nigeria + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1151048 + + + + Nigeria + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 562455 + + + + Nigeria + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 588593 + + + + Nigeria + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 1330597 + + + + Nigeria + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 550721 + + + + Nigeria + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 779876 + + + + Nigeria + 2006 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 579838 + + + + Nigeria + 2006 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 249451 + + + + Nigeria + 2006 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 330387 + + + + Nigeria + 2006 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 760053 + + + + Nigeria + 2006 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 288472 + + + + Nigeria + 2006 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 471581 + + + + Nigeria + 2006 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 715225 + + + + Nigeria + 2006 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 276475 + + + + Nigeria + 2006 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 438750 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 160339 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 158738 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1601 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1756606 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1693044 + + + + North Macedonia + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 63562 + + + + North Macedonia + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 165422 + + + + North Macedonia + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 163345 + + + + North Macedonia + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2077 + + + + North Macedonia + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 161945 + + + + North Macedonia + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 159906 + + + + North Macedonia + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2039 + + + + North Macedonia + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 153461 + + + + North Macedonia + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 151705 + + + + North Macedonia + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1756 + + + + North Macedonia + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 148281 + + + + North Macedonia + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 146617 + + + + North Macedonia + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1664 + + + + North Macedonia + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 149837 + + + + North Macedonia + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 147805 + + + + North Macedonia + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2032 + + + + North Macedonia + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 146902 + + + + North Macedonia + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 144567 + + + + North Macedonia + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2335 + + + + North Macedonia + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 142688 + + + + North Macedonia + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 140167 + + + + North Macedonia + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2521 + + + + North Macedonia + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 127760 + + + + North Macedonia + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 125385 + + + + North Macedonia + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2375 + + + + North Macedonia + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 95234 + + + + North Macedonia + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 92326 + + + + North Macedonia + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2908 + + + + North Macedonia + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 89822 + + + + North Macedonia + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 85133 + + + + North Macedonia + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4689 + + + + North Macedonia + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 84443 + + + + North Macedonia + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 74127 + + + + North Macedonia + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 10316 + + + + North Macedonia + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 61969 + + + + North Macedonia + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 50718 + + + + North Macedonia + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11251 + + + + North Macedonia + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 40384 + + + + North Macedonia + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 32386 + + + + North Macedonia + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7998 + + + + North Macedonia + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 18975 + + + + North Macedonia + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 14326 + + + + North Macedonia + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4649 + + + + North Macedonia + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7941 + + + + North Macedonia + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4805 + + + + North Macedonia + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3136 + + + + North Macedonia + 2002 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1203 + + + + North Macedonia + 2002 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 988 + + + + North Macedonia + 2002 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 215 + + + + Oman + 2020 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 330601 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 322518 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 967 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7116 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3747501 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3607658 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 106226 + 27 + + + Oman + 2020 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 33617 + 27 + + + Oman + 2020 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 258336 + 27 + + + Oman + 2020 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 252455 + 27 + + + Oman + 2020 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 738 + 27 + + + Oman + 2020 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5143 + 27 + + + Oman + 2020 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 311484 + 27 + + + Oman + 2020 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 304937 + 27 + + + Oman + 2020 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1036 + 27 + + + Oman + 2020 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5511 + 27 + + + Oman + 2020 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 539304 + 27 + + + Oman + 2020 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 532384 + 27 + + + Oman + 2020 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2078 + 27 + + + Oman + 2020 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4842 + 27 + + + Oman + 2020 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 617577 + 27 + + + Oman + 2020 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 611673 + 27 + + + Oman + 2020 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2848 + 27 + + + Oman + 2020 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3056 + 27 + + + Oman + 2020 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 520264 + 27 + + + Oman + 2020 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 515018 + 27 + + + Oman + 2020 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3258 + 27 + + + Oman + 2020 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1988 + 27 + + + Oman + 2020 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 372541 + 27 + + + Oman + 2020 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 367669 + 27 + + + Oman + 2020 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3468 + 27 + + + Oman + 2020 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1404 + 27 + + + Oman + 2020 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 247086 + 27 + + + Oman + 2020 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 241658 + 27 + + + Oman + 2020 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4368 + 27 + + + Oman + 2020 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1060 + 27 + + + Oman + 2020 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 167938 + 27 + + + Oman + 2020 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 159856 + 27 + + + Oman + 2020 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7185 + 27 + + + Oman + 2020 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 897 + 27 + + + Oman + 2020 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 119269 + 27 + + + Oman + 2020 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 107569 + 27 + + + Oman + 2020 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10984 + 27 + + + Oman + 2020 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 716 + 27 + + + Oman + 2020 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 92285 + 27 + + + Oman + 2020 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 76304 + 27 + + + Oman + 2020 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 15463 + 27 + + + Oman + 2020 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 518 + 27 + + + Oman + 2020 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 58091 + 27 + + + Oman + 2020 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 43338 + 27 + + + Oman + 2020 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 14375 + 27 + + + Oman + 2020 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 378 + 27 + + + Oman + 2020 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 43324 + 27 + + + Oman + 2020 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 29641 + 27 + + + Oman + 2020 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 13353 + 27 + + + Oman + 2020 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 330 + 27 + + + Oman + 2020 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 31137 + 27 + + + Oman + 2020 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 19841 + 27 + + + Oman + 2020 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 11030 + 27 + + + Oman + 2020 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 266 + 27 + + + Oman + 2020 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 21043 + 27 + + + Oman + 2020 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 12828 + 27 + + + Oman + 2020 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8055 + 27 + + + Oman + 2020 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 160 + 27 + + + Oman + 2020 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10174 + 27 + + + Oman + 2020 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5989 + 27 + + + Oman + 2020 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4107 + 27 + + + Oman + 2020 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 78 + 27 + + + Oman + 2020 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4413 + 27 + + + Oman + 2020 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2528 + 27 + + + Oman + 2020 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1828 + 27 + + + Oman + 2020 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 57 + 27 + + + Oman + 2020 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1642 + 27 + + + Oman + 2020 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 916 + 27 + + + Oman + 2020 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 703 + 27 + + + Oman + 2020 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 23 + 27 + + + Oman + 2020 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 992 + 27 + + + Oman + 2020 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 536 + 27 + + + Oman + 2020 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 382 + 27 + + + Oman + 2020 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2022 + 74 + 27 + + + Oman + 2003 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 288220 + + + + Oman + 2003 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 284357 + + + + Oman + 2003 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3591 + + + + Oman + 2003 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 272 + + + + Oman + 2003 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1837136 + + + + Oman + 2003 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1539498 + + + + Oman + 2003 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 291347 + + + + Oman + 2003 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6291 + + + + Oman + 2003 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 266756 + + + + Oman + 2003 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 261640 + + + + Oman + 2003 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4995 + + + + Oman + 2003 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 121 + + + + Oman + 2003 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 252766 + + + + Oman + 2003 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 243218 + + + + Oman + 2003 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9114 + + + + Oman + 2003 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 434 + + + + Oman + 2003 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 235481 + + + + Oman + 2003 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 219306 + + + + Oman + 2003 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15500 + + + + Oman + 2003 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 675 + + + + Oman + 2003 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 193871 + + + + Oman + 2003 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 169877 + + + + Oman + 2003 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23167 + + + + Oman + 2003 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 827 + + + + Oman + 2003 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 160459 + + + + Oman + 2003 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 128778 + + + + Oman + 2003 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31003 + + + + Oman + 2003 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 678 + + + + Oman + 2003 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 132609 + + + + Oman + 2003 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 96289 + + + + Oman + 2003 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35708 + + + + Oman + 2003 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 612 + + + + Oman + 2003 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 97703 + + + + Oman + 2003 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 62489 + + + + Oman + 2003 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34793 + + + + Oman + 2003 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 421 + + + + Oman + 2003 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 69636 + + + + Oman + 2003 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36716 + + + + Oman + 2003 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 32544 + + + + Oman + 2003 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 376 + + + + Oman + 2003 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 41577 + + + + Oman + 2003 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17195 + + + + Oman + 2003 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 24096 + + + + Oman + 2003 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 286 + + + + Oman + 2003 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36600 + + + + Oman + 2003 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9526 + + + + Oman + 2003 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 26689 + + + + Oman + 2003 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 385 + + + + Oman + 2003 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20069 + + + + Oman + 2003 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4292 + + + + Oman + 2003 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15540 + + + + Oman + 2003 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 237 + + + + Oman + 2003 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17933 + + + + Oman + 2003 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2769 + + + + Oman + 2003 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14871 + + + + Oman + 2003 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 293 + + + + Oman + 2003 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7844 + + + + Oman + 2003 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1237 + + + + Oman + 2003 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6461 + + + + Oman + 2003 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 146 + + + + Oman + 2003 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7784 + + + + Oman + 2003 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 784 + + + + Oman + 2003 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6829 + + + + Oman + 2003 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 171 + + + + Oman + 2003 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6901 + + + + Oman + 2003 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 621 + + + + Oman + 2003 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6094 + + + + Oman + 2003 + Total + Both Sexes + 85 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 186 + + + + Oman + 2003 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 927 + + + + Oman + 2003 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 404 + + + + Oman + 2003 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 352 + + + + Oman + 2003 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 171 + + + + Pakistan + 2017 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 24527188 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 17887381 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6639807 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 148495318 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 87485375 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 61009943 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 21366618 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 15042255 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6324363 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 18495895 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 12254995 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6240900 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 16401132 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9975165 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6425967 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 14151748 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 8288686 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5863062 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 12048811 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6621702 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5427109 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 9627067 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4939101 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4687966 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 7931616 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3596466 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4335150 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 6945580 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3008808 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3936772 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4974986 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2057096 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2917890 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 4311861 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1587413 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2724448 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2952013 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 950386 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2001627 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2134220 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 622232 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1511988 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 2626583 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 653689 + 28 + + + Pakistan + 2017 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1972894 + 28 + + + Pakistan + 1998 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 16487551 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 9123705 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 7363846 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 88886342 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 40037489 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 48848853 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 13193775 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 7681844 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5511931 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 11491380 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5976581 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5514799 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 9565376 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 4407925 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5157451 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 8103504 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 3488218 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 4615286 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 6144394 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2569289 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 3575105 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5640767 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2065821 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 3574946 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 4494396 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1466780 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 3027616 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 4080253 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1177846 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2902407 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2698411 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 744752 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1953659 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2618383 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 562755 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2055628 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1509437 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 304984 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1204453 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1353974 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 228000 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1125974 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1504741 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 238989 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1265752 + 29 + + + Pakistan + 1998 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Pakistan + 1998 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + 29 + + + Panama + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 339054 + + + + Panama + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 330698 + + + + Panama + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7988 + + + + Panama + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 368 + + + + Panama + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2727168 + + + + Panama + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2573311 + + + + Panama + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 148747 + + + + Panama + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5110 + + + + Panama + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 295369 + + + + Panama + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 288880 + + + + Panama + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6108 + + + + Panama + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 381 + + + + Panama + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 279147 + + + + Panama + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 271200 + + + + Panama + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7438 + + + + Panama + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 509 + + + + Panama + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 266667 + + + + Panama + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 257224 + + + + Panama + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8912 + + + + Panama + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 531 + + + + Panama + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 249538 + + + + Panama + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 239842 + + + + Panama + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9212 + + + + Panama + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 484 + + + + Panama + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 241322 + + + + Panama + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 230934 + + + + Panama + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9910 + + + + Panama + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 478 + + + + Panama + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 220817 + + + + Panama + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 211136 + + + + Panama + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9325 + + + + Panama + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 356 + + + + Panama + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 192618 + + + + Panama + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 183605 + + + + Panama + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 8648 + + + + Panama + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 365 + + + + Panama + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 157005 + + + + Panama + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 146571 + + + + Panama + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 10120 + + + + Panama + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 314 + + + + Panama + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 128821 + + + + Panama + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 117951 + + + + Panama + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 10633 + + + + Panama + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 237 + + + + Panama + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 108311 + + + + Panama + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 95000 + + + + Panama + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 13075 + + + + Panama + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 236 + + + + Panama + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 81588 + + + + Panama + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 69834 + + + + Panama + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 11565 + + + + Panama + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 189 + + + + Panama + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 64016 + + + + Panama + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 51674 + + + + Panama + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 12192 + + + + Panama + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 150 + + + + Panama + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 44390 + + + + Panama + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 34702 + + + + Panama + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9562 + + + + Panama + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 126 + + + + Panama + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 30015 + + + + Panama + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 22950 + + + + Panama + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6947 + + + + Panama + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 118 + + + + Panama + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 17428 + + + + Panama + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 13152 + + + + Panama + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4183 + + + + Panama + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 93 + + + + Panama + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7906 + + + + Panama + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5816 + + + + Panama + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2044 + + + + Panama + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 46 + + + + Panama + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2707 + + + + Panama + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1855 + + + + Panama + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 730 + + + + Panama + 2010 + Total + Both Sexes + 95 - 99 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 122 + + + + Panama + 2010 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 449 + + + + Panama + 2010 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 287 + + + + Panama + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 155 + + + + Panama + 2010 + Total + Both Sexes + 100 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7 + + + + Panama + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 285914 + + + + Panama + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 273275 + + + + Panama + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 12599 + + + + Panama + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 40 + + + + Panama + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 2206868 + + + + Panama + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 2037902 + + + + Panama + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 168140 + + + + Panama + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 826 + + + + Panama + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 268580 + + + + Panama + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 258475 + + + + Panama + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 10062 + + + + Panama + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 43 + + + + Panama + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 248743 + + + + Panama + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 238474 + + + + Panama + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 10214 + + + + Panama + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 55 + + + + Panama + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 240005 + + + + Panama + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 229680 + + + + Panama + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 10261 + + + + Panama + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 64 + + + + Panama + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 222593 + + + + Panama + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 213004 + + + + Panama + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9513 + + + + Panama + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 76 + + + + Panama + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 198130 + + + + Panama + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 188815 + + + + Panama + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9259 + + + + Panama + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 56 + + + + Panama + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 161598 + + + + Panama + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 150584 + + + + Panama + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 10957 + + + + Panama + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 57 + + + + Panama + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 133382 + + + + Panama + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 121616 + + + + Panama + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 11724 + + + + Panama + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 42 + + + + Panama + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 115096 + + + + Panama + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 100400 + + + + Panama + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 14650 + + + + Panama + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 46 + + + + Panama + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 89358 + + + + Panama + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 76155 + + + + Panama + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 13161 + + + + Panama + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 42 + + + + Panama + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 72963 + + + + Panama + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 58756 + + + + Panama + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 14173 + + + + Panama + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 34 + + + + Panama + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 55655 + + + + Panama + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 43326 + + + + Panama + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 12281 + + + + Panama + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 48 + + + + Panama + 2000 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 114851 + + + + Panama + 2000 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 85342 + + + + Panama + 2000 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 29286 + + + + Panama + 2000 + Total + Both Sexes + 70 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 223 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 618410 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 285522 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 282565 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 50323 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3691933 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2015314 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1569350 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 107269 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 547507 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 352585 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 181974 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12948 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 465450 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 309124 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 148717 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7609 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 442055 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 282485 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 152908 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6662 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 30 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 705300 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 30 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 411465 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 283292 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 30 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10543 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 40 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 445248 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 40 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 215097 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 222652 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 40 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7499 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 50 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 256620 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 50 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 97134 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 50 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 154111 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 50 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5375 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 60 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 211343 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 60 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 61902 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 60 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 143131 + + + + Papua New Guinea + 2000 + Total + Both Sexes + 60 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6310 + + + + Paraguay + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 644714 + + + + Paraguay + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 610778 + + + + Paraguay + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 27376 + + + + Paraguay + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 6560 + + + + Paraguay + 2002 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3892603 + + + + Paraguay + 2002 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3590658 + + + + Paraguay + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 258241 + + + + Paraguay + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 43704 + + + + Paraguay + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 576807 + + + + Paraguay + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 555465 + + + + Paraguay + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 14965 + + + + Paraguay + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 6377 + + + + Paraguay + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 472545 + + + + Paraguay + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 451508 + + + + Paraguay + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15709 + + + + Paraguay + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 5328 + + + + Paraguay + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 359766 + + + + Paraguay + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 340073 + + + + Paraguay + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15192 + + + + Paraguay + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 4501 + + + + Paraguay + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 333192 + + + + Paraguay + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 313425 + + + + Paraguay + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15895 + + + + Paraguay + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3872 + + + + Paraguay + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 307521 + + + + Paraguay + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 286081 + + + + Paraguay + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 17785 + + + + Paraguay + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3655 + + + + Paraguay + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 284082 + + + + Paraguay + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 261379 + + + + Paraguay + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 19565 + + + + Paraguay + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3138 + + + + Paraguay + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 227719 + + + + Paraguay + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 205979 + + + + Paraguay + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 19216 + + + + Paraguay + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 2524 + + + + Paraguay + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 182317 + + + + Paraguay + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 160915 + + + + Paraguay + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 19563 + + + + Paraguay + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1839 + + + + Paraguay + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 135707 + + + + Paraguay + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 117353 + + + + Paraguay + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 16900 + + + + Paraguay + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1454 + + + + Paraguay + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 114843 + + + + Paraguay + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 95789 + + + + Paraguay + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 17844 + + + + Paraguay + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 1210 + + + + Paraguay + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 80528 + + + + Paraguay + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 64152 + + + + Paraguay + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 15480 + + + + Paraguay + 2002 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 896 + + + + Paraguay + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 70708 + + + + Paraguay + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 55009 + + + + Paraguay + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 14879 + + + + Paraguay + 2002 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 820 + + + + Paraguay + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 47931 + + + + Paraguay + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 36169 + + + + Paraguay + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11187 + + + + Paraguay + 2002 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 575 + + + + Paraguay + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 29287 + + + + Paraguay + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 20593 + + + + Paraguay + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 8245 + + + + Paraguay + 2002 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 449 + + + + Paraguay + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 16412 + + + + Paraguay + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 11064 + + + + Paraguay + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 5051 + + + + Paraguay + 2002 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 297 + + + + Paraguay + 2002 + Total + Both Sexes + 90 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2004 + 8524 + + + + Paraguay + 2002 + Total + Both Sexes + 90 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 4926 + + + + Paraguay + 2002 + Total + Both Sexes + 90 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2004 + 3389 + + + + Paraguay + 2002 + Total + Both Sexes + 90 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2004 + 209 + + + + Peru + 2017 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2613427 + + + + Peru + 2017 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2585233 + + + + Peru + 2017 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 28194 + + + + Peru + 2017 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 24241260 + + + + Peru + 2017 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 22950991 + + + + Peru + 2017 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1290269 + + + + Peru + 2017 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2422478 + + + + Peru + 2017 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2403638 + + + + Peru + 2017 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 18840 + + + + Peru + 2017 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2508736 + + + + Peru + 2017 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2482751 + + + + Peru + 2017 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 25985 + + + + Peru + 2017 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2386320 + + + + Peru + 2017 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2350763 + + + + Peru + 2017 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 35557 + + + + Peru + 2017 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2257102 + + + + Peru + 2017 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2207585 + + + + Peru + 2017 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 49517 + + + + Peru + 2017 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2122675 + + + + Peru + 2017 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2056602 + + + + Peru + 2017 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 66073 + + + + Peru + 2017 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1952661 + + + + Peru + 2017 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1873601 + + + + Peru + 2017 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 79060 + + + + Peru + 2017 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1707717 + + + + Peru + 2017 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1616884 + + + + Peru + 2017 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 90833 + + + + Peru + 2017 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1503225 + + + + Peru + 2017 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1395726 + + + + Peru + 2017 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 107499 + + + + Peru + 2017 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1269343 + + + + Peru + 2017 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1157800 + + + + Peru + 2017 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 111543 + + + + Peru + 2017 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1038505 + + + + Peru + 2017 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 919134 + + + + Peru + 2017 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 119371 + + + + Peru + 2017 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 807902 + + + + Peru + 2017 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 678666 + + + + Peru + 2017 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 129236 + + + + Peru + 2017 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 624512 + + + + Peru + 2017 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 489524 + + + + Peru + 2017 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 134988 + + + + Peru + 2017 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 453554 + + + + Peru + 2017 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 332823 + + + + Peru + 2017 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 120731 + + + + Peru + 2017 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 311125 + + + + Peru + 2017 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 220280 + + + + Peru + 2017 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 90845 + + + + Peru + 2017 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 173467 + + + + Peru + 2017 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 120249 + + + + Peru + 2017 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 53218 + + + + Peru + 2017 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 66537 + + + + Peru + 2017 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 46160 + + + + Peru + 2017 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 20377 + + + + Peru + 2017 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 18829 + + + + Peru + 2017 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 11911 + + + + Peru + 2017 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 6918 + + + + Peru + 2017 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 3145 + + + + Peru + 2017 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1661 + + + + Peru + 2017 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1484 + + + + Peru + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2948985 + + + + Peru + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2913803 + + + + Peru + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 35182 + + + + Peru + 2007 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 22003609 + + + + Peru + 2007 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 20608869 + + + + Peru + 2007 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1394740 + + + + Peru + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2730785 + + + + Peru + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2696249 + + + + Peru + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 34536 + + + + Peru + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2531554 + + + + Peru + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2483735 + + + + Peru + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 47819 + + + + Peru + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2291865 + + + + Peru + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2231992 + + + + Peru + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 59873 + + + + Peru + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2074691 + + + + Peru + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2004447 + + + + Peru + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 70244 + + + + Peru + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1871852 + + + + Peru + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1783184 + + + + Peru + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 88668 + + + + Peru + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1642059 + + + + Peru + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1538981 + + + + Peru + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 103078 + + + + Peru + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1371385 + + + + Peru + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1264208 + + + + Peru + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 107177 + + + + Peru + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1152647 + + + + Peru + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1036008 + + + + Peru + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 116639 + + + + Peru + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 892143 + + + + Peru + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 770137 + + + + Peru + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 122006 + + + + Peru + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 730956 + + + + Peru + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 592523 + + + + Peru + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 138433 + + + + Peru + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 579302 + + + + Peru + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 445873 + + + + Peru + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 133429 + + + + Peru + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 452998 + + + + Peru + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 338558 + + + + Peru + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 114440 + + + + Peru + 2007 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 343999 + + + + Peru + 2007 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 250125 + + + + Peru + 2007 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 93874 + + + + Peru + 2007 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 203636 + + + + Peru + 2007 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 142885 + + + + Peru + 2007 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 60751 + + + + Peru + 2007 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 117498 + + + + Peru + 2007 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 77500 + + + + Peru + 2007 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 39998 + + + + Peru + 2007 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 41331 + + + + Peru + 2007 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 26636 + + + + Peru + 2007 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 14695 + + + + Peru + 2007 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 25923 + + + + Peru + 2007 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 12025 + + + + Peru + 2007 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 13898 + + + + Philippines + 2020 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 11080715 + 30 + + + Philippines + 2020 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10984913 + 30 + + + Philippines + 2020 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 95802 + 30 + + + Philippines + 2020 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 86333513 + 30 + + + Philippines + 2020 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 85089786 + 30 + + + Philippines + 2020 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1243727 + 30 + + + Philippines + 2020 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10459186 + 30 + + + Philippines + 2020 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 10382955 + 30 + + + Philippines + 2020 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 76231 + 30 + + + Philippines + 2020 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9969846 + 30 + + + Philippines + 2020 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9885944 + 30 + + + Philippines + 2020 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 83902 + 30 + + + Philippines + 2020 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9172896 + 30 + + + Philippines + 2020 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9081449 + 30 + + + Philippines + 2020 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 91447 + 30 + + + Philippines + 2020 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8120568 + 30 + + + Philippines + 2020 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 8029749 + 30 + + + Philippines + 2020 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 90819 + 30 + + + Philippines + 2020 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7179320 + 30 + + + Philippines + 2020 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7086648 + 30 + + + Philippines + 2020 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 92672 + 30 + + + Philippines + 2020 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6491312 + 30 + + + Philippines + 2020 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6390896 + 30 + + + Philippines + 2020 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 100416 + 30 + + + Philippines + 2020 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5571168 + 30 + + + Philippines + 2020 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 5468867 + 30 + + + Philippines + 2020 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 102301 + 30 + + + Philippines + 2020 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4941712 + 30 + + + Philippines + 2020 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4846451 + 30 + + + Philippines + 2020 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 95261 + 30 + + + Philippines + 2020 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4124118 + 30 + + + Philippines + 2020 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 4038986 + 30 + + + Philippines + 2020 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 85132 + 30 + + + Philippines + 2020 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3367223 + 30 + + + Philippines + 2020 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3286970 + 30 + + + Philippines + 2020 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 80253 + 30 + + + Philippines + 2020 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2393521 + 30 + + + Philippines + 2020 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 2324271 + 30 + + + Philippines + 2020 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 69250 + 30 + + + Philippines + 2020 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1575398 + 30 + + + Philippines + 2020 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1517245 + 30 + + + Philippines + 2020 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 58153 + 30 + + + Philippines + 2020 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 930610 + 30 + + + Philippines + 2020 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 882911 + 30 + + + Philippines + 2020 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 47699 + 30 + + + Philippines + 2020 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 568460 + 30 + + + Philippines + 2020 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 533397 + 30 + + + Philippines + 2020 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 35063 + 30 + + + Philippines + 2020 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 266823 + 30 + + + Philippines + 2020 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 242199 + 30 + + + Philippines + 2020 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 24624 + 30 + + + Philippines + 2020 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 88583 + 30 + + + Philippines + 2020 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 79195 + 30 + + + Philippines + 2020 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 9388 + 30 + + + Philippines + 2020 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 24552 + 30 + + + Philippines + 2020 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 20725 + 30 + + + Philippines + 2020 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 3827 + 30 + + + Philippines + 2020 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2022 + 7502 + 30 + + + Philippines + 2020 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 6015 + 30 + + + Philippines + 2020 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2022 + 1487 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 10480412 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 10381879 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 98533 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 78918842 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 77576472 + 30 + + + Philippines + 2015 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1342370 + 30 + + + Philippines + 2015 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 10120312 + 30 + + + Philippines + 2015 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 10032623 + 30 + + + Philippines + 2015 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 87689 + 30 + + + Philippines + 2015 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 9396155 + 30 + + + Philippines + 2015 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 9304800 + 30 + + + Philippines + 2015 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 91355 + 30 + + + Philippines + 2015 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8304461 + 30 + + + Philippines + 2015 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 8211475 + 30 + + + Philippines + 2015 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 92986 + 30 + + + Philippines + 2015 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7290536 + 30 + + + Philippines + 2015 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 7194122 + 30 + + + Philippines + 2015 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 96414 + 30 + + + Philippines + 2015 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 6704923 + 30 + + + Philippines + 2015 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 6597177 + 30 + + + Philippines + 2015 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 107746 + 30 + + + Philippines + 2015 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5813169 + 30 + + + Philippines + 2015 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5697529 + 30 + + + Philippines + 2015 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 115640 + 30 + + + Philippines + 2015 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5262005 + 30 + + + Philippines + 2015 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 5149647 + 30 + + + Philippines + 2015 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 112358 + 30 + + + Philippines + 2015 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4415193 + 30 + + + Philippines + 2015 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 4311043 + 30 + + + Philippines + 2015 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 104150 + 30 + + + Philippines + 2015 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3597370 + 30 + + + Philippines + 2015 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3512314 + 30 + + + Philippines + 2015 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 85056 + 30 + + + Philippines + 2015 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2755608 + 30 + + + Philippines + 2015 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2676657 + 30 + + + Philippines + 2015 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 78951 + 30 + + + Philippines + 2015 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1912908 + 30 + + + Philippines + 2015 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1843089 + 30 + + + Philippines + 2015 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 69819 + 30 + + + Philippines + 2015 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1218065 + 30 + + + Philippines + 2015 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1151668 + 30 + + + Philippines + 2015 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 66397 + 30 + + + Philippines + 2015 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 857534 + 30 + + + Philippines + 2015 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 804823 + 30 + + + Philippines + 2015 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 52711 + 30 + + + Philippines + 2015 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 474105 + 30 + + + Philippines + 2015 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 429598 + 30 + + + Philippines + 2015 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 44507 + 30 + + + Philippines + 2015 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 217572 + 30 + + + Philippines + 2015 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 194140 + 30 + + + Philippines + 2015 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 23432 + 30 + + + Philippines + 2015 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 74686 + 30 + + + Philippines + 2015 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 64835 + 30 + + + Philippines + 2015 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 9851 + 30 + + + Philippines + 2015 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 19872 + 30 + + + Philippines + 2015 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 16207 + 30 + + + Philippines + 2015 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3665 + 30 + + + Philippines + 2015 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2019 + 3956 + 30 + + + Philippines + 2015 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 2846 + 30 + + + Philippines + 2015 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2019 + 1110 + 30 + + + Philippines + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8937161 + + + + Philippines + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 8096256 + + + + Philippines + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 840905 + + + + Philippines + 2000 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 56974817 + + + + Philippines + 2000 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 52579156 + + + + Philippines + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4395661 + + + + Philippines + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7991079 + + + + Philippines + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7574225 + + + + Philippines + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 416854 + + + + Philippines + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 7037865 + + + + Philippines + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 6716760 + + + + Philippines + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 321105 + + + + Philippines + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 6047638 + + + + Philippines + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5739427 + + + + Philippines + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 308211 + + + + Philippines + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5525319 + + + + Philippines + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 5223180 + + + + Philippines + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 302139 + + + + Philippines + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4886326 + + + + Philippines + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4567076 + + + + Philippines + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 319250 + + + + Philippines + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 4151559 + + + + Philippines + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3868041 + + + + Philippines + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 283518 + + + + Philippines + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3322505 + + + + Philippines + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 3059364 + + + + Philippines + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 263141 + + + + Philippines + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2617019 + + + + Philippines + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 2370798 + + + + Philippines + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 246221 + + + + Philippines + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1900498 + + + + Philippines + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1671762 + + + + Philippines + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 228736 + + + + Philippines + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1630666 + + + + Philippines + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1396959 + + + + Philippines + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 233707 + + + + Philippines + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1137178 + + + + Philippines + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 939510 + + + + Philippines + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 197668 + + + + Philippines + 2000 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1790004 + + + + Philippines + 2000 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 1355798 + + + + Philippines + 2000 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 434206 + + + + Portugal + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 564595 + + + + Portugal + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 562334 + + + + Portugal + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2261 + + + + Portugal + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9554444 + + + + Portugal + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9055678 + + + + Portugal + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 498766 + + + + Portugal + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 565250 + + + + Portugal + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 562839 + + + + Portugal + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2411 + + + + Portugal + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 582065 + + + + Portugal + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 577995 + + + + Portugal + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4070 + + + + Portugal + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 656076 + + + + Portugal + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 650616 + + + + Portugal + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5460 + + + + Portugal + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 773567 + + + + Portugal + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 765753 + + + + Portugal + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7814 + + + + Portugal + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 824683 + + + + Portugal + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 814260 + + + + Portugal + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10423 + + + + Portugal + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 773098 + + + + Portugal + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 760848 + + + + Portugal + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 12250 + + + + Portugal + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 770294 + + + + Portugal + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 756773 + + + + Portugal + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 13521 + + + + Portugal + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 722360 + + + + Portugal + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 708176 + + + + Portugal + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 14184 + + + + Portugal + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 677651 + + + + Portugal + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 661404 + + + + Portugal + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 16247 + + + + Portugal + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 634741 + + + + Portugal + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 617023 + + + + Portugal + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17718 + + + + Portugal + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 551701 + + + + Portugal + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 520419 + + + + Portugal + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31282 + + + + Portugal + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 496438 + + + + Portugal + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 408106 + + + + Portugal + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 88332 + + + + Portugal + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 429706 + + + + Portugal + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 324958 + + + + Portugal + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 104748 + + + + Portugal + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 297888 + + + + Portugal + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 211976 + + + + Portugal + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 85912 + + + + Portugal + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 164356 + + + + Portugal + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 109140 + + + + Portugal + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55216 + + + + Portugal + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 53847 + + + + Portugal + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33543 + + + + Portugal + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 20304 + + + + Portugal + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 14602 + + + + Portugal + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8712 + + + + Portugal + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5890 + + + + Portugal + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1526 + + + + Portugal + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 803 + + + + Portugal + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 723 + + + + Portugal + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 579590 + + + + Portugal + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 573145 + + + + Portugal + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6445 + + + + Portugal + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9279105 + + + + Portugal + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8440965 + + + + Portugal + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 838140 + + + + Portugal + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 688686 + + + + Portugal + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 682365 + + + + Portugal + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6321 + + + + Portugal + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 790901 + + + + Portugal + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 780937 + + + + Portugal + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9964 + + + + Portugal + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 814661 + + + + Portugal + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 802057 + + + + Portugal + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12604 + + + + Portugal + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 761457 + + + + Portugal + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 746773 + + + + Portugal + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14684 + + + + Portugal + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 770781 + + + + Portugal + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 754921 + + + + Portugal + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15860 + + + + Portugal + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 728518 + + + + Portugal + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 711812 + + + + Portugal + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 16706 + + + + Portugal + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 686134 + + + + Portugal + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 667793 + + + + Portugal + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18341 + + + + Portugal + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 642516 + + + + Portugal + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 621703 + + + + Portugal + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20813 + + + + Portugal + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 571452 + + + + Portugal + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 534894 + + + + Portugal + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36558 + + + + Portugal + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 550916 + + + + Portugal + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 446010 + + + + Portugal + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 104906 + + + + Portugal + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 538165 + + + + Portugal + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 396885 + + + + Portugal + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 141280 + + + + Portugal + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 453962 + + + + Portugal + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 311059 + + + + Portugal + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 142903 + + + + Portugal + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 348066 + + + + Portugal + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 219839 + + + + Portugal + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 128227 + + + + Portugal + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 201706 + + + + Portugal + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 115290 + + + + Portugal + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 86416 + + + + Portugal + 2001 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 151594 + + + + Portugal + 2001 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 75482 + + + + Portugal + 2001 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 76112 + + + + Puerto Rico + 2010 + Total + Both Sexes + 18 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 284259 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 18 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 280397 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 18 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 3862 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 18 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2992458 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 18 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2752021 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 18 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 240437 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 260850 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 258357 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 2493 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 244159 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 233057 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 11102 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 248173 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 240237 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 7936 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 241270 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 227767 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 13503 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 242258 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 225503 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 16755 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 247986 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 230678 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 17308 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 239821 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 207306 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 32515 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 223607 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 195001 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 28606 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 218077 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 195563 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 22514 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 175411 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 156170 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 19241 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 136251 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 113866 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 22385 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 100740 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 85318 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 15422 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 67000 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 55585 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 11415 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2015 + 62596 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 47216 + 31 + + + Puerto Rico + 2010 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2015 + 15380 + 31 + + + Qatar + 2020 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 128748 + + + + Qatar + 2020 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 128734 + + + + Qatar + 2020 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 14 + + + + Qatar + 2020 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 2525552 + + + + Qatar + 2020 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 2506141 + + + + Qatar + 2020 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 19411 + + + + Qatar + 2020 + Total + Both Sexes + 15 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 300961 + + + + Qatar + 2020 + Total + Both Sexes + 15 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 299779 + + + + Qatar + 2020 + Total + Both Sexes + 15 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 1182 + + + + Qatar + 2020 + Total + Both Sexes + 25 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 889383 + + + + Qatar + 2020 + Total + Both Sexes + 25 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 883008 + + + + Qatar + 2020 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 6375 + + + + Qatar + 2020 + Total + Both Sexes + 35 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 733747 + + + + Qatar + 2020 + Total + Both Sexes + 35 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 727466 + + + + Qatar + 2020 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 6281 + + + + Qatar + 2020 + Total + Both Sexes + 45 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 325256 + + + + Qatar + 2020 + Total + Both Sexes + 45 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 322653 + + + + Qatar + 2020 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 2603 + + + + Qatar + 2020 + Total + Both Sexes + 55 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 112731 + + + + Qatar + 2020 + Total + Both Sexes + 55 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 112013 + + + + Qatar + 2020 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 718 + + + + Qatar + 2020 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2022 + 34726 + + + + Qatar + 2020 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 32488 + + + + Qatar + 2020 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2022 + 2238 + + + + Qatar + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 64991 + + + + Qatar + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 64925 + + + + Qatar + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 66 + + + + Qatar + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1531842 + + + + Qatar + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1477264 + + + + Qatar + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 54578 + + + + Qatar + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 60544 + + + + Qatar + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 59867 + + + + Qatar + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 677 + + + + Qatar + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 191953 + + + + Qatar + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 184601 + + + + Qatar + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7352 + + + + Qatar + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 279187 + + + + Qatar + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 269857 + + + + Qatar + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 9330 + + + + Qatar + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 270243 + + + + Qatar + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 262550 + + + + Qatar + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 7693 + + + + Qatar + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 234573 + + + + Qatar + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 227898 + + + + Qatar + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6675 + + + + Qatar + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 178328 + + + + Qatar + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 172507 + + + + Qatar + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 5821 + + + + Qatar + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 116940 + + + + Qatar + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 112887 + + + + Qatar + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4053 + + + + Qatar + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 68920 + + + + Qatar + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 65544 + + + + Qatar + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3376 + + + + Qatar + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 37377 + + + + Qatar + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 34699 + + + + Qatar + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2678 + + + + Qatar + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 14969 + + + + Qatar + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 12763 + + + + Qatar + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2206 + + + + Qatar + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 6454 + + + + Qatar + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 4810 + + + + Qatar + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1644 + + + + Qatar + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3637 + + + + Qatar + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2317 + + + + Qatar + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1320 + + + + Qatar + 2010 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2011 + 3726 + + + + Qatar + 2010 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 2039 + + + + Qatar + 2010 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2011 + 1687 + + + + Qatar + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 52836 + + + + Qatar + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 52112 + + + + Qatar + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 724 + + + + Qatar + 2004 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 629247 + + + + Qatar + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 564901 + + + + Qatar + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 64346 + + + + Qatar + 2004 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 42191 + + + + Qatar + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 41409 + + + + Qatar + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 782 + + + + Qatar + 2004 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 59567 + + + + Qatar + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 56198 + + + + Qatar + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3369 + + + + Qatar + 2004 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 84053 + + + + Qatar + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 78379 + + + + Qatar + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5674 + + + + Qatar + 2004 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 94809 + + + + Qatar + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 87292 + + + + Qatar + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7517 + + + + Qatar + 2004 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 85397 + + + + Qatar + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 76311 + + + + Qatar + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9086 + + + + Qatar + 2004 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 75877 + + + + Qatar + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 66928 + + + + Qatar + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8949 + + + + Qatar + 2004 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 59119 + + + + Qatar + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 51080 + + + + Qatar + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8039 + + + + Qatar + 2004 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 37353 + + + + Qatar + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 30542 + + + + Qatar + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6811 + + + + Qatar + 2004 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19875 + + + + Qatar + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14863 + + + + Qatar + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5012 + + + + Qatar + 2004 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9127 + + + + Qatar + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6080 + + + + Qatar + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3047 + + + + Qatar + 2004 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4309 + + + + Qatar + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2060 + + + + Qatar + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2249 + + + + Qatar + 2004 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2544 + + + + Qatar + 2004 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 947 + + + + Qatar + 2004 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1597 + + + + Qatar + 2004 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 2004 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2190 + + + + Qatar + 2004 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 700 + + + + Qatar + 2004 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1490 + + + + Qatar + 2004 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 0 + + + + Qatar + 1997 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40700 + + + + Qatar + 1997 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40019 + + + + Qatar + 1997 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 681 + + + + Qatar + 1997 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 420018 + + + + Qatar + 1997 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 354925 + + + + Qatar + 1997 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65093 + + + + Qatar + 1997 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31963 + + + + Qatar + 1997 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31148 + + + + Qatar + 1997 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 815 + + + + Qatar + 1997 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 38527 + + + + Qatar + 1997 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35670 + + + + Qatar + 1997 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2857 + + + + Qatar + 1997 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55408 + + + + Qatar + 1997 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 49365 + + + + Qatar + 1997 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6043 + + + + Qatar + 1997 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65804 + + + + Qatar + 1997 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 56421 + + + + Qatar + 1997 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9383 + + + + Qatar + 1997 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 66582 + + + + Qatar + 1997 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 55946 + + + + Qatar + 1997 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10636 + + + + Qatar + 1997 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 51959 + + + + Qatar + 1997 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 42392 + + + + Qatar + 1997 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9567 + + + + Qatar + 1997 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 26800 + + + + Qatar + 1997 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19283 + + + + Qatar + 1997 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7517 + + + + Qatar + 1997 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18356 + + + + Qatar + 1997 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 12758 + + + + Qatar + 1997 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5598 + + + + Qatar + 1997 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10258 + + + + Qatar + 1997 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6303 + + + + Qatar + 1997 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3955 + + + + Qatar + 1997 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5976 + + + + Qatar + 1997 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2798 + + + + Qatar + 1997 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3178 + + + + Qatar + 1997 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3205 + + + + Qatar + 1997 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1162 + + + + Qatar + 1997 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2043 + + + + Qatar + 1997 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4480 + + + + Qatar + 1997 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1660 + + + + Qatar + 1997 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2820 + + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 150027 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 140350 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 9677 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2472125 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2447584 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 24541 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 183692 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 183420 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 272 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 231153 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 230641 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 512 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 251465 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 250784 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 681 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 214870 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 214237 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 633 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 190795 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 190214 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 581 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 176906 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 176327 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 579 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 173564 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 172936 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 628 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 208674 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 207843 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 831 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 203825 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 203090 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 735 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 181690 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 180997 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 693 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 95407 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 94841 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 566 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 85270 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 84292 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 978 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 65096 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 63274 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1822 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 37980 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 35575 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 2405 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 16502 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 14641 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 1861 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 4277 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 3367 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 910 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 574 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 434 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 140 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2016 + 358 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 321 + 32,33 + + + Republic of Moldova + 2014 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2016 + 37 + 32,33 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 274889 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 273892 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 997 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3012069 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2981602 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 30025 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 442 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 341213 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 340761 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 452 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 297372 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 297012 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 360 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 250698 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 250445 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 253 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 227161 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 226957 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 204 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 217048 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 216859 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 189 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 261304 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 261115 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 189 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 262734 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 262584 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 150 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 238785 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 238666 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 119 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 144434 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 144371 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 63 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 133577 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 133517 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 60 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 126627 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 124035 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2592 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 224690 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 200345 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 24345 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11537 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11043 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 52 + 34 + + + Republic of Moldova + 2004 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 442 + 34 + + + Romania + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1090226 + 13 + + + Romania + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1081161 + 13 + + + Romania + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9065 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 18022221 + 13 + + + Romania + 2011 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 17776834 + 13 + + + Romania + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 245387 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1108453 + 13 + + + Romania + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1100469 + 13 + + + Romania + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 7984 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1366374 + 13 + + + Romania + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1349503 + 13 + + + Romania + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 16871 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1303077 + 13 + + + Romania + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1282999 + 13 + + + Romania + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 20078 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1522719 + 13 + + + Romania + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1502121 + 13 + + + Romania + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 20598 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1538897 + 13 + + + Romania + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1523525 + 13 + + + Romania + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 15372 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1743878 + 13 + + + Romania + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1731609 + 13 + + + Romania + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 12269 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1076258 + 13 + + + Romania + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1067434 + 13 + + + Romania + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8824 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1332266 + 13 + + + Romania + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1321813 + 13 + + + Romania + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10453 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1448043 + 13 + + + Romania + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1437846 + 13 + + + Romania + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 10197 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1244286 + 13 + + + Romania + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1234840 + 13 + + + Romania + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9446 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 890340 + 13 + + + Romania + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 880355 + 13 + + + Romania + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 9985 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 901370 + 13 + + + Romania + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 880510 + 13 + + + Romania + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 20860 + 13,35 + + + Romania + 2011 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1456034 + 13 + + + Romania + 2011 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1382649 + 13 + + + Romania + 2011 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 73385 + 13,35 + + + Romania + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1574326 + + + + Romania + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1546295 + + + + Romania + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 26658 + + + + Romania + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1373 + + + + Romania + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 19434788 + + + + Romania + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 18912293 + + + + Romania + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 508994 + + + + Romania + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13501 + + + + Romania + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1636337 + + + + Romania + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1597429 + + + + Romania + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 37632 + + + + Romania + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1276 + + + + Romania + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1739882 + + + + Romania + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1700764 + + + + Romania + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 37889 + + + + Romania + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1229 + + + + Romania + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1689597 + + + + Romania + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1662190 + + + + Romania + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 26389 + + + + Romania + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1018 + + + + Romania + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1927939 + + + + Romania + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1906899 + + + + Romania + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 20118 + + + + Romania + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 922 + + + + Romania + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1179500 + + + + Romania + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1165309 + + + + Romania + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 13618 + + + + Romania + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 573 + + + + Romania + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1437690 + + + + Romania + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1420313 + + + + Romania + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 16674 + + + + Romania + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 703 + + + + Romania + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1589733 + + + + Romania + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1572661 + + + + Romania + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 16370 + + + + Romania + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 702 + + + + Romania + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1414953 + + + + Romania + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1399204 + + + + Romania + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 15031 + + + + Romania + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 718 + + + + Romania + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1051616 + + + + Romania + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1035089 + + + + Romania + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 15981 + + + + Romania + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 546 + + + + Romania + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1143333 + + + + Romania + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1106234 + + + + Romania + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 36331 + + + + Romania + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 768 + + + + Romania + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1092192 + + + + Romania + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1021978 + + + + Romania + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 69182 + + + + Romania + 2002 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1032 + + + + Romania + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 895026 + + + + Romania + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 833548 + + + + Romania + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 60545 + + + + Romania + 2002 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 933 + + + + Romania + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 627667 + + + + Romania + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 565253 + + + + Romania + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 61562 + + + + Romania + 2002 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 852 + + + + Romania + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 265606 + + + + Romania + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 238185 + + + + Romania + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 26984 + + + + Romania + 2002 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 437 + + + + Romania + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 124265 + + + + Romania + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 106006 + + + + Romania + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 17980 + + + + Romania + 2002 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 279 + + + + Romania + 2002 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 39611 + + + + Romania + 2002 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 30752 + + + + Romania + 2002 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 8748 + + + + Romania + 2002 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 111 + + + + Romania + 2002 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5205 + + + + Romania + 2002 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3955 + + + + Romania + 2002 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1223 + + + + Romania + 2002 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 27 + + + + Romania + 2002 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 310 + + + + Romania + 2002 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 229 + + + + Romania + 2002 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 79 + + + + Romania + 2002 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6609822 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6437503 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17685 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 154634 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 127798058 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 123707026 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 389129 + + + + Russian Federation + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3701903 + + + + Russian Federation + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8389394 + + + + Russian Federation + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8165909 + + + + Russian Federation + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 23888 + + + + Russian Federation + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 199597 + + + + Russian Federation + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 12169457 + + + + Russian Federation + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11796438 + + + + Russian Federation + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34251 + + + + Russian Federation + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 338768 + + + + Russian Federation + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11982085 + + + + Russian Federation + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11566725 + + + + Russian Federation + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31964 + + + + Russian Federation + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 383396 + + + + Russian Federation + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10980070 + + + + Russian Federation + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10587011 + + + + Russian Federation + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 26722 + + + + Russian Federation + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 366337 + + + + Russian Federation + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10172472 + + + + Russian Federation + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9814483 + + + + Russian Federation + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 21770 + + + + Russian Federation + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 336219 + + + + Russian Federation + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9240698 + + + + Russian Federation + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8920660 + + + + Russian Federation + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 18859 + + + + Russian Federation + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 301179 + + + + Russian Federation + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10671538 + + + + Russian Federation + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10314663 + + + + Russian Federation + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 19625 + + + + Russian Federation + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 337250 + + + + Russian Federation + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11482557 + + + + Russian Federation + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11124881 + + + + Russian Federation + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 18081 + + + + Russian Federation + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 339595 + + + + Russian Federation + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10021759 + + + + Russian Federation + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9727175 + + + + Russian Federation + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 14437 + + + + Russian Federation + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 280147 + + + + Russian Federation + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7832364 + + + + Russian Federation + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7605266 + + + + Russian Federation + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11360 + + + + Russian Federation + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 215738 + + + + Russian Federation + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4001747 + + + + Russian Federation + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3891306 + + + + Russian Federation + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9987 + + + + Russian Federation + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 100454 + + + + Russian Federation + 2010 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6457044 + + + + Russian Federation + 2010 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6287892 + + + + Russian Federation + 2010 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 28589 + + + + Russian Federation + 2010 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 140563 + + + + Russian Federation + 2010 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3552065 + + + + Russian Federation + 2010 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3436621 + + + + Russian Federation + 2010 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 42654 + + + + Russian Federation + 2010 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 72790 + + + + Russian Federation + 2010 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2870937 + + + + Russian Federation + 2010 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2775709 + + + + Russian Federation + 2010 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32944 + + + + Russian Federation + 2010 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 62284 + + + + Russian Federation + 2010 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1032471 + + + + Russian Federation + 2010 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 986871 + + + + Russian Federation + 2010 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17088 + + + + Russian Federation + 2010 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 28512 + + + + Russian Federation + 2010 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 231855 + + + + Russian Federation + 2010 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 212820 + + + + Russian Federation + 2010 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11086 + + + + Russian Federation + 2010 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7949 + + + + Russian Federation + 2010 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58148 + + + + Russian Federation + 2010 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 48531 + + + + Russian Federation + 2010 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6768 + + + + Russian Federation + 2010 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2849 + + + + Russian Federation + 2010 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7266 + + + + Russian Federation + 2010 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5088 + + + + Russian Federation + 2010 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1354 + + + + Russian Federation + 2010 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 824 + + + + Russian Federation + 2010 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34309 + + + + Russian Federation + 2010 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1474 + + + + Russian Federation + 2010 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17 + + + + Russian Federation + 2010 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32818 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10406377 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10216689 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 31170 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 158518 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 131706612 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 129482036 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 701650 + + + + Russian Federation + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1522926 + + + + Russian Federation + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12800628 + + + + Russian Federation + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12637206 + + + + Russian Federation + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 36670 + + + + Russian Federation + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 126752 + + + + Russian Federation + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11466404 + + + + Russian Federation + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11315190 + + + + Russian Federation + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29477 + + + + Russian Federation + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 121737 + + + + Russian Federation + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10612976 + + + + Russian Federation + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10461298 + + + + Russian Federation + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 24283 + + + + Russian Federation + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 127395 + + + + Russian Federation + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9836374 + + + + Russian Federation + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9681432 + + + + Russian Federation + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20625 + + + + Russian Federation + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 134317 + + + + Russian Federation + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10216384 + + + + Russian Federation + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10066416 + + + + Russian Federation + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20282 + + + + Russian Federation + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 129686 + + + + Russian Federation + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12546470 + + + + Russian Federation + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12374647 + + + + Russian Federation + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 21787 + + + + Russian Federation + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 150036 + + + + Russian Federation + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11605892 + + + + Russian Federation + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11454070 + + + + Russian Federation + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18715 + + + + Russian Federation + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 133107 + + + + Russian Federation + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10071198 + + + + Russian Federation + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 9933714 + + + + Russian Federation + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 16005 + + + + Russian Federation + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 121479 + + + + Russian Federation + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5347399 + + + + Russian Federation + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5264088 + + + + Russian Federation + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11012 + + + + Russian Federation + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 72299 + + + + Russian Federation + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7983062 + + + + Russian Federation + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7871883 + + + + Russian Federation + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30642 + + + + Russian Federation + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 80537 + + + + Russian Federation + 2002 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18813448 + + + + Russian Federation + 2002 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 18205403 + + + + Russian Federation + 2002 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 440982 + + + + Russian Federation + 2002 + Total + Both Sexes + 65 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 167063 + + + + Rwanda + 2012 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1113075 + + + + Rwanda + 2012 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 941343 + + + + Rwanda + 2012 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 156232 + + + + Rwanda + 2012 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15500 + + + + Rwanda + 2012 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 6187890 + + + + Rwanda + 2012 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4227730 + + + + Rwanda + 2012 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1818622 + + + + Rwanda + 2012 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 141538 + + + + Rwanda + 2012 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1028385 + + + + Rwanda + 2012 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 821894 + + + + Rwanda + 2012 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 184582 + + + + Rwanda + 2012 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 21909 + + + + Rwanda + 2012 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 928094 + + + + Rwanda + 2012 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 679091 + + + + Rwanda + 2012 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 231083 + + + + Rwanda + 2012 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 17920 + + + + Rwanda + 2012 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 760884 + + + + Rwanda + 2012 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 550744 + + + + Rwanda + 2012 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 196852 + + + + Rwanda + 2012 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 13288 + + + + Rwanda + 2012 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 509666 + + + + Rwanda + 2012 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 362530 + + + + Rwanda + 2012 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 135823 + + + + Rwanda + 2012 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 11313 + + + + Rwanda + 2012 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 415560 + + + + Rwanda + 2012 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 275877 + + + + Rwanda + 2012 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 127671 + + + + Rwanda + 2012 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 12012 + + + + Rwanda + 2012 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 340856 + + + + Rwanda + 2012 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 187320 + + + + Rwanda + 2012 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 141747 + + + + Rwanda + 2012 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 11789 + + + + Rwanda + 2012 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 338309 + + + + Rwanda + 2012 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 160359 + + + + Rwanda + 2012 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 165575 + + + + Rwanda + 2012 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 12375 + + + + Rwanda + 2012 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 241323 + + + + Rwanda + 2012 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 103336 + + + + Rwanda + 2012 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 129040 + + + + Rwanda + 2012 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 8947 + + + + Rwanda + 2012 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 176349 + + + + Rwanda + 2012 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 63749 + + + + Rwanda + 2012 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 106184 + + + + Rwanda + 2012 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 6416 + + + + Rwanda + 2012 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 102543 + + + + Rwanda + 2012 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 31172 + + + + Rwanda + 2012 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 68222 + + + + Rwanda + 2012 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3149 + + + + Rwanda + 2012 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 92285 + + + + Rwanda + 2012 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 23702 + + + + Rwanda + 2012 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 65542 + + + + Rwanda + 2012 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3041 + + + + Rwanda + 2012 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 60228 + + + + Rwanda + 2012 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 13865 + + + + Rwanda + 2012 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 44645 + + + + Rwanda + 2012 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1718 + + + + Rwanda + 2012 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 45014 + + + + Rwanda + 2012 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7816 + + + + Rwanda + 2012 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 35979 + + + + Rwanda + 2012 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1219 + + + + Rwanda + 2012 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 35319 + + + + Rwanda + 2012 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4932 + + + + Rwanda + 2012 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 29445 + + + + Rwanda + 2012 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2016 + 942 + + + + Rwanda + 2002 + Total + Both Sexes + 6 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 6108133 + + + + Rwanda + 2002 + Total + Both Sexes + 6 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3287883 + + + + Rwanda + 2002 + Total + Both Sexes + 6 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2820250 + + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 431 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 424 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3527 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3333 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 186 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 12 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 20 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 317 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 20 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 279 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 20 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 38 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 20 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 30 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 466 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 30 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 418 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 48 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 30 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 40 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 664 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 40 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 633 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 31 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 40 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 50 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 614 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 50 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 586 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 50 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 28 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 50 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 60 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1034 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 60 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 992 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 60 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 34 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + 60 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 8 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 2008 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 0 + 36 + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 689 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 684 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 689 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 684 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 5 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 4101 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 3952 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 146 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 12 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1999 + 3 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 20 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 670 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 20 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 646 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 20 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 24 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 30 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 720 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 30 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 708 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 12 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 40 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 676 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 40 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 654 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 22 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 50 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 576 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 50 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 563 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 50 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 12 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 50 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1999 + 1 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 60 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 760 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 60 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 693 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + 60 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 67 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 1999 + 10 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 4 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1999 + 4 + + + + Saint Helena ex. dep. + 1998 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1999 + 2 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 16020 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8312 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 7693 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 15 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 120998 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 101970 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 18033 + + + + Saint Lucia + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 995 + + + + Saint Lucia + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 15872 + + + + Saint Lucia + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 14799 + + + + Saint Lucia + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1045 + + + + Saint Lucia + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 28 + + + + Saint Lucia + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 13076 + + + + Saint Lucia + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12753 + + + + Saint Lucia + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 297 + + + + Saint Lucia + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 26 + + + + Saint Lucia + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12445 + + + + Saint Lucia + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12073 + + + + Saint Lucia + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 304 + + + + Saint Lucia + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 68 + + + + Saint Lucia + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 11861 + + + + Saint Lucia + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 11327 + + + + Saint Lucia + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 439 + + + + Saint Lucia + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 95 + + + + Saint Lucia + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 10968 + + + + Saint Lucia + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 10406 + + + + Saint Lucia + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 442 + + + + Saint Lucia + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 120 + + + + Saint Lucia + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8897 + + + + Saint Lucia + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8349 + + + + Saint Lucia + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 458 + + + + Saint Lucia + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 90 + + + + Saint Lucia + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 6708 + + + + Saint Lucia + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 6093 + + + + Saint Lucia + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 525 + + + + Saint Lucia + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 90 + + + + Saint Lucia + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 5556 + + + + Saint Lucia + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 4691 + + + + Saint Lucia + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 786 + + + + Saint Lucia + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 79 + + + + Saint Lucia + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 4420 + + + + Saint Lucia + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3458 + + + + Saint Lucia + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 893 + + + + Saint Lucia + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 69 + + + + Saint Lucia + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3821 + + + + Saint Lucia + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2667 + + + + Saint Lucia + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1092 + + + + Saint Lucia + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 62 + + + + Saint Lucia + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3529 + + + + Saint Lucia + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2309 + + + + Saint Lucia + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1143 + + + + Saint Lucia + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 77 + + + + Saint Lucia + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2738 + + + + Saint Lucia + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1767 + + + + Saint Lucia + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 928 + + + + Saint Lucia + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 43 + + + + Saint Lucia + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2195 + + + + Saint Lucia + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1331 + + + + Saint Lucia + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 825 + + + + Saint Lucia + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 39 + + + + Saint Lucia + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1552 + + + + Saint Lucia + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 907 + + + + Saint Lucia + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 608 + + + + Saint Lucia + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 37 + + + + Saint Lucia + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 877 + + + + Saint Lucia + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 492 + + + + Saint Lucia + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 358 + + + + Saint Lucia + 2001 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 27 + + + + Saint Lucia + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 321 + + + + Saint Lucia + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 165 + + + + Saint Lucia + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 132 + + + + Saint Lucia + 2001 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 24 + + + + Saint Lucia + 2001 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 142 + + + + Saint Lucia + 2001 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 71 + + + + Saint Lucia + 2001 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 65 + + + + Saint Lucia + 2001 + Total + Both Sexes + 95 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 6 + + + + Samoa + 2016 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 18712 + + + + Samoa + 2016 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 18653 + + + + Samoa + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 59 + + + + Samoa + 2016 + Total + Both Sexes + 15 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 117867 + + + + Samoa + 2016 + Total + Both Sexes + 15 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 117156 + + + + Samoa + 2016 + Total + Both Sexes + 15 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 711 + + + + Samoa + 2016 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 15671 + + + + Samoa + 2016 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 15624 + + + + Samoa + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 47 + + + + Samoa + 2016 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 13132 + + + + Samoa + 2016 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 13091 + + + + Samoa + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 41 + + + + Samoa + 2016 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 11739 + + + + Samoa + 2016 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 11697 + + + + Samoa + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 42 + + + + Samoa + 2016 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 10624 + + + + Samoa + 2016 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 10575 + + + + Samoa + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 49 + + + + Samoa + 2016 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 10056 + + + + Samoa + 2016 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 10028 + + + + Samoa + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 28 + + + + Samoa + 2016 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 9539 + + + + Samoa + 2016 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 9506 + + + + Samoa + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 33 + + + + Samoa + 2016 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 8214 + + + + Samoa + 2016 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 8174 + + + + Samoa + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 40 + + + + Samoa + 2016 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 6742 + + + + Samoa + 2016 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 6701 + + + + Samoa + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 41 + + + + Samoa + 2016 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 4978 + + + + Samoa + 2016 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 4945 + + + + Samoa + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 33 + + + + Samoa + 2016 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 3212 + + + + Samoa + 2016 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 3179 + + + + Samoa + 2016 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 33 + + + + Samoa + 2016 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 2420 + + + + Samoa + 2016 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 2362 + + + + Samoa + 2016 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 58 + + + + Samoa + 2016 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 1496 + + + + Samoa + 2016 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 1440 + + + + Samoa + 2016 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 56 + + + + Samoa + 2016 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 824 + + + + Samoa + 2016 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 754 + + + + Samoa + 2016 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 70 + + + + Samoa + 2016 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 368 + + + + Samoa + 2016 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 316 + + + + Samoa + 2016 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 52 + + + + Samoa + 2016 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 116 + + + + Samoa + 2016 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 94 + + + + Samoa + 2016 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 22 + + + + Samoa + 2016 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 19 + + + + Samoa + 2016 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 14 + + + + Samoa + 2016 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 5 + + + + Samoa + 2016 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 5 + + + + Samoa + 2016 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 3 + + + + Samoa + 2016 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 2 + + + + Samoa + 2016 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2018 + 0 + + + + Samoa + 2016 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 0 + + + + Samoa + 2016 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2018 + 0 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 21427 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 20939 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 488 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 125547 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 114799 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 10748 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 18457 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 17966 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 491 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15974 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15343 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 631 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 14815 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 14053 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 762 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 12522 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 11944 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 578 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 9731 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 9189 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 542 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7879 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7363 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 516 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 6311 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 5645 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 666 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 5364 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 4427 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 937 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 3816 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2835 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 981 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2661 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1828 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 833 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1925 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1144 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 781 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1878 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 952 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 926 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1411 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 623 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 788 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1376 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 548 + + + + Sao Tome and Principe + 2012 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 828 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 18440 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 17670 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 770 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 98163 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 85160 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 13003 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 17568 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 16745 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 823 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 14300 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 13662 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 638 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 9823 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 9390 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 433 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 7776 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 7337 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 439 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 6642 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 5938 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 704 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 5452 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 4424 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1028 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 4043 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2917 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1126 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 3063 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1985 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1078 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2419 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1406 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1013 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2741 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1341 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1400 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2121 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 939 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1182 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1656 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 642 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1014 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 1133 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 442 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 691 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 619 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 212 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 407 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 250 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 80 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 170 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 86 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 24 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 62 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 16 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 4 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 12 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 15 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 13 + + + + Sao Tome and Principe + 2001 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2005 + 0 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2590177 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2559356 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 30821 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 22638020 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 20253653 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2384367 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2630062 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2582493 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 47569 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2765992 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2651593 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 114399 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 3118332 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2969754 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 148578 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2970829 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2736348 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 234481 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2513560 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 2241380 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 272180 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1850644 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1595183 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 255461 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1452639 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1181007 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 271632 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 1019440 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 776709 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 242731 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 614225 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 419477 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 194748 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 433389 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 255913 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 177476 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2017 + 678731 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 284440 + + + + Saudi Arabia + 2010 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2017 + 394291 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2581839 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2536628 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 45211 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17473856 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14875817 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2598039 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2180187 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2115453 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 64734 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2004827 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1895870 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 108957 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2293601 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2110474 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 183127 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2125101 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1879008 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 246093 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1855550 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1557108 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 298442 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1418761 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1120208 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 298553 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1001774 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 734170 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 267604 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 658230 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 418883 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 239347 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 405797 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 215904 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 189893 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 315512 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 128586 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 186926 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 632677 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 163525 + + + + Saudi Arabia + 2004 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 469152 + + + + Serbia + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 346869 + 37 + + + Serbia + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 344954 + 37 + + + Serbia + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1915 + 37 + + + Serbia + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6508453 + 37 + + + Serbia + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6380990 + 37 + + + Serbia + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 127463 + 37 + + + Serbia + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 401994 + 37 + + + Serbia + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 399399 + 37 + + + Serbia + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2595 + 37 + + + Serbia + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 439741 + 37 + + + Serbia + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 436517 + 37 + + + Serbia + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3224 + 37 + + + Serbia + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 480286 + 37 + + + Serbia + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 476882 + 37 + + + Serbia + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3404 + 37 + + + Serbia + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 496362 + 37 + + + Serbia + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 493174 + 37 + + + Serbia + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3188 + 37 + + + Serbia + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 493934 + 37 + + + Serbia + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 491137 + 37 + + + Serbia + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2797 + 37 + + + Serbia + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 469928 + 37 + + + Serbia + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 467044 + 37 + + + Serbia + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2884 + 37 + + + Serbia + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 483986 + 37 + + + Serbia + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 480728 + 37 + + + Serbia + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3258 + 37 + + + Serbia + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 520344 + 37 + + + Serbia + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 516223 + 37 + + + Serbia + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4121 + 37 + + + Serbia + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 596279 + 37 + + + Serbia + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 591261 + 37 + + + Serbia + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5018 + 37 + + + Serbia + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 528414 + 37 + + + Serbia + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 523242 + 37 + + + Serbia + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5172 + 37 + + + Serbia + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 339444 + 37 + + + Serbia + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 333062 + 37 + + + Serbia + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6382 + 37 + + + Serbia + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 354142 + 37 + + + Serbia + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 341130 + 37 + + + Serbia + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 13012 + 37 + + + Serbia + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 298612 + 37 + + + Serbia + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 267793 + 37 + + + Serbia + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 30819 + 37 + + + Serbia + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 176568 + 37 + + + Serbia + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 151258 + 37 + + + Serbia + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 25310 + 37 + + + Serbia + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 67233 + 37 + + + Serbia + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55972 + 37 + + + Serbia + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11261 + 37 + + + Serbia + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 12689 + 37 + + + Serbia + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 10004 + 37 + + + Serbia + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2685 + 37 + + + Serbia + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1461 + 37 + + + Serbia + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1103 + 37 + + + Serbia + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 358 + 37 + + + Serbia + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 167 + 37 + + + Serbia + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 107 + 37 + + + Serbia + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 60 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 439830 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 436807 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3023 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6761061 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 6528136 + 37 + + + Serbia + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 232925 + 37 + + + Serbia + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 495651 + 37 + + + Serbia + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 492313 + 37 + + + Serbia + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3338 + 37 + + + Serbia + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 512429 + 37 + + + Serbia + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 509283 + 37 + + + Serbia + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3146 + 37 + + + Serbia + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 504566 + 37 + + + Serbia + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 501744 + 37 + + + Serbia + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2822 + 37 + + + Serbia + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 476447 + 37 + + + Serbia + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 473582 + 37 + + + Serbia + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 2865 + 37 + + + Serbia + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 486009 + 37 + + + Serbia + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 482722 + 37 + + + Serbia + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3287 + 37 + + + Serbia + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 531828 + 37 + + + Serbia + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 527546 + 37 + + + Serbia + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4282 + 37 + + + Serbia + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 621553 + 37 + + + Serbia + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 616072 + 37 + + + Serbia + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5481 + 37 + + + Serbia + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 571353 + 37 + + + Serbia + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 565634 + 37 + + + Serbia + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 5719 + 37 + + + Serbia + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 389185 + 37 + + + Serbia + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 382082 + 37 + + + Serbia + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7103 + 37 + + + Serbia + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 443784 + 37 + + + Serbia + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 428553 + 37 + + + Serbia + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 15231 + 37 + + + Serbia + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 460406 + 37 + + + Serbia + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 417793 + 37 + + + Serbia + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 42613 + 37 + + + Serbia + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 387284 + 37 + + + Serbia + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 334635 + 37 + + + Serbia + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 52649 + 37 + + + Serbia + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 247338 + 37 + + + Serbia + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 205818 + 37 + + + Serbia + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 41520 + 37 + + + Serbia + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 100678 + 37 + + + Serbia + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 78232 + 37 + + + Serbia + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 22446 + 37 + + + Serbia + 2002 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 30934 + 37 + + + Serbia + 2002 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 22321 + 37 + + + Serbia + 2002 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 8613 + 37 + + + Serbia + 2002 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 11746 + 37 + + + Serbia + 2002 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 7690 + 37 + + + Serbia + 2002 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 4056 + 37 + + + Serbia + 2002 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 1711 + 37 + + + Serbia + 2002 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 960 + 37 + + + Serbia + 2002 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 751 + 37 + + + Serbia + 2002 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 408 + 37 + + + Serbia + 2002 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 318 + 37 + + + Serbia + 2002 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 90 + 37 + + + Serbia + 2002 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2003 + 47921 + 37 + + + Serbia + 2002 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 44031 + 37 + + + Serbia + 2002 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2003 + 3890 + 37 + + + Seychelles + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6745 + + + + Seychelles + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6530 + + + + Seychelles + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 65 + + + + Seychelles + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 150 + + + + Seychelles + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 77295 + + + + Seychelles + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 68894 + + + + Seychelles + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4078 + + + + Seychelles + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4323 + + + + Seychelles + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7452 + + + + Seychelles + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7188 + + + + Seychelles + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 69 + + + + Seychelles + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 195 + + + + Seychelles + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7487 + + + + Seychelles + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6763 + + + + Seychelles + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 76 + + + + Seychelles + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 648 + + + + Seychelles + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7804 + + + + Seychelles + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6987 + + + + Seychelles + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 69 + + + + Seychelles + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 748 + + + + Seychelles + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7764 + + + + Seychelles + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6935 + + + + Seychelles + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 97 + + + + Seychelles + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 732 + + + + Seychelles + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7752 + + + + Seychelles + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6950 + + + + Seychelles + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 99 + + + + Seychelles + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 703 + + + + Seychelles + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7285 + + + + Seychelles + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6646 + + + + Seychelles + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 157 + + + + Seychelles + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 482 + + + + Seychelles + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6823 + + + + Seychelles + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6192 + + + + Seychelles + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 299 + + + + Seychelles + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 332 + + + + Seychelles + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5453 + + + + Seychelles + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4868 + + + + Seychelles + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 399 + + + + Seychelles + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 186 + + + + Seychelles + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3361 + + + + Seychelles + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2898 + + + + Seychelles + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 410 + + + + Seychelles + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 53 + + + + Seychelles + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2628 + + + + Seychelles + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2164 + + + + Seychelles + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 439 + + + + Seychelles + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 25 + + + + Seychelles + 2010 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6741 + + + + Seychelles + 2010 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4773 + + + + Seychelles + 2010 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1899 + + + + Seychelles + 2010 + Total + Both Sexes + 65 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 69 + + + + Seychelles + 2002 + Total + Both Sexes + 12 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4323 + + + + Seychelles + 2002 + Total + Both Sexes + 12 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4155 + + + + Seychelles + 2002 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 50 + + + + Seychelles + 2002 + Total + Both Sexes + 12 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 113 + + + + Seychelles + 2002 + Total + Both Sexes + 12 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 65056 + 38 + + + Seychelles + 2002 + Total + Both Sexes + 12 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 59413 + + + + Seychelles + 2002 + Total + Both Sexes + 12 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4962 + + + + Seychelles + 2002 + Total + Both Sexes + 12 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 649 + + + + Seychelles + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7243 + + + + Seychelles + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7119 + + + + Seychelles + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 64 + + + + Seychelles + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 60 + + + + Seychelles + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7321 + + + + Seychelles + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7181 + + + + Seychelles + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 71 + + + + Seychelles + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 69 + + + + Seychelles + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7207 + + + + Seychelles + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7040 + + + + Seychelles + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 85 + + + + Seychelles + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 82 + + + + Seychelles + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7357 + + + + Seychelles + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7184 + + + + Seychelles + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 98 + + + + Seychelles + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75 + + + + Seychelles + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7142 + + + + Seychelles + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6841 + + + + Seychelles + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 230 + + + + Seychelles + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 71 + + + + Seychelles + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6185 + + + + Seychelles + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5767 + + + + Seychelles + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 357 + + + + Seychelles + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 61 + + + + Seychelles + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4357 + + + + Seychelles + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3921 + + + + Seychelles + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 406 + + + + Seychelles + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30 + + + + Seychelles + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3078 + + + + Seychelles + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2591 + + + + Seychelles + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 459 + + + + Seychelles + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25 + + + + Seychelles + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2352 + + + + Seychelles + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1858 + + + + Seychelles + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 482 + + + + Seychelles + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7 + + + + Seychelles + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2152 + + + + Seychelles + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1576 + + + + Seychelles + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 561 + + + + Seychelles + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 12 + + + + Seychelles + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2003 + + + + Seychelles + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1380 + + + + Seychelles + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 606 + + + + Seychelles + 2002 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 11 + + + + Seychelles + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1691 + + + + Seychelles + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1189 + + + + Seychelles + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 495 + + + + Seychelles + 2002 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2 + + + + Seychelles + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1189 + + + + Seychelles + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 792 + + + + Seychelles + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 389 + + + + Seychelles + 2002 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6 + + + + Seychelles + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 759 + + + + Seychelles + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 460 + + + + Seychelles + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 293 + + + + Seychelles + 2002 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5 + + + + Seychelles + 2002 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 697 + + + + Seychelles + 2002 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 359 + + + + Seychelles + 2002 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 316 + + + + Seychelles + 2002 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 560593 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 338943 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 221650 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3399086 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1327499 + + + + Sierra Leone + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2071587 + + + + Sierra Leone + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 531921 + + + + Sierra Leone + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 285799 + + + + Sierra Leone + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 246122 + + + + Sierra Leone + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 409238 + + + + Sierra Leone + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 165276 + + + + Sierra Leone + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 243962 + + + + Sierra Leone + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 400015 + + + + Sierra Leone + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 132946 + + + + Sierra Leone + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 267069 + + + + Sierra Leone + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 308184 + + + + Sierra Leone + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 102317 + + + + Sierra Leone + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 205867 + + + + Sierra Leone + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 295917 + + + + Sierra Leone + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 90309 + + + + Sierra Leone + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 205608 + + + + Sierra Leone + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 210377 + + + + Sierra Leone + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 64517 + + + + Sierra Leone + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 145860 + + + + Sierra Leone + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 174702 + + + + Sierra Leone + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 50236 + + + + Sierra Leone + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 124466 + + + + Sierra Leone + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 126492 + + + + Sierra Leone + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 32565 + + + + Sierra Leone + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 93927 + + + + Sierra Leone + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 83632 + + + + Sierra Leone + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20893 + + + + Sierra Leone + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 62739 + + + + Sierra Leone + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 86293 + + + + Sierra Leone + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 14527 + + + + Sierra Leone + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 71766 + + + + Sierra Leone + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 60254 + + + + Sierra Leone + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 10215 + + + + Sierra Leone + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 50039 + + + + Sierra Leone + 2004 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 53523 + + + + Sierra Leone + 2004 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7095 + + + + Sierra Leone + 2004 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 46428 + + + + Sierra Leone + 2004 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 36138 + + + + Sierra Leone + 2004 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 5315 + + + + Sierra Leone + 2004 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 30823 + + + + Sierra Leone + 2004 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 26583 + + + + Sierra Leone + 2004 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2897 + + + + Sierra Leone + 2004 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 23686 + + + + Sierra Leone + 2004 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 35224 + + + + Sierra Leone + 2004 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3649 + + + + Sierra Leone + 2004 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31575 + + + + Singapore + 2020 + Total + Both Sexes + 15 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 458811 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 15 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 457555 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 15 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1256 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3459093 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 3359881 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 99212 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 25 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 585602 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 25 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 583918 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1684 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 35 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 597228 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 35 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 595343 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 1885 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 45 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 606077 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 45 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 600656 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 5421 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 55 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 592375 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 55 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 577078 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 15296 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 65 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 402983 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 65 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 378707 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 65 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 24277 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 75 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 159780 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 75 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 131051 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 75 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 28729 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2021 + 56238 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 35573 + 39,40 + + + Singapore + 2020 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2021 + 20665 + 39,40 + + + Singapore + 2010 + Total + Both Sexes + 15 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 513346 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 512073 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1273 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3105748 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2977088 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 128661 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 25 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 553118 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 25 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 551363 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1755 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 25 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 35 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 622228 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 35 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 617778 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 4450 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 35 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 45 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 623643 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 45 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 609553 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14091 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 45 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 55 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 449345 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 55 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 425782 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 23563 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 55 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 65 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 208943 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 65 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 174844 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 65 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 34098 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 65 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 75 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 107055 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 75 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 70782 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 75 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 36273 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 75 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 28071 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14914 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13158 + 40,41 + + + Singapore + 2010 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 0 + 40,41 + + + Singapore + 2000 + Total + Both Sexes + 15 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 412796 + + + + Singapore + 2000 + Total + Both Sexes + 15 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 410752 + + + + Singapore + 2000 + Total + Both Sexes + 15 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2044 + + + + Singapore + 2000 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2494630 + + + + Singapore + 2000 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 2308765 + + + + Singapore + 2000 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 185865 + + + + Singapore + 2000 + Total + Both Sexes + 25 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 537112 + + + + Singapore + 2000 + Total + Both Sexes + 25 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 531441 + + + + Singapore + 2000 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 5671 + + + + Singapore + 2000 + Total + Both Sexes + 35 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 615835 + + + + Singapore + 2000 + Total + Both Sexes + 35 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 598744 + + + + Singapore + 2000 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 17091 + + + + Singapore + 2000 + Total + Both Sexes + 45 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 461845 + + + + Singapore + 2000 + Total + Both Sexes + 45 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 434656 + + + + Singapore + 2000 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 27189 + + + + Singapore + 2000 + Total + Both Sexes + 55 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 235709 + + + + Singapore + 2000 + Total + Both Sexes + 55 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 193653 + + + + Singapore + 2000 + Total + Both Sexes + 55 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 42056 + + + + Singapore + 2000 + Total + Both Sexes + 65 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2005 + 231334 + + + + Singapore + 2000 + Total + Both Sexes + 65 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 139521 + + + + Singapore + 2000 + Total + Both Sexes + 65 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2005 + 91813 + + + + Slovakia + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 399012 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 399012 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4715450 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4715450 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 440003 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 440003 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 466328 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 466328 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 432649 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 432649 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 359200 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 359200 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 380054 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 380054 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 398966 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 398966 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 410780 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 410780 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 343768 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 343768 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 255423 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 255423 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 218344 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 218344 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 197491 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 197491 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 175488 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 175488 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 135913 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 135913 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2002 + 237944 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2002 + 237944 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 57718 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 57718 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31757 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31757 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10537 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10537 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1811 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1811 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 208 + 42 + + + Slovakia + 2001 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 208 + 42 + + + Slovakia + 2001 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47524 + 42 + + + Slovakia + 2001 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 47524 + 42 + + + South Africa + 1996 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 4654100 + + + + South Africa + 1996 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3841212 + + + + South Africa + 1996 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 706159 + + + + South Africa + 1996 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 106729 + + + + South Africa + 1996 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 31471227 + 43 + + + South Africa + 1996 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 24908607 + + + + South Africa + 1996 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 5291156 + + + + South Africa + 1996 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1271464 + + + + South Africa + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 4180716 + + + + South Africa + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3871726 + + + + South Africa + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 218827 + + + + South Africa + 1996 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 90163 + + + + South Africa + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3982352 + + + + South Africa + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3599533 + + + + South Africa + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 266090 + + + + South Africa + 1996 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 116729 + + + + South Africa + 1996 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3455727 + + + + South Africa + 1996 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3016475 + + + + South Africa + 1996 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 313144 + + + + South Africa + 1996 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 126108 + + + + South Africa + 1996 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 3074201 + + + + South Africa + 1996 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 2571597 + + + + South Africa + 1996 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 383093 + + + + South Africa + 1996 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 119511 + + + + South Africa + 1996 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 2653756 + + + + South Africa + 1996 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 2116041 + + + + South Africa + 1996 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 427729 + + + + South Africa + 1996 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 109986 + + + + South Africa + 1996 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 2138625 + + + + South Africa + 1996 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1605417 + + + + South Africa + 1996 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 439913 + + + + South Africa + 1996 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 93295 + + + + South Africa + 1996 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1677527 + + + + South Africa + 1996 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1193255 + + + + South Africa + 1996 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 409142 + + + + South Africa + 1996 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 75130 + + + + South Africa + 1996 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1268894 + + + + South Africa + 1996 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 860203 + + + + South Africa + 1996 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 349299 + + + + South Africa + 1996 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 59392 + + + + South Africa + 1996 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 1069935 + + + + South Africa + 1996 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 654909 + + + + South Africa + 1996 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 365811 + + + + South Africa + 1996 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 49215 + + + + South Africa + 1996 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 890535 + + + + South Africa + 1996 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 496381 + + + + South Africa + 1996 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 355123 + + + + South Africa + 1996 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 39031 + + + + South Africa + 1996 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 758889 + + + + South Africa + 1996 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 372552 + + + + South Africa + 1996 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 352499 + + + + South Africa + 1996 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 33838 + + + + South Africa + 1996 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 482162 + + + + South Africa + 1996 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 238459 + + + + South Africa + 1996 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 218897 + + + + South Africa + 1996 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 24806 + + + + South Africa + 1996 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 693614 + + + + South Africa + 1996 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 285862 + + + + South Africa + 1996 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 360107 + + + + South Africa + 1996 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 47645 + + + + South Africa + 1996 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2000 + 490194 + + + + South Africa + 1996 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 184985 + + + + South Africa + 1996 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2000 + 125323 + + + + South Africa + 1996 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2000 + 179886 + + + + Spain + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2199760 + + + + Spain + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2199760 + + + + Spain + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41946415 + + + + Spain + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 38558465 + + + + Spain + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 764050 + + + + Spain + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2623895 + + + + Spain + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2203035 + + + + Spain + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1769190 + + + + Spain + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9705 + + + + Spain + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 424135 + + + + Spain + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2519000 + + + + Spain + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2505735 + + + + Spain + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 13265 + + + + Spain + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3084210 + + + + Spain + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3064055 + + + + Spain + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 20155 + + + + Spain + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3891810 + + + + Spain + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3864505 + + + + Spain + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 27310 + + + + Spain + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4091305 + + + + Spain + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4059640 + + + + Spain + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31665 + + + + Spain + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3839390 + + + + Spain + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3805350 + + + + Spain + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34040 + + + + Spain + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3607550 + + + + Spain + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3572895 + + + + Spain + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 34650 + + + + Spain + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3222230 + + + + Spain + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3188390 + + + + Spain + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33840 + + + + Spain + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2708410 + + + + Spain + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2672830 + + + + Spain + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 35580 + + + + Spain + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2463900 + + + + Spain + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2418040 + + + + Spain + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 45860 + + + + Spain + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2176725 + + + + Spain + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2115630 + + + + Spain + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 61095 + + + + Spain + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1724745 + + + + Spain + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1635540 + + + + Spain + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 89200 + + + + Spain + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1812640 + + + + Spain + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1682070 + + + + Spain + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 130575 + + + + Spain + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1318210 + + + + Spain + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1211115 + + + + Spain + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 107095 + + + + Spain + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 741290 + + + + Spain + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 682825 + + + + Spain + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58470 + + + + Spain + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 266815 + + + + Spain + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 243360 + + + + Spain + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 23455 + + + + Spain + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 67210 + + + + Spain + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 60025 + + + + Spain + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7185 + + + + Spain + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8180 + + + + Spain + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7270 + + + + Spain + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 910 + + + + Spain + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + + + + Spain + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2100711 + 44 + + + Spain + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2071326 + 44 + + + Spain + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 29385 + 44 + + + Spain + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 36771052 + 44 + + + Spain + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 35871833 + 44 + + + Spain + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 899219 + 44 + + + Spain + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2460435 + 44 + + + Spain + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2449102 + 44 + + + Spain + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 11333 + 44 + + + Spain + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3177556 + 44 + + + Spain + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3162962 + 44 + + + Spain + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 14594 + 44 + + + Spain + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3491005 + 44 + + + Spain + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3470558 + 44 + + + Spain + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 20447 + 44 + + + Spain + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3369483 + 44 + + + Spain + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3346830 + 44 + + + Spain + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 22653 + 44 + + + Spain + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3284570 + 44 + + + Spain + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3258975 + 44 + + + Spain + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 25595 + 44 + + + Spain + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3020664 + 44 + + + Spain + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2993237 + 44 + + + Spain + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 27427 + 44 + + + Spain + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2602822 + 44 + + + Spain + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2573780 + 44 + + + Spain + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 29042 + 44 + + + Spain + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2425768 + 44 + + + Spain + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2388602 + 44 + + + Spain + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 37166 + 44 + + + Spain + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2202650 + 44 + + + Spain + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2149857 + 44 + + + Spain + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 52793 + 44 + + + Spain + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1838452 + 44 + + + Spain + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1758625 + 44 + + + Spain + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 79827 + 44 + + + Spain + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2071821 + 44 + + + Spain + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1945324 + 44 + + + Spain + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 126497 + 44 + + + Spain + 2001 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1823131 + 44 + + + Spain + 2001 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1690803 + 44 + + + Spain + 2001 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 132328 + 44 + + + Spain + 2001 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1410131 + 44 + + + Spain + 2001 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1298406 + 44 + + + Spain + 2001 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 111725 + 44 + + + Spain + 2001 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 841808 + 44 + + + Spain + 2001 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 756346 + 44 + + + Spain + 2001 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 85462 + 44 + + + Spain + 2001 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 446662 + 44 + + + Spain + 2001 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 389317 + 44 + + + Spain + 2001 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 57345 + 44 + + + Spain + 2001 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 165685 + 44 + + + Spain + 2001 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 137425 + 44 + + + Spain + 2001 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 28260 + 44 + + + Spain + 2001 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 34108 + 44 + + + Spain + 2001 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 27516 + 44 + + + Spain + 2001 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6592 + 44 + + + Spain + 2001 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3590 + 44 + + + Spain + 2001 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2842 + 44 + + + Spain + 2001 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 748 + 44 + + + Sri Lanka + 2012 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1640052 + + + + Sri Lanka + 2012 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1629599 + + + + Sri Lanka + 2012 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 10453 + + + + Sri Lanka + 2012 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 16867825 + + + + Sri Lanka + 2012 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 16142267 + + + + Sri Lanka + 2012 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 725558 + + + + Sri Lanka + 2012 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1644249 + + + + Sri Lanka + 2012 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1631973 + + + + Sri Lanka + 2012 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 12276 + + + + Sri Lanka + 2012 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1532883 + + + + Sri Lanka + 2012 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1517745 + + + + Sri Lanka + 2012 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15138 + + + + Sri Lanka + 2012 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1552848 + + + + Sri Lanka + 2012 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1532605 + + + + Sri Lanka + 2012 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 20243 + + + + Sri Lanka + 2012 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1639415 + + + + Sri Lanka + 2012 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1606683 + + + + Sri Lanka + 2012 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 32732 + + + + Sri Lanka + 2012 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1409077 + + + + Sri Lanka + 2012 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1366180 + + + + Sri Lanka + 2012 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 42897 + + + + Sri Lanka + 2012 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1359209 + + + + Sri Lanka + 2012 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1297201 + + + + Sri Lanka + 2012 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 62008 + + + + Sri Lanka + 2012 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1285830 + + + + Sri Lanka + 2012 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1203335 + + + + Sri Lanka + 2012 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 82495 + + + + Sri Lanka + 2012 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1219460 + + + + Sri Lanka + 2012 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1140074 + + + + Sri Lanka + 2012 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 79386 + + + + Sri Lanka + 2012 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1064229 + + + + Sri Lanka + 2012 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 991728 + + + + Sri Lanka + 2012 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 72501 + + + + Sri Lanka + 2012 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 917910 + + + + Sri Lanka + 2012 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 844015 + + + + Sri Lanka + 2012 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 73895 + + + + Sri Lanka + 2012 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 633289 + + + + Sri Lanka + 2012 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 567817 + + + + Sri Lanka + 2012 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 65472 + + + + Sri Lanka + 2012 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 412414 + + + + Sri Lanka + 2012 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 359240 + + + + Sri Lanka + 2012 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 53174 + + + + Sri Lanka + 2012 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 283186 + + + + Sri Lanka + 2012 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 233896 + + + + Sri Lanka + 2012 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 49290 + + + + Sri Lanka + 2012 + Total + Both Sexes + 80 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 273774 + + + + Sri Lanka + 2012 + Total + Both Sexes + 80 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 220176 + + + + Sri Lanka + 2012 + Total + Both Sexes + 80 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 53598 + + + + Sri Lanka + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1525674 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1427952 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 97722 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 14006337 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 12762747 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1243590 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1646827 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1584914 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 61913 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1591126 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1515281 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 75845 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1340562 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1260513 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 80049 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1290121 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1190083 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 100038 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1258112 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1140243 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 117869 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1170941 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1065386 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 105555 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1030560 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 935346 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 95214 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 50 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2084719 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 50 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1821715 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 50 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 263004 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1067695 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 821314 + 45 + + + Sri Lanka + 2001 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 246381 + 45 + + + State of Palestine + 2017 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 544659 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 541551 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3024 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 84 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3427069 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3295541 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 98474 + + + + State of Palestine + 2017 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 33054 + + + + State of Palestine + 2017 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 487855 + + + + State of Palestine + 2017 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 485032 + + + + State of Palestine + 2017 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2712 + + + + State of Palestine + 2017 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 111 + + + + State of Palestine + 2017 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 478449 + + + + State of Palestine + 2017 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 475411 + + + + State of Palestine + 2017 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2941 + + + + State of Palestine + 2017 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 97 + + + + State of Palestine + 2017 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 404341 + + + + State of Palestine + 2017 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 401267 + + + + State of Palestine + 2017 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2908 + + + + State of Palestine + 2017 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 166 + + + + State of Palestine + 2017 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 303018 + + + + State of Palestine + 2017 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 299731 + + + + State of Palestine + 2017 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3081 + + + + State of Palestine + 2017 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 206 + + + + State of Palestine + 2017 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 256868 + + + + State of Palestine + 2017 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 253452 + + + + State of Palestine + 2017 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3236 + + + + State of Palestine + 2017 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 180 + + + + State of Palestine + 2017 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 224425 + + + + State of Palestine + 2017 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 220537 + + + + State of Palestine + 2017 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 3751 + + + + State of Palestine + 2017 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 137 + + + + State of Palestine + 2017 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 183988 + + + + State of Palestine + 2017 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 179478 + + + + State of Palestine + 2017 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 4368 + + + + State of Palestine + 2017 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 142 + + + + State of Palestine + 2017 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 161756 + + + + State of Palestine + 2017 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 155827 + + + + State of Palestine + 2017 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 5827 + + + + State of Palestine + 2017 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 102 + + + + State of Palestine + 2017 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 117610 + + + + State of Palestine + 2017 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 110684 + + + + State of Palestine + 2017 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 6858 + + + + State of Palestine + 2017 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 68 + + + + State of Palestine + 2017 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 81594 + + + + State of Palestine + 2017 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 73944 + + + + State of Palestine + 2017 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 7603 + + + + State of Palestine + 2017 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 47 + + + + State of Palestine + 2017 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 58928 + + + + State of Palestine + 2017 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 48800 + + + + State of Palestine + 2017 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 10088 + + + + State of Palestine + 2017 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 40 + + + + State of Palestine + 2017 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 39380 + + + + State of Palestine + 2017 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 27343 + + + + State of Palestine + 2017 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 12023 + + + + State of Palestine + 2017 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 14 + + + + State of Palestine + 2017 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 23634 + + + + State of Palestine + 2017 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 12087 + + + + State of Palestine + 2017 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 11540 + + + + State of Palestine + 2017 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 7 + + + + State of Palestine + 2017 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 16208 + + + + State of Palestine + 2017 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 6514 + + + + State of Palestine + 2017 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 9688 + + + + State of Palestine + 2017 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 6 + + + + State of Palestine + 2017 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 8408 + + + + State of Palestine + 2017 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2749 + + + + State of Palestine + 2017 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 5658 + + + + State of Palestine + 2017 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 1 + + + + State of Palestine + 2017 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2967 + + + + State of Palestine + 2017 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 867 + + + + State of Palestine + 2017 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 2099 + + + + State of Palestine + 2017 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 1 + + + + State of Palestine + 2017 + Total + Both Sexes + 95 - 98 + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 1336 + + + + State of Palestine + 2017 + Total + Both Sexes + 95 - 98 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 267 + + + + State of Palestine + 2017 + Total + Both Sexes + 95 - 98 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 1069 + + + + State of Palestine + 2017 + Total + Both Sexes + 95 - 98 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 0 + + + + State of Palestine + 2017 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2020 + 31645 + + + + State of Palestine + 2017 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 0 + + + + State of Palestine + 2017 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2020 + 0 + + + + State of Palestine + 2017 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2020 + 31645 + + + + State of Palestine + 2007 + Total + Both Sexes + Total + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2457013 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Total + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 134374 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Total + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2272577 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Total + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 50062 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 466273 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2661 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 463225 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 387 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 414439 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3069 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 410969 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 401 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 309935 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3228 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 306329 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 378 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 252227 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3565 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 248268 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 394 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 215288 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4031 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 210909 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 348 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 177060 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4680 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 172085 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 295 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 156514 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5812 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 150518 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 184 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 117580 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7086 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 110329 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 165 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 83301 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7987 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 75189 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 125 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 63010 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10841 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 52061 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 108 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 47829 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 15376 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 32351 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 102 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 33697 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 17443 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 16162 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 92 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 29316 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 18211 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 11015 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 90 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 21135 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 14653 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 6421 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 61 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 11749 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 8586 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 3110 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 53 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 5344 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 4187 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1131 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 26 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2004 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1682 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 312 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 10 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 95 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 1061 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 95 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 930 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 95 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 124 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + 95 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 7 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2013 + 49251 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 346 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2013 + 2069 + 46,47 + + + State of Palestine + 2007 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2013 + 46836 + 46,47 + + + State of Palestine + 1997 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 321446 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 314709 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 6529 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 208 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1694959 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1490359 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 196915 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 7685 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 273047 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 265486 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 7321 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 240 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 235995 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 227985 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 7697 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 313 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 190222 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 181875 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 7987 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 360 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 164884 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 155314 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9207 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 363 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 123429 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 113065 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 9975 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 389 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 88349 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 77865 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 10088 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 396 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 68100 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 55196 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 12414 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 490 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 55818 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 37356 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 17785 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 677 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 41859 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 20236 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 20883 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 740 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 41794 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 16257 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 24607 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 930 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 34380 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 11142 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 22362 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 876 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 24896 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 7416 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 16835 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 645 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2001 + 30740 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 6457 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2001 + 23225 + 48 + + + State of Palestine + 1997 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2001 + 1058 + 48 + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 44503 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 45143 + + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35183 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 35727 + + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3136 + + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3089 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6280 + + + + Suriname + 2004 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6231 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 385960 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 391583 + + + + Suriname + 2004 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 296415 + + + + Suriname + 2004 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 292635 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33711 + + + + Suriname + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33054 + 49 + + + Suriname + 2004 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 61457 + + + + Suriname + 2004 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 60271 + 49 + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 45821 + 49 + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 46508 + + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37424 + + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 36816 + 49 + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1872 + 49 + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1912 + + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7172 + + + + Suriname + 2004 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7133 + 49 + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 43084 + 49 + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 43843 + + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 34636 + + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33990 + 49 + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1948 + 49 + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1982 + + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7225 + + + + Suriname + 2004 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7146 + 49 + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37364 + 49 + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37901 + + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29849 + + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29437 + 49 + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1921 + 49 + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1944 + + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6108 + + + + Suriname + 2004 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6006 + 49 + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38542 + 49 + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 38994 + + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30893 + + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 30583 + 49 + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1963 + 49 + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1985 + + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5996 + 49 + + + Suriname + 2004 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6116 + + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 37279 + + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 36854 + 49 + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29713 + + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 29450 + 49 + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2012 + 49 + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2031 + + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5535 + + + + Suriname + 2004 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5392 + 49 + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33985 + + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 33640 + 49 + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27050 + 49 + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 27265 + + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2127 + + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2112 + 49 + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4593 + + + + Suriname + 2004 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4478 + 49 + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25635 + + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 25401 + 49 + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20445 + + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20315 + 49 + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2057 + + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2045 + 49 + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3133 + + + + Suriname + 2004 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3041 + 49 + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20268 + 49 + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 20420 + + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14603 + + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14535 + 49 + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2082 + 49 + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2094 + + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3723 + + + + Suriname + 2004 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3651 + 49 + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14982 + + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 14887 + 49 + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10643 + 49 + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10680 + + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2151 + + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2139 + 49 + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2151 + + + + Suriname + 2004 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2105 + 49 + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 13259 + + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 13154 + 49 + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8562 + + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8504 + 49 + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2610 + + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2585 + 49 + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2087 + + + + Suriname + 2004 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2065 + 49 + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10602 + + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 10453 + 49 + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6384 + + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 6303 + 49 + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2946 + 49 + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2986 + + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1232 + + + + Suriname + 2004 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1204 + 49 + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8659 + + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8475 + 49 + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4658 + + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4554 + 49 + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2786 + 49 + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2845 + + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1135 + 49 + + + Suriname + 2004 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1156 + + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 5152 + + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4944 + 49 + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2628 + 49 + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2732 + + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1852 + + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1775 + 49 + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 541 + 49 + + + Suriname + 2004 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 568 + + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2853 + + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2656 + 49 + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1365 + 49 + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1470 + + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1087 + + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1007 + 49 + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 284 + 49 + + + Suriname + 2004 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 296 + + + + Suriname + 2004 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1664 + + + + Suriname + 2004 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 1415 + 49 + + + Suriname + 2004 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 667 + 49 + + + Suriname + 2004 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 754 + + + + Suriname + 2004 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 764 + + + + Suriname + 2004 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 625 + 49 + + + Suriname + 2004 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 123 + 49 + + + Suriname + 2004 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 146 + + + + Suriname + 2004 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4704 + + + + Suriname + 2004 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 4499 + 49 + + + Suriname + 2004 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 612 + 49 + + + Suriname + 2004 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 620 + + + + Suriname + 2004 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 148 + + + + Suriname + 2004 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 147 + 49 + + + Suriname + 2004 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3740 + 49 + + + Suriname + 2004 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3936 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 870713 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 870098 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 615 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 5744608 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 5731141 + + + + Tajikistan + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 13467 + + + + Tajikistan + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 864186 + + + + Tajikistan + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 863418 + + + + Tajikistan + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 768 + + + + Tajikistan + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 838918 + + + + Tajikistan + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 838154 + + + + Tajikistan + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 764 + + + + Tajikistan + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 647021 + + + + Tajikistan + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 646433 + + + + Tajikistan + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 588 + + + + Tajikistan + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 504161 + + + + Tajikistan + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 503275 + + + + Tajikistan + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 886 + + + + Tajikistan + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 436033 + + + + Tajikistan + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 435235 + + + + Tajikistan + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 798 + + + + Tajikistan + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 397384 + + + + Tajikistan + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 396682 + + + + Tajikistan + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 702 + + + + Tajikistan + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 360515 + + + + Tajikistan + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 359867 + + + + Tajikistan + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 648 + + + + Tajikistan + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 284884 + + + + Tajikistan + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 284323 + + + + Tajikistan + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 561 + + + + Tajikistan + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 179664 + + + + Tajikistan + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 179190 + + + + Tajikistan + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 474 + + + + Tajikistan + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 112542 + + + + Tajikistan + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 112002 + + + + Tajikistan + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 540 + + + + Tajikistan + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 70875 + + + + Tajikistan + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 70221 + + + + Tajikistan + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 654 + + + + Tajikistan + 2010 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2012 + 177712 + + + + Tajikistan + 2010 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 172243 + + + + Tajikistan + 2010 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2012 + 5469 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 853037 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 850823 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1284 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 930 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4363762 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4342263 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20549 + + + + Tajikistan + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 950 + + + + Tajikistan + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 669877 + + + + Tajikistan + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 668910 + + + + Tajikistan + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 964 + + + + Tajikistan + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3 + + + + Tajikistan + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 533897 + + + + Tajikistan + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 533020 + + + + Tajikistan + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 877 + + + + Tajikistan + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 468281 + + + + Tajikistan + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 467497 + + + + Tajikistan + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 783 + + + + Tajikistan + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1 + + + + Tajikistan + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 414647 + + + + Tajikistan + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 413912 + + + + Tajikistan + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 726 + + + + Tajikistan + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 9 + + + + Tajikistan + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 385740 + + + + Tajikistan + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 385079 + + + + Tajikistan + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 659 + + + + Tajikistan + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2 + + + + Tajikistan + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 287391 + + + + Tajikistan + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 286851 + + + + Tajikistan + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 538 + + + + Tajikistan + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2 + + + + Tajikistan + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 195629 + + + + Tajikistan + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 195205 + + + + Tajikistan + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 423 + + + + Tajikistan + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1 + + + + Tajikistan + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 119095 + + + + Tajikistan + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 118584 + + + + Tajikistan + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 511 + + + + Tajikistan + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 98741 + + + + Tajikistan + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 97890 + + + + Tajikistan + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 851 + + + + Tajikistan + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 113545 + + + + Tajikistan + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 111585 + + + + Tajikistan + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1960 + + + + Tajikistan + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 93942 + + + + Tajikistan + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 90952 + + + + Tajikistan + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2988 + + + + Tajikistan + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2 + + + + Tajikistan + 2000 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 129940 + + + + Tajikistan + 2000 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 121955 + + + + Tajikistan + 2000 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7985 + + + + Thailand + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4864244 + + + + Thailand + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4833660 + + + + Thailand + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 30427 + + + + Thailand + 2010 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 157 + + + + Thailand + 2010 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 58160134 + + + + Thailand + 2010 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 56076934 + + + + Thailand + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1927035 + + + + Thailand + 2010 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 156165 + + + + Thailand + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4900587 + + + + Thailand + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4794979 + + + + Thailand + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 98480 + + + + Thailand + 2010 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 7128 + + + + Thailand + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4691511 + + + + Thailand + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4448157 + + + + Thailand + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 227088 + + + + Thailand + 2010 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16266 + + + + Thailand + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5092611 + + + + Thailand + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4800476 + + + + Thailand + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 270127 + + + + Thailand + 2010 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 22008 + + + + Thailand + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5394912 + + + + Thailand + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5167055 + + + + Thailand + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 206491 + + + + Thailand + 2010 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 21366 + + + + Thailand + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5614851 + + + + Thailand + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5451585 + + + + Thailand + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 146965 + + + + Thailand + 2010 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 16301 + + + + Thailand + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5672024 + + + + Thailand + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5552219 + + + + Thailand + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 106688 + + + + Thailand + 2010 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 13117 + + + + Thailand + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5266073 + + + + Thailand + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5131475 + + + + Thailand + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 122989 + + + + Thailand + 2010 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 11609 + + + + Thailand + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4588032 + + + + Thailand + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 4450977 + + + + Thailand + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 127352 + + + + Thailand + 2010 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 9703 + + + + Thailand + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3567081 + + + + Thailand + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3459417 + + + + Thailand + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 101496 + + + + Thailand + 2010 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 6168 + + + + Thailand + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2765392 + + + + Thailand + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 2666849 + + + + Thailand + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 92651 + + + + Thailand + 2010 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5892 + + + + Thailand + 2010 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1933364 + + + + Thailand + 2010 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 1847735 + + + + Thailand + 2010 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 80316 + + + + Thailand + 2010 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 5313 + + + + Thailand + 2010 + Total + Both Sexes + 70 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3809452 + + + + Thailand + 2010 + Total + Both Sexes + 70 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 3472350 + + + + Thailand + 2010 + Total + Both Sexes + 70 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2012 + 315965 + + + + Thailand + 2010 + Total + Both Sexes + 70 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2012 + 21137 + + + + Thailand + 2000 + Total + Both Sexes + 6 - 11 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6131605 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 - 11 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4503800 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 - 11 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1626288 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 - 11 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1517 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 55278397 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 50211058 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5060178 + 50 + + + Thailand + 2000 + Total + Both Sexes + 6 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7161 + 50 + + + Thailand + 2000 + Total + Both Sexes + 12 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3074249 + 50 + + + Thailand + 2000 + Total + Both Sexes + 12 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3027604 + 50 + + + Thailand + 2000 + Total + Both Sexes + 12 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 46360 + 50 + + + Thailand + 2000 + Total + Both Sexes + 12 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 285 + 50 + + + Thailand + 2000 + Total + Both Sexes + 15 - 17 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3152977 + 50 + + + Thailand + 2000 + Total + Both Sexes + 15 - 17 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3100349 + 50 + + + Thailand + 2000 + Total + Both Sexes + 15 - 17 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 52426 + 50 + + + Thailand + 2000 + Total + Both Sexes + 15 - 17 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 202 + 50 + + + Thailand + 2000 + Total + Both Sexes + 18 - 21 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4252389 + 50 + + + Thailand + 2000 + Total + Both Sexes + 18 - 21 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4163348 + 50 + + + Thailand + 2000 + Total + Both Sexes + 18 - 21 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 88697 + 50 + + + Thailand + 2000 + Total + Both Sexes + 18 - 21 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 344 + 50 + + + Thailand + 2000 + Total + Both Sexes + 22 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3143808 + 50 + + + Thailand + 2000 + Total + Both Sexes + 22 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3071170 + 50 + + + Thailand + 2000 + Total + Both Sexes + 22 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 72442 + 50 + + + Thailand + 2000 + Total + Both Sexes + 22 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 196 + 50 + + + Thailand + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5407796 + 50 + + + Thailand + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5256149 + 50 + + + Thailand + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 151216 + 50 + + + Thailand + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 431 + 50 + + + Thailand + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5525944 + 50 + + + Thailand + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5325133 + 50 + + + Thailand + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 200295 + 50 + + + Thailand + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 516 + 50 + + + Thailand + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5259357 + 50 + + + Thailand + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5031026 + 50 + + + Thailand + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 227722 + 50 + + + Thailand + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 609 + 50 + + + Thailand + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4685044 + 50 + + + Thailand + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4429756 + 50 + + + Thailand + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 254729 + 50 + + + Thailand + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 559 + 50 + + + Thailand + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3719822 + 50 + + + Thailand + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3460475 + 50 + + + Thailand + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 258957 + 50 + + + Thailand + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 390 + 50 + + + Thailand + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2848159 + 50 + + + Thailand + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2596856 + 50 + + + Thailand + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 250901 + 50 + + + Thailand + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 402 + 50 + + + Thailand + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2284277 + 50 + + + Thailand + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2010705 + 50 + + + Thailand + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 273253 + 50 + + + Thailand + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 319 + 50 + + + Thailand + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1970687 + 50 + + + Thailand + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1618678 + 50 + + + Thailand + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 351694 + 50 + + + Thailand + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 315 + 50 + + + Thailand + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1530021 + 50 + + + Thailand + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1205480 + 50 + + + Thailand + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 324194 + 50 + + + Thailand + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 347 + 50 + + + Thailand + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1080103 + 50 + + + Thailand + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 777059 + 50 + + + Thailand + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 302736 + 50 + + + Thailand + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 308 + 50 + + + Thailand + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 626282 + 50 + + + Thailand + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 377532 + 50 + + + Thailand + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 248572 + 50 + + + Thailand + 2000 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 178 + 50 + + + Thailand + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 340550 + 50 + + + Thailand + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 159258 + 50 + + + Thailand + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 181143 + 50 + + + Thailand + 2000 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 149 + 50 + + + Thailand + 2000 + Total + Both Sexes + 85 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 245327 + 50 + + + Thailand + 2000 + Total + Both Sexes + 85 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 96680 + 50 + + + Thailand + 2000 + Total + Both Sexes + 85 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 148553 + 50 + + + Thailand + 2000 + Total + Both Sexes + 85 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 94 + 50 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 118213 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 60655 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 57558 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 638478 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 319976 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 318502 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 94283 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 70090 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 24193 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 74561 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 52391 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 22170 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 56559 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 36912 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 19647 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 61970 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 36650 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 25320 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 48518 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 23181 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 25337 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 45724 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 15433 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 30291 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 34175 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 9460 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 24715 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 32808 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 6565 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 26243 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 19134 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3203 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 15931 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 20462 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 2382 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 18080 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2010 + 32071 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 3054 + 51 + + + Timor-Leste + 2004 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2010 + 29017 + 51 + + + Tokelau + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 109 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 105 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 755 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 736 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 16 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 95 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 95 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 76 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 72 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 49 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 48 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 64 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 63 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 55 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 52 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 60 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 59 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 31 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 33 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 30 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + 52 + + + Tokelau + 2011 + Total + Both Sexes + 75 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1 + 52 + + + Tokelau + 2011 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + 52 + + + Tokelau + 2011 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2 + 52 + + + Tokelau + 2011 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tokelau + 2011 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 52 + + + Tonga + 2016 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 11873 + + + + Tonga + 2016 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 11725 + + + + Tonga + 2016 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 148 + + + + Tonga + 2016 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 75625 + + + + Tonga + 2016 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 73623 + + + + Tonga + 2016 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2002 + + + + Tonga + 2016 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 10493 + + + + Tonga + 2016 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 10334 + + + + Tonga + 2016 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 159 + + + + Tonga + 2016 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 8202 + + + + Tonga + 2016 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 8045 + + + + Tonga + 2016 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 157 + + + + Tonga + 2016 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 6585 + + + + Tonga + 2016 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 6394 + + + + Tonga + 2016 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 191 + + + + Tonga + 2016 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 6490 + + + + Tonga + 2016 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 6297 + + + + Tonga + 2016 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 193 + + + + Tonga + 2016 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 5605 + + + + Tonga + 2016 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 5448 + + + + Tonga + 2016 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 157 + + + + Tonga + 2016 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 5157 + + + + Tonga + 2016 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 4969 + + + + Tonga + 2016 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 188 + + + + Tonga + 2016 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 5132 + + + + Tonga + 2016 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 4965 + + + + Tonga + 2016 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 167 + + + + Tonga + 2016 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 4119 + + + + Tonga + 2016 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 3969 + + + + Tonga + 2016 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 150 + + + + Tonga + 2016 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 3231 + + + + Tonga + 2016 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 3121 + + + + Tonga + 2016 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 110 + + + + Tonga + 2016 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2680 + + + + Tonga + 2016 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2567 + + + + Tonga + 2016 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 113 + + + + Tonga + 2016 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2021 + + + + Tonga + 2016 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1950 + + + + Tonga + 2016 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 71 + + + + Tonga + 2016 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1595 + + + + Tonga + 2016 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1539 + + + + Tonga + 2016 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 56 + + + + Tonga + 2016 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1248 + + + + Tonga + 2016 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1202 + + + + Tonga + 2016 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 46 + + + + Tonga + 2016 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 725 + + + + Tonga + 2016 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 680 + + + + Tonga + 2016 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 45 + + + + Tonga + 2016 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 358 + + + + Tonga + 2016 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 324 + + + + Tonga + 2016 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 34 + + + + Tonga + 2016 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 99 + + + + Tonga + 2016 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 84 + + + + Tonga + 2016 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 15 + + + + Tonga + 2016 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 10 + + + + Tonga + 2016 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 9 + + + + Tonga + 2016 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1 + + + + Tonga + 2016 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2019 + 2 + + + + Tonga + 2016 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1 + + + + Tonga + 2016 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2019 + 1 + + + + Tonga + 2006 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12320 + + + + Tonga + 2006 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12151 + + + + Tonga + 2006 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 169 + + + + Tonga + 2006 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 75405 + + + + Tonga + 2006 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 73807 + + + + Tonga + 2006 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1572 + + + + Tonga + 2006 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 26 + + + + Tonga + 2006 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10280 + + + + Tonga + 2006 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10151 + + + + Tonga + 2006 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 127 + + + + Tonga + 2006 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2 + + + + Tonga + 2006 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9191 + + + + Tonga + 2006 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9043 + + + + Tonga + 2006 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 144 + + + + Tonga + 2006 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4 + + + + Tonga + 2006 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7304 + + + + Tonga + 2006 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7168 + + + + Tonga + 2006 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 136 + + + + Tonga + 2006 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6337 + + + + Tonga + 2006 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6177 + + + + Tonga + 2006 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 160 + + + + Tonga + 2006 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6229 + + + + Tonga + 2006 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6089 + + + + Tonga + 2006 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 140 + + + + Tonga + 2006 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5014 + + + + Tonga + 2006 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4852 + + + + Tonga + 2006 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 161 + + + + Tonga + 2006 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1 + + + + Tonga + 2006 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3982 + + + + Tonga + 2006 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3851 + + + + Tonga + 2006 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 131 + + + + Tonga + 2006 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3465 + + + + Tonga + 2006 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3360 + + + + Tonga + 2006 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 105 + + + + Tonga + 2006 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2849 + + + + Tonga + 2006 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2780 + + + + Tonga + 2006 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 69 + + + + Tonga + 2006 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2470 + + + + Tonga + 2006 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2407 + + + + Tonga + 2006 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 63 + + + + Tonga + 2006 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2174 + + + + Tonga + 2006 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2133 + + + + Tonga + 2006 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 41 + + + + Tonga + 2006 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1586 + + + + Tonga + 2006 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1555 + + + + Tonga + 2006 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31 + + + + Tonga + 2006 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1099 + + + + Tonga + 2006 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1068 + + + + Tonga + 2006 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 31 + + + + Tonga + 2006 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 625 + + + + Tonga + 2006 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 598 + + + + Tonga + 2006 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 27 + + + + Tonga + 2006 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 246 + + + + Tonga + 2006 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 231 + + + + Tonga + 2006 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 15 + + + + Tonga + 2006 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 86 + + + + Tonga + 2006 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 77 + + + + Tonga + 2006 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9 + + + + Tonga + 2006 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 20 + + + + Tonga + 2006 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18 + + + + Tonga + 2006 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2 + + + + Tonga + 2006 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6 + + + + Tonga + 2006 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 6 + + + + Tonga + 2006 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 0 + + + + Tonga + 2006 + Total + Both Sexes + Unknown + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 122 + + + + Tonga + 2006 + Total + Both Sexes + Unknown + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 92 + + + + Tonga + 2006 + Total + Both Sexes + Unknown + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11 + + + + Tonga + 2006 + Total + Both Sexes + Unknown + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 19 + + + + Tonga + 1996 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 12412 + + + + Tonga + 1996 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 12342 + + + + Tonga + 1996 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 69 + + + + Tonga + 1996 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1 + + + + Tonga + 1996 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 70518 + + + + Tonga + 1996 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 69804 + + + + Tonga + 1996 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 709 + + + + Tonga + 1996 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 5 + + + + Tonga + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 10793 + + + + Tonga + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 10733 + + + + Tonga + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 58 + + + + Tonga + 1996 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 2 + + + + Tonga + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 8595 + + + + Tonga + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 8515 + + + + Tonga + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 79 + + + + Tonga + 1996 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1 + + + + Tonga + 1996 + Total + Both Sexes + 25 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 13327 + + + + Tonga + 1996 + Total + Both Sexes + 25 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 13219 + + + + Tonga + 1996 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 107 + + + + Tonga + 1996 + Total + Both Sexes + 25 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 1 + + + + Tonga + 1996 + Total + Both Sexes + 35 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 11829 + + + + Tonga + 1996 + Total + Both Sexes + 35 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 11699 + + + + Tonga + 1996 + Total + Both Sexes + 35 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 130 + + + + Tonga + 1996 + Total + Both Sexes + 35 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + + + + Tonga + 1996 + Total + Both Sexes + 50 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1998 + 13562 + + + + Tonga + 1996 + Total + Both Sexes + 50 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 13296 + + + + Tonga + 1996 + Total + Both Sexes + 50 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1998 + 266 + + + + Tonga + 1996 + Total + Both Sexes + 50 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1998 + 0 + + + + Tunisia + 2004 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 991200 + + + + Tunisia + 2004 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 968800 + + + + Tunisia + 2004 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22400 + + + + Tunisia + 2004 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8260000 + + + + Tunisia + 2004 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6369300 + + + + Tunisia + 2004 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1890700 + + + + Tunisia + 2004 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1057600 + + + + Tunisia + 2004 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1011600 + + + + Tunisia + 2004 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 46000 + + + + Tunisia + 2004 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1007400 + + + + Tunisia + 2004 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 936600 + + + + Tunisia + 2004 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 70800 + + + + Tunisia + 2004 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 870600 + + + + Tunisia + 2004 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 776100 + + + + Tunisia + 2004 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 94500 + + + + Tunisia + 2004 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 744500 + + + + Tunisia + 2004 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 625900 + + + + Tunisia + 2004 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 118600 + + + + Tunisia + 2004 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 716400 + + + + Tunisia + 2004 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 547700 + + + + Tunisia + 2004 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 168700 + + + + Tunisia + 2004 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 649800 + + + + Tunisia + 2004 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 492600 + + + + Tunisia + 2004 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 157200 + + + + Tunisia + 2004 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 560000 + + + + Tunisia + 2004 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 392800 + + + + Tunisia + 2004 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 167200 + + + + Tunisia + 2004 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 433100 + + + + Tunisia + 2004 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 260900 + + + + Tunisia + 2004 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 172200 + + + + Tunisia + 2004 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 303000 + + + + Tunisia + 2004 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 141800 + + + + Tunisia + 2004 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 161200 + + + + Tunisia + 2004 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 252600 + + + + Tunisia + 2004 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 82100 + + + + Tunisia + 2004 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 170500 + + + + Tunisia + 2004 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 673800 + + + + Tunisia + 2004 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 132400 + + + + Tunisia + 2004 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 541400 + + + + Türkiye + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6604000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6598000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 62243000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 59220000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3006000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 17000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6314000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6271000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 43000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6251000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6138000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 98000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 15000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6311000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6202000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 109000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6466000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6354000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 111000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5634000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5529000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 105000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4691000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4582000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 108000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4825000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4654000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 171000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3733000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3544000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 189000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3439000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3152000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 287000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2530000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2198000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 331000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1845000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1506000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 339000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1437000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1088000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 349000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1113000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 778000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 335000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 685000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 422000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 263000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 283000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 164000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 119000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 62000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 30000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 15000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3000 + 2,53,54 + + + Türkiye + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 0 + 2,53,54 + + + Türkiye + 2000 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6878656 + + + + Türkiye + 2000 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6640761 + + + + Türkiye + 2000 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 237704 + + + + Türkiye + 2000 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 191 + + + + Türkiye + 2000 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 54462488 + + + + Türkiye + 2000 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 47790160 + + + + Türkiye + 2000 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6662123 + + + + Türkiye + 2000 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 10205 + + + + Türkiye + 2000 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7209475 + + + + Türkiye + 2000 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6904711 + + + + Türkiye + 2000 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 303504 + + + + Türkiye + 2000 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1260 + + + + Türkiye + 2000 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6690146 + + + + Türkiye + 2000 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6373345 + + + + Türkiye + 2000 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 315802 + + + + Türkiye + 2000 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 999 + + + + Türkiye + 2000 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5895255 + + + + Türkiye + 2000 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5550676 + + + + Türkiye + 2000 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 343825 + + + + Türkiye + 2000 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 754 + + + + Türkiye + 2000 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 5009655 + + + + Türkiye + 2000 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4641224 + + + + Türkiye + 2000 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 367750 + + + + Türkiye + 2000 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 681 + + + + Türkiye + 2000 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4854387 + + + + Türkiye + 2000 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4409758 + + + + Türkiye + 2000 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 443993 + + + + Türkiye + 2000 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 636 + + + + Türkiye + 2000 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4068756 + + + + Türkiye + 2000 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3595994 + + + + Türkiye + 2000 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 472100 + + + + Türkiye + 2000 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 662 + + + + Türkiye + 2000 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 3368769 + + + + Türkiye + 2000 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2842982 + + + + Türkiye + 2000 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 525262 + + + + Türkiye + 2000 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 525 + + + + Türkiye + 2000 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2717349 + + + + Türkiye + 2000 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2133888 + + + + Türkiye + 2000 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 582997 + + + + Türkiye + 2000 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 464 + + + + Türkiye + 2000 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2058422 + + + + Türkiye + 2000 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1487888 + + + + Türkiye + 2000 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 570210 + + + + Türkiye + 2000 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 324 + + + + Türkiye + 2000 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1829288 + + + + Türkiye + 2000 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1177531 + + + + Türkiye + 2000 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 651392 + + + + Türkiye + 2000 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 365 + + + + Türkiye + 2000 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1645517 + + + + Türkiye + 2000 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 941241 + + + + Türkiye + 2000 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 703969 + + + + Türkiye + 2000 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 307 + + + + Türkiye + 2000 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1172643 + + + + Türkiye + 2000 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 596797 + + + + Türkiye + 2000 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 575607 + + + + Türkiye + 2000 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 239 + + + + Türkiye + 2000 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 577597 + + + + Türkiye + 2000 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 285205 + + + + Türkiye + 2000 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 292238 + + + + Türkiye + 2000 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 154 + + + + Türkiye + 2000 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 246692 + + + + Türkiye + 2000 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 107114 + + + + Türkiye + 2000 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 139471 + + + + Türkiye + 2000 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 107 + + + + Türkiye + 2000 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 138361 + + + + Türkiye + 2000 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 55903 + + + + Türkiye + 2000 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 82417 + + + + Türkiye + 2000 + Total + Both Sexes + 85 - 89 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 41 + + + + Türkiye + 2000 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 52426 + + + + Türkiye + 2000 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 18368 + + + + Türkiye + 2000 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 34031 + + + + Türkiye + 2000 + Total + Both Sexes + 90 - 94 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 27 + + + + Türkiye + 2000 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 19504 + + + + Türkiye + 2000 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7109 + + + + Türkiye + 2000 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 12370 + + + + Türkiye + 2000 + Total + Both Sexes + 95 - 99 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 25 + + + + Türkiye + 2000 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 6209 + + + + Türkiye + 2000 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 1292 + + + + Türkiye + 2000 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 4910 + + + + Türkiye + 2000 + Total + Both Sexes + 100 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 7 + + + + Türkiye + 2000 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2009 + 23381 + + + + Türkiye + 2000 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 18373 + + + + Türkiye + 2000 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2571 + + + + Türkiye + 2000 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2009 + 2437 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 514607 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 514039 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 568 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3402297 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3346181 + + + + Turkmenistan + 1995 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 56116 + + + + Turkmenistan + 1995 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 450565 + + + + Turkmenistan + 1995 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 449711 + + + + Turkmenistan + 1995 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 854 + + + + Turkmenistan + 1995 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 408175 + + + + Turkmenistan + 1995 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 407401 + + + + Turkmenistan + 1995 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 774 + + + + Turkmenistan + 1995 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 361363 + + + + Turkmenistan + 1995 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 360667 + + + + Turkmenistan + 1995 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 696 + + + + Turkmenistan + 1995 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 347091 + + + + Turkmenistan + 1995 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 346240 + + + + Turkmenistan + 1995 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 851 + + + + Turkmenistan + 1995 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 277200 + + + + Turkmenistan + 1995 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 276395 + + + + Turkmenistan + 1995 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 805 + + + + Turkmenistan + 1995 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 201358 + + + + Turkmenistan + 1995 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 200537 + + + + Turkmenistan + 1995 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 821 + + + + Turkmenistan + 1995 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 124944 + + + + Turkmenistan + 1995 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 124288 + + + + Turkmenistan + 1995 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 656 + + + + Turkmenistan + 1995 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 95612 + + + + Turkmenistan + 1995 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 94643 + + + + Turkmenistan + 1995 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 969 + + + + Turkmenistan + 1995 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 112670 + + + + Turkmenistan + 1995 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 110302 + + + + Turkmenistan + 1995 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 2368 + + + + Turkmenistan + 1995 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 254356 + + + + Turkmenistan + 1995 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 230979 + + + + Turkmenistan + 1995 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 23377 + + + + Turkmenistan + 1995 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 90401 + + + + Turkmenistan + 1995 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 86548 + + + + Turkmenistan + 1995 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3853 + + + + Turkmenistan + 1995 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 72534 + + + + Turkmenistan + 1995 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 68727 + + + + Turkmenistan + 1995 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 3807 + + + + Turkmenistan + 1995 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 91421 + + + + Turkmenistan + 1995 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 75704 + + + + Turkmenistan + 1995 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 15717 + + + + Uganda + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3509035 + 55 + + + Uganda + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 2569581 + 55 + + + Uganda + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 939454 + 55 + + + Uganda + 2002 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 15887760 + 55 + + + Uganda + 2002 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 10839209 + 55 + + + Uganda + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 5048551 + 55 + + + Uganda + 2002 + Total + Both Sexes + 15 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 6658172 + 55 + + + Uganda + 2002 + Total + Both Sexes + 15 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 5102601 + 55 + + + Uganda + 2002 + Total + Both Sexes + 15 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 1555571 + 55 + + + Uganda + 2002 + Total + Both Sexes + 30 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 3265852 + 55 + + + Uganda + 2002 + Total + Both Sexes + 30 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 2100094 + 55 + + + Uganda + 2002 + Total + Both Sexes + 30 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 1165758 + 55 + + + Uganda + 2002 + Total + Both Sexes + 45 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 1353844 + 55 + + + Uganda + 2002 + Total + Both Sexes + 45 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 704687 + 55 + + + Uganda + 2002 + Total + Both Sexes + 45 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 649157 + 55 + + + Uganda + 2002 + Total + Both Sexes + 60 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 806790 + 55 + + + Uganda + 2002 + Total + Both Sexes + 60 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 289463 + 55 + + + Uganda + 2002 + Total + Both Sexes + 60 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 517327 + 55 + + + Uganda + 2002 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2005 + 294067 + 55 + + + Uganda + 2002 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 72783 + 55 + + + Uganda + 2002 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2005 + 221284 + 55 + + + Ukraine + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3416561 + + + + Ukraine + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3212281 + + + + Ukraine + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 200809 + + + + Ukraine + 2001 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3471 + + + + Ukraine + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 43707600 + + + + Ukraine + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 42164383 + + + + Ukraine + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1360668 + + + + Ukraine + 2001 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 182549 + + + + Ukraine + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3891568 + + + + Ukraine + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3865889 + + + + Ukraine + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 16655 + + + + Ukraine + 2001 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9024 + + + + Ukraine + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3489588 + + + + Ukraine + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3459796 + + + + Ukraine + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 12197 + + + + Ukraine + 2001 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 17595 + + + + Ukraine + 2001 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3402010 + + + + Ukraine + 2001 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3376052 + + + + Ukraine + 2001 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9945 + + + + Ukraine + 2001 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 16013 + + + + Ukraine + 2001 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3204103 + + + + Ukraine + 2001 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3178916 + + + + Ukraine + 2001 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8886 + + + + Ukraine + 2001 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 16301 + + + + Ukraine + 2001 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3417079 + + + + Ukraine + 2001 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3386951 + + + + Ukraine + 2001 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9128 + + + + Ukraine + 2001 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 21000 + + + + Ukraine + 2001 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3828331 + + + + Ukraine + 2001 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3800880 + + + + Ukraine + 2001 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9716 + + + + Ukraine + 2001 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 17735 + + + + Ukraine + 2001 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3470419 + + + + Ukraine + 2001 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3445681 + + + + Ukraine + 2001 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8787 + + + + Ukraine + 2001 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 15951 + + + + Ukraine + 2001 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3182588 + + + + Ukraine + 2001 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3159121 + + + + Ukraine + 2001 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9297 + + + + Ukraine + 2001 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 14170 + + + + Ukraine + 2001 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2062711 + + + + Ukraine + 2001 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2038424 + + + + Ukraine + 2001 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 15565 + + + + Ukraine + 2001 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 8722 + + + + Ukraine + 2001 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3364050 + + + + Ukraine + 2001 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3288786 + + + + Ukraine + 2001 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 66106 + + + + Ukraine + 2001 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9158 + + + + Ukraine + 2001 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 2158171 + + + + Ukraine + 2001 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 1985014 + + + + Ukraine + 2001 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 168337 + + + + Ukraine + 2001 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 4820 + + + + Ukraine + 2001 + Total + Both Sexes + 70 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 4800761 + + + + Ukraine + 2001 + Total + Both Sexes + 70 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 3965647 + + + + Ukraine + 2001 + Total + Both Sexes + 70 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 825210 + + + + Ukraine + 2001 + Total + Both Sexes + 70 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 9904 + + + + Ukraine + 2001 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2003 + 19660 + + + + Ukraine + 2001 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 945 + + + + Ukraine + 2001 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2003 + 30 + + + + Ukraine + 2001 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2003 + 18685 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 4365185 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3279445 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1085740 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22863862 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 16123243 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 6740619 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 3374509 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2626426 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 748083 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2978412 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2354013 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 624399 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2686138 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2116460 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 569678 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 2138733 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1696126 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 442607 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1616450 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1238205 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 378245 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1301080 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 873172 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 427908 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 954944 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 577904 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 377040 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 891156 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 463209 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 427947 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 593213 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 284112 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 309101 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 600817 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 235206 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 365611 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1363225 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 378965 + + + + United Republic of Tanzania + 2002 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 984260 + + + + Uruguay + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 256552 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 245301 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3297 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7570 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2827464 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2684825 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 41759 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 100496 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 261691 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 250380 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2229 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9082 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 241006 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 229541 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2004 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 9461 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 228385 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 217522 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2081 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8782 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 233365 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 222538 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2213 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 8614 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 222521 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 213085 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2049 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 7387 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 203098 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 194813 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2004 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 6281 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 198773 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 190971 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2188 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5614 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 194565 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 186461 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2287 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5817 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 173007 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 165036 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2814 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 5157 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 150775 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 143192 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2901 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4682 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 131563 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 124601 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2956 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4006 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 112395 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 105124 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3374 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3897 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 93659 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 86229 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3466 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3964 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 70505 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 63382 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2869 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 4254 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 37426 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 32183 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1862 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3381 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 14113 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 11432 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 843 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 1838 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 3546 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 2667 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 264 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 615 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2013 + 519 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 367 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2013 + 58 + 56 + + + Uruguay + 2011 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2013 + 94 + 56 + + + Uruguay + 1996 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 259795 + + + + Uruguay + 1996 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 254640 + + + + Uruguay + 1996 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 4340 + + + + Uruguay + 1996 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 815 + + + + Uruguay + 1996 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 2629687 + + + + Uruguay + 1996 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 2541689 + + + + Uruguay + 1996 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 80389 + + + + Uruguay + 1996 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 7609 + + + + Uruguay + 1996 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 261467 + + + + Uruguay + 1996 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 257292 + + + + Uruguay + 1996 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 3688 + + + + Uruguay + 1996 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 487 + + + + Uruguay + 1996 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 244489 + + + + Uruguay + 1996 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 240414 + + + + Uruguay + 1996 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 3480 + + + + Uruguay + 1996 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 595 + + + + Uruguay + 1996 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 217230 + + + + Uruguay + 1996 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 213760 + + + + Uruguay + 1996 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 2994 + + + + Uruguay + 1996 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 476 + + + + Uruguay + 1996 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 217361 + + + + Uruguay + 1996 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 213548 + + + + Uruguay + 1996 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 3343 + + + + Uruguay + 1996 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 470 + + + + Uruguay + 1996 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 211019 + + + + Uruguay + 1996 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 207182 + + + + Uruguay + 1996 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 3404 + + + + Uruguay + 1996 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 433 + + + + Uruguay + 1996 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 191636 + + + + Uruguay + 1996 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 186970 + + + + Uruguay + 1996 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 4189 + + + + Uruguay + 1996 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 477 + + + + Uruguay + 1996 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 172040 + + + + Uruguay + 1996 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 167302 + + + + Uruguay + 1996 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 4265 + + + + Uruguay + 1996 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 473 + + + + Uruguay + 1996 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 158037 + + + + Uruguay + 1996 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 153132 + + + + Uruguay + 1996 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 4471 + + + + Uruguay + 1996 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 434 + + + + Uruguay + 1996 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 147679 + + + + Uruguay + 1996 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 141428 + + + + Uruguay + 1996 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 5784 + + + + Uruguay + 1996 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 467 + + + + Uruguay + 1996 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 144091 + + + + Uruguay + 1996 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 136719 + + + + Uruguay + 1996 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 6852 + + + + Uruguay + 1996 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 520 + + + + Uruguay + 1996 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 135641 + + + + Uruguay + 1996 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 127366 + + + + Uruguay + 1996 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 7762 + + + + Uruguay + 1996 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 513 + + + + Uruguay + 1996 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 105760 + + + + Uruguay + 1996 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 97728 + + + + Uruguay + 1996 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 7594 + + + + Uruguay + 1996 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 438 + + + + Uruguay + 1996 + Total + Both Sexes + 75 + + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 163442 + + + + Uruguay + 1996 + Total + Both Sexes + 75 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 144208 + + + + Uruguay + 1996 + Total + Both Sexes + 75 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 18223 + + + + Uruguay + 1996 + Total + Both Sexes + 75 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 1011 + + + + Uruguay + 1996 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 1997 + 0 + + + + Uruguay + 1996 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 0 + + + + Uruguay + 1996 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 1997 + 0 + + + + Uruguay + 1996 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 1997 + 0 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2516779 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2454290 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 62489 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 22387935 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 21286229 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1101706 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2641320 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2580251 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 61069 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2560649 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2494746 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 65903 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2344332 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2281061 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 63271 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2219741 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 2149895 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 69846 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1905253 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1837913 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 67340 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1755490 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1685442 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 70048 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1528781 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1454920 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 73861 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1337934 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1256334 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 81600 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1108799 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 1027356 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 81443 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 848358 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 768720 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 79638 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 568688 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 491479 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 77209 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 410455 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 336091 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 74364 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 292992 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 225612 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 67380 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 188895 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 137870 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 51025 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 104141 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 71231 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 32910 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 40370 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 25115 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 15255 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 95 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2016 + 14958 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 95 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7903 + + + + Venezuela (Bolivarian Republic of) + 2011 + Total + Both Sexes + 95 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2016 + 7055 + + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 2513224 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 2441696 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 71528 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 17932872 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 16778859 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 1154013 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 2300721 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 2240998 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 59723 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 2170254 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 2104760 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 65494 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 25 - 34 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 3629093 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 25 - 34 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 3500464 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 25 - 34 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 128629 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 35 - 44 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 3005839 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 35 - 44 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 2848221 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 35 - 44 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 157618 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 45 - 54 + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 2075050 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 45 - 54 + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 1906824 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 45 - 54 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 168226 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 55 + + Total + Census - de facto - complete tabulation + Provisional figure + 2002 + 2238691 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 55 + + Literate + Census - de facto - complete tabulation + Provisional figure + 2002 + 1735896 + 57 + + + Venezuela (Bolivarian Republic of) + 2001 + Total + Both Sexes + 55 + + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2002 + 502795 + 57 + + + Viet Nam + 2009 + Total + Both Sexes + 15 - 17 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5236771 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 - 17 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 5125356 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 - 17 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 109040 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 - 17 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2375 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 64853738 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 60881611 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3904391 + + + + Viet Nam + 2009 + Total + Both Sexes + 15 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 67736 + + + + Viet Nam + 2009 + Total + Both Sexes + 18 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3727131 + + + + Viet Nam + 2009 + Total + Both Sexes + 18 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 3631521 + + + + Viet Nam + 2009 + Total + Both Sexes + 18 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 93095 + + + + Viet Nam + 2009 + Total + Both Sexes + 18 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 2515 + + + + Viet Nam + 2009 + Total + Both Sexes + 20 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 16222870 + + + + Viet Nam + 2009 + Total + Both Sexes + 20 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 15585802 + + + + Viet Nam + 2009 + Total + Both Sexes + 20 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 625445 + + + + Viet Nam + 2009 + Total + Both Sexes + 20 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11623 + + + + Viet Nam + 2009 + Total + Both Sexes + 30 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13399765 + + + + Viet Nam + 2009 + Total + Both Sexes + 30 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 12639518 + + + + Viet Nam + 2009 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 749514 + + + + Viet Nam + 2009 + Total + Both Sexes + 30 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 10733 + + + + Viet Nam + 2009 + Total + Both Sexes + 40 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 11417784 + + + + Viet Nam + 2009 + Total + Both Sexes + 40 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 10855046 + + + + Viet Nam + 2009 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 554818 + + + + Viet Nam + 2009 + Total + Both Sexes + 40 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 7920 + + + + Viet Nam + 2009 + Total + Both Sexes + 50 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2011 + 14849417 + + + + Viet Nam + 2009 + Total + Both Sexes + 50 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 13044368 + + + + Viet Nam + 2009 + Total + Both Sexes + 50 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2011 + 1772479 + + + + Viet Nam + 2009 + Total + Both Sexes + 50 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2011 + 32570 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 9066562 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8673323 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 390446 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2793 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 60117769 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 54746873 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5351918 + + + + Viet Nam + 1999 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 18978 + + + + Viet Nam + 1999 + Total + Both Sexes + 15 - 17 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 5204065 + + + + Viet Nam + 1999 + Total + Both Sexes + 15 - 17 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 4955202 + + + + Viet Nam + 1999 + Total + Both Sexes + 15 - 17 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 248031 + + + + Viet Nam + 1999 + Total + Both Sexes + 15 - 17 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 832 + + + + Viet Nam + 1999 + Total + Both Sexes + 18 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 3018215 + + + + Viet Nam + 1999 + Total + Both Sexes + 18 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2826861 + + + + Viet Nam + 1999 + Total + Both Sexes + 18 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 190613 + + + + Viet Nam + 1999 + Total + Both Sexes + 18 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 741 + + + + Viet Nam + 1999 + Total + Both Sexes + 20 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 13493561 + + + + Viet Nam + 1999 + Total + Both Sexes + 20 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 12601201 + + + + Viet Nam + 1999 + Total + Both Sexes + 20 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 889593 + + + + Viet Nam + 1999 + Total + Both Sexes + 20 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2767 + + + + Viet Nam + 1999 + Total + Both Sexes + 30 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 11620326 + + + + Viet Nam + 1999 + Total + Both Sexes + 30 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10980943 + + + + Viet Nam + 1999 + Total + Both Sexes + 30 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 637458 + + + + Viet Nam + 1999 + Total + Both Sexes + 30 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1925 + + + + Viet Nam + 1999 + Total + Both Sexes + 40 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7687318 + + + + Viet Nam + 1999 + Total + Both Sexes + 40 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7182224 + + + + Viet Nam + 1999 + Total + Both Sexes + 40 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 503386 + + + + Viet Nam + 1999 + Total + Both Sexes + 40 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 1708 + + + + Viet Nam + 1999 + Total + Both Sexes + 50 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2009 + 10027722 + + + + Viet Nam + 1999 + Total + Both Sexes + 50 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 7527119 + + + + Viet Nam + 1999 + Total + Both Sexes + 50 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2009 + 2492391 + + + + Viet Nam + 1999 + Total + Both Sexes + 50 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2009 + 8212 + + + + Zambia + 2010 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1699042 + + + + Zambia + 2010 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1286479 + + + + Zambia + 2010 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 412563 + + + + Zambia + 2010 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 8455091 + + + + Zambia + 2010 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 6894518 + + + + Zambia + 2010 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1560573 + + + + Zambia + 2010 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1427884 + + + + Zambia + 2010 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1293592 + + + + Zambia + 2010 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 134292 + + + + Zambia + 2010 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1117476 + + + + Zambia + 2010 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 964513 + + + + Zambia + 2010 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 152963 + + + + Zambia + 2010 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 1006244 + + + + Zambia + 2010 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 840510 + + + + Zambia + 2010 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 165734 + + + + Zambia + 2010 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 800770 + + + + Zambia + 2010 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 673721 + + + + Zambia + 2010 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 127049 + + + + Zambia + 2010 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 647813 + + + + Zambia + 2010 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 541253 + + + + Zambia + 2010 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 106560 + + + + Zambia + 2010 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 447584 + + + + Zambia + 2010 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 369981 + + + + Zambia + 2010 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 77603 + + + + Zambia + 2010 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 354989 + + + + Zambia + 2010 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 288808 + + + + Zambia + 2010 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 66181 + + + + Zambia + 2010 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 270254 + + + + Zambia + 2010 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 213161 + + + + Zambia + 2010 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 57093 + + + + Zambia + 2010 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 184828 + + + + Zambia + 2010 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 140814 + + + + Zambia + 2010 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 44014 + + + + Zambia + 2010 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 161875 + + + + Zambia + 2010 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 105635 + + + + Zambia + 2010 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 56240 + + + + Zambia + 2010 + Total + Both Sexes + 65 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2014 + 336332 + + + + Zambia + 2010 + Total + Both Sexes + 65 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 176051 + + + + Zambia + 2010 + Total + Both Sexes + 65 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2014 + 160281 + + + + Zambia + 2000 + Total + Both Sexes + 5 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2007 + 8190571 + + + + Zambia + 2000 + Total + Both Sexes + 5 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 7680705 + + + + Zambia + 2000 + Total + Both Sexes + 5 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2007 + 509866 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1512232 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1491650 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20505 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 - 14 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 77 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8421284 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 7782502 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 630271 + + + + Zimbabwe + 2002 + Total + Both Sexes + 10 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 8511 + + + + Zimbabwe + 2002 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1503561 + + + + Zimbabwe + 2002 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1485836 + + + + Zimbabwe + 2002 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 17493 + + + + Zimbabwe + 2002 + Total + Both Sexes + 15 - 19 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 232 + + + + Zimbabwe + 2002 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1222882 + + + + Zimbabwe + 2002 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1204129 + + + + Zimbabwe + 2002 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 18341 + + + + Zimbabwe + 2002 + Total + Both Sexes + 20 - 24 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 412 + + + + Zimbabwe + 2002 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 987737 + + + + Zimbabwe + 2002 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 967517 + + + + Zimbabwe + 2002 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 19700 + + + + Zimbabwe + 2002 + Total + Both Sexes + 25 - 29 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 520 + + + + Zimbabwe + 2002 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 730085 + + + + Zimbabwe + 2002 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 706892 + + + + Zimbabwe + 2002 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22747 + + + + Zimbabwe + 2002 + Total + Both Sexes + 30 - 34 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 446 + + + + Zimbabwe + 2002 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 504469 + + + + Zimbabwe + 2002 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 463470 + + + + Zimbabwe + 2002 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40491 + + + + Zimbabwe + 2002 + Total + Both Sexes + 35 - 39 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 508 + + + + Zimbabwe + 2002 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 434407 + + + + Zimbabwe + 2002 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 373037 + + + + Zimbabwe + 2002 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 60679 + + + + Zimbabwe + 2002 + Total + Both Sexes + 40 - 44 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 691 + + + + Zimbabwe + 2002 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 356580 + + + + Zimbabwe + 2002 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 300841 + + + + Zimbabwe + 2002 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 54990 + + + + Zimbabwe + 2002 + Total + Both Sexes + 45 - 49 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 749 + + + + Zimbabwe + 2002 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 301238 + + + + Zimbabwe + 2002 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 234721 + + + + Zimbabwe + 2002 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 65764 + + + + Zimbabwe + 2002 + Total + Both Sexes + 50 - 54 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 753 + + + + Zimbabwe + 2002 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 210907 + + + + Zimbabwe + 2002 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 160611 + + + + Zimbabwe + 2002 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 49717 + + + + Zimbabwe + 2002 + Total + Both Sexes + 55 - 59 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 579 + + + + Zimbabwe + 2002 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 193859 + + + + Zimbabwe + 2002 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 136564 + + + + Zimbabwe + 2002 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 56820 + + + + Zimbabwe + 2002 + Total + Both Sexes + 60 - 64 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 475 + + + + Zimbabwe + 2002 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 132143 + + + + Zimbabwe + 2002 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 88131 + + + + Zimbabwe + 2002 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 43673 + + + + Zimbabwe + 2002 + Total + Both Sexes + 65 - 69 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 339 + + + + Zimbabwe + 2002 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 122761 + + + + Zimbabwe + 2002 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 71448 + + + + Zimbabwe + 2002 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 50987 + + + + Zimbabwe + 2002 + Total + Both Sexes + 70 - 74 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 326 + + + + Zimbabwe + 2002 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 64456 + + + + Zimbabwe + 2002 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 34804 + + + + Zimbabwe + 2002 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 29407 + + + + Zimbabwe + 2002 + Total + Both Sexes + 75 - 79 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 245 + + + + Zimbabwe + 2002 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 59025 + + + + Zimbabwe + 2002 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 27432 + + + + Zimbabwe + 2002 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 31363 + + + + Zimbabwe + 2002 + Total + Both Sexes + 80 - 84 + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 230 + + + + Zimbabwe + 2002 + Total + Both Sexes + 85 + + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 40700 + + + + Zimbabwe + 2002 + Total + Both Sexes + 85 + + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 15152 + + + + Zimbabwe + 2002 + Total + Both Sexes + 85 + + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 25299 + + + + Zimbabwe + 2002 + Total + Both Sexes + 85 + + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 249 + + + + Zimbabwe + 2002 + Total + Both Sexes + Unknown + Total + Census - de facto - complete tabulation + Final figure, complete + 2007 + 44242 + + + + Zimbabwe + 2002 + Total + Both Sexes + Unknown + Literate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 20267 + + + + Zimbabwe + 2002 + Total + Both Sexes + Unknown + Illiterate + Census - de facto - complete tabulation + Final figure, complete + 2007 + 22295 + + + + Zimbabwe + 2002 + Total + Both Sexes + Unknown + Unknown + Census - de facto - complete tabulation + Final figure, complete + 2007 + 1680 + + + + + Data refer to population in housing units and collective living quarters only. + Because of rounding, totals are not in all cases the sum of the respective components. + Data have not been adjusted for underenumeration, estimated at 4.96 per cent. + Data include persons in remote areas, military personnel outside the country, merchant seamen at sea, civilian seasonal workers outside the country, and other civilians outside the country, and exclude nomads, foreign military, civilian aliens temporarily in the country, transients on ships and Indian jungle population. + For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan province of China. + Data refer to the civilian population of 31 provinces, municipalities and autonomous regions. + Data are estimates from the detailed sample enquiry of about one-tenth households in the Hong Kong 2021 Population Census. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. + Data are estimates from sample enquiry. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. + Population by-census is conducted between two population censuses, adopting a sampling method to select 29,421 housing units in Macao for enumeration, with the unit of observation being the individuals residing in the selected housing units. + Data refer to government controlled areas. + Including all persons irrespective of citizenship, who at the time of the census resided in the country or intended to reside for a period of at least one year. It does not distinguish between those present or absent at the time of census. + Excludes nomadic Indian tribes. + Data refer to usual resident population. + Data from Estonian Education Information System. + Data for certain cells suppressed by national statistical office for confidentiality reasons. + Including pre-primary education. + Excluding Mao-Maram, Paomata and Purul sub-divisions of Senapati district of Manipur. The population of Manipur including the estimated population of the three sub-divisions of Senapati district is 2,291,125 (Males 1,161,173 and females 1,129,952). + Includes data for the Indian-held part of Jammu and Kashmir, the final status of which has not yet been determined. + Excluding Province Nanggroe Aceh Darussalam, Regency Nias & Nias Selatan, Regency Boven Digul & Teluk Wondama. + Data refer to the "Intercensal Population Survey". + Data refer to literacy in Kiribati language. + Age classification is based on the difference between the year of birth and the year of the census, rather than on completed years of age. + Excludes the islands of St. Brandon and Agalega. + Data comprise mostly residents of institutions and collective quarters. + Data have been adjusted for underenumeration, estimated at 5.1 per cent. + Data refer to population in conventional households only. + E-census data based 100% on administrative registers. + Excluding data for Azad Jammu and Kashmir, and Gilgit Baltistan. + Excluding data for the Pakistan-held part of Jammu and Kashmir, the final status of which has not yet been determined. + Population in households only. + Including armed forces stationed in the area. + Tiraspol, Bender, Slobozia, Ribnita, Camenca Yrigoricpol/Grigoriopol are districts from Transnistria where the census was not conducted. + Excludes non-residents present in country at time of census (visitors, foreigners temporarily residing in country, etc.). + Excluding non-residents present in country at time of census. + Data refer to the persons who declared they could not read or write, or those who could only read. + Data refer to Saint Helenian resident population. + Excludes data for Kosovo and Metohia. + Data have not been adjusted for underenumeration, estimated at 2.4 per cent. + Data are based on the latest register-based population estimates for 2020. + Data refer to resident population which comprises Singapore citizens and permanent residents. + Data are based on the latest register-based population estimates for 2010. + Everyone is assumed literate as school attendance is mandatory. + Data have been adjusted for underenumeration, estimated at 10.69 per cent. + Data exclude population in collective living quarters. + The Population and Housing Census 2001 did not cover the whole area of the country due to the security problems; data refer to the 18 districts for which the census was completed only (in three districts it was not possible to conduct the census at all and in four districts it was partially conducted). + Excluding data from the parts of Jerusalem which were annexed by Israel in 1967. + Data have not been adjusted for underenumeration. + Total population does not include Palestinian population living in those parts of Jerusalem governorate which were annexed by Israel in 1967, amounting to 210 209 persons. Likewise, the results does not include the estimates of not enumerated population based on the findings of the post enumeration study, i.e 83 805 persons. + Excluding the institutional population. + All persons falling within the scope of the census were enumerated on a de jure basis, except students who were enumerated on a de facto basis. + Data refer to population in private households. + Data refer to usually resident population present on census night. + Based on a sample taken at the time of census. + The figures were calculated by dividing and rounding to thousand. Therefore, “0” may indicate value of less than 500. + Excluding population enumerated in hotels. + Excluding homeless persons. + Excluding Indian jungle population. + + \ No newline at end of file diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/TestAddPopulationData.java b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/TestAddPopulationData.java new file mode 100644 index 00000000000..b2648bed38f --- /dev/null +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/TestAddPopulationData.java @@ -0,0 +1,27 @@ +package org.unicode.cldr.tool; + +import static org.junit.jupiter.api.Assertions.assertFalse; + +import com.ibm.icu.util.Output; +import java.io.IOException; +import java.util.List; +import org.junit.jupiter.api.Test; +import org.unicode.cldr.util.Pair; + +public class TestAddPopulationData { + @Test + public void TestParseUnStats() throws IOException { + Output err = new Output<>(false); + // this is already run once during static init. we run it again to capture err value + List> unLiteracy = AddPopulationData.getUnLiteracy(err); + assertFalse( + err.value, + "getUnLiteracy() returned errs - check err log for 'ERROR: CountryCodeConverter'"); + assertFalse(unLiteracy.isEmpty(), "un literacy shouldn't be empty"); + // optionally dump out values + if (false) + for (final Pair p : unLiteracy) { + System.out.println(p.getFirst() + " - " + p.getSecond()); + } + } +}