Miss USA 1965

Miss USA 1965, the 14th Miss USA pageant, took place in Miami Beach, Florida on June 4, 1965. This was the first Miss USA pageant to be televised live (on the CBS network), and the first to be a self-contained production, held several weeks before, and independent of, the Miss Universe pageant.

Miss USA 1965
DateJune 4, 1965
VenueMiami Beach, Florida
BroadcasterCBS
Entrants47
Placements15
WinnerSue Downey
Ohio
Congeniality Elizabeth Carroll
Bonnie Perkins
Best State Costume Carla Sullivan
Photogenic Cheryl Semrad

The pageant was won by Sue Downey of Ohio, who was crowned by outgoing titleholder Bobbi Johnson of the District of Columbia. Downey went on to place as 2nd runner-up to Apasra Hongsakula of Thailand at Miss Universe 1965. Pageant finalist Dianna Lynn Batts (better known as Dian Parkinson from The Price Is Right) later won the 1965 Miss World USA title, and placed 1st runner-up to Lesley Langley of the United Kingdom at Miss World 1965.

Results

Final results Contestant
Miss USA 1965
1st runner-up
2nd runner-up
3rd runner-up
4th runner-up
Top 15

Special awards

Award Contestant
Miss Congeniality
Miss Photogenic
Best State Costume

Historical significance

Delegates

The Miss USA 1965 delegates were:

No state delegate: Idaho, South Dakota, Washington, West Virginia

gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.