Miss India Worldwide 2012
Miss India Worldwide 2012 was the 21st edition of the international female pageant. The final was held in Paramaribo, Suriname on February 25, 2012. About 35 countries were represented in the pageant. Alana Seebarran[1] of Guyana crowned as winner at the end of the event.
Miss India Worldwide 2012 | |
---|---|
Date | February 25, 2012 |
Venue | Paramaribo, Suriname |
Entrants | 35 |
Placements | 11 |
Winner | Alana Seebarran |
Congeniality | Sharmisttha Yoogan |
Photogenic | Uraysha Ramrachia |
Results
Final result | Contestant |
---|---|
Miss India Worldwide 2012 | |
1st runner-up |
|
2nd runner-up |
|
Top 5 |
|
Semi-finalists |
|
Special awards
Award | Name | Country |
---|---|---|
Miss Photogenic | Uraysha Ramrachia | |
Miss Congeniality | Sharmisttha Yoogan | |
Best Talent | Alana Seebarran | |
Miss Beautiful Figure | Eram Karim | |
Miss Beautiful Face | Anvita Sudarshan | |
Miss Beautiful Eyes | Chandal Kaur | |
Miss Beautiful Hair | Ankita Arora | |
Most Beautiful Smile | Shreeya Chawla | |
Most Beautiful Skin | Varsha Ramrattan | |
Miss Professional | Veebha Sharma | |
Miss Catwalk | Lizann Lourdes Afonso | |
Miss Bollywood Diva | Deana Uppal |
Delegates
Australia – Olivia Rose Bahrain – Natasha Adil Katrik Barbados – Tanha Dil Canada – Shreeya Chawla France – Christina Suthanthara French Guiana – Wirasha Kasi Germany – Leonie Singh Dhillon Guadeloupe – Seetha Doulayram Guyana – Alana Seebarran India – Eram Karim Ireland – Komal Udani Italy – Ankita Arora Jamaica – Shannell Brown Kuwait – Anvita Sudarshan Malaysia – Sharmisttha Yoogan Martinique – Sanjna Reinette Mauritius – Uraysha Ramrachia Netherlands – Charisma Dihal New Zealand – Madhu Ramasubramanian Qatar – Veebha Sharma Scotland – Rameet Kaur Sint Maarten – Sheha Idnani Singapore – Kavita Sonapal Kaur South Africa – Sheina Gokool Spain – Vinatha Sreeramkumar Sri Lanka – Lavanya Kunalingam Suriname – Varsha Ramrattan Switzerland – Sharmila Singh Thailand – Komal Gandhi Trinidad – Raivatie Usha Sooknanan Uganda – Ruchi Vohra Dubai – Lizann Lourdes Afonso United Kingdom – Deana Uppal United States – Chandal Kaur - Virgin Island – Monica Vaswani
gollark: That's the compiler.
gollark: Yep!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
gollark: <@!341618941317349376> is being stupid.
References
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.