Skip to main content

Oscars 2021:List of winners and nominees

 After being pushed back by two months, the 93rd Academy Awards were held on Sunday. The show was broadcast from two locations in Los Angeles: The Dolby Theatre and Union Station. Once again, there was no host for the ceremony.


Check out the full list of nominees and winners below.

oscars 2021 oscars 2021 winners oscars live oscars winners oscars 2021 india oscars academy awards oscars awards oscars all winners oscars best actor oscars best picture oscars best movie oscars best dressed oscars best director



Also read :- Karnataka news Lockdown From Tomorrow For 2 Weeks, Essentials From 6-10 AM


Best Picture

  • "Nomadland" — Winner
  • "The Father"
  • "Judas and the Black Messiah"
  • "Mank"
  • "Minari"
  • "Promising Young Woman"
  • "Sound of Metal"
  • "The Trial of the Chicago 7"

Best Director

  • Chloé Zhao, "Nomadland" — Winner
  • Thomas Vinterberg, "Another Round"
  • David Fincher, "Mank"
  • Lee Isaac Chung, "Minari"
  • Emerald Fennell, "Promising Young Woman"

Actress in a Leading Role

  • Frances McDormand, "Nomadland" — Winner
  • Viola Davis, "Ma Rainey's Black Bottom"
  • Andra Day, "The United States vs. Billie Holiday"
  • Vanessa Kirby, "Pieces of a Woman"
  • Carey Mulligan, "Promising Young Woman"

Actor in a Leading Role

  • Anthony Hopkins, "The Father" — Winner
  • Riz Ahmed, "Sound of Metal"
  • Chadwick Boseman, "Ma Rainey's Black Bottom"
  • Gary Oldman, "Mank"
  • Steven Yeun, "Minari"

Actress in a Supporting Role

  • Yuh-jung Youn, "Minari" — Winner
  • Maria Bakalova, "Borat Subsequent Moviefilm"
  • Glenn Close, "Hillbilly Elegy"
  • Olivia Colman, "The Father"
  • Amanda Seyfried, "Mank"

Actor in a Supporting Role

  • Daniel Kaluuya, "Judas and the Black Messiah" — Winner
  • Sacha Baron Cohen, "The Trial of the Chicago 7"
  • Leslie Odom Jr., "One Night in Miami…"
  • Paul Raci, "Sound of Metal"
  • LaKeith Stanfield, "Judas and the Black Messiah"

Original Song

  • "Fight For You" from "Judas and the Black Messiah" — Winner
  • "Hear My Voice" from "The Trial of the Chicago 7"
  • "Husavik" from "Eurovision Song Contest: The Story of Fire Saga"
  • "lo Sì (Seen)" from "The Life Ahead (La Vita Davanti a Se)"
  • "Speak Now" from "One Night in Miami..."

Animated Feature Film

  • "Soul" — Winner
  • "Onward"
  • "Over the Moon"
  • "A Shaun the Sheep Movie: Farmageddon"
  • "Wolfwalkers"

Makeup and Hairstyling

  • "Ma Rainey's Black Bottom" — Winner
  • "Emma."
  • "Hillbilly Elegy"
  • "Mank"
  • "Pinocchio"

Visual Effects

  • "Tenet" — Winner
  • "Love and Monsters"
  • "The Midnight Sky"
  • "Mulan"
  • "The One and Only Ivan"

Cinematography

  • "Mank" — Winner
  • "Judas and the Black Messiah"
  • "News of the World"
  • "Nomadland"
  • "The Trial of the Chicago 7"

Film Editing

  • "Sound of Metal" — Winner
  • "The Father"
  • "Nomadland"
  • "Promising Young Woman"
  • "The Trial of the Chicago 7"

Production Design

  • "Mank" — Winner
  • "The Father"
  • "Ma Rainey's Black Bottom"
  • "News of the World"
  • "Tenet"

Sound

  • "Sound of Metal" — Winner
  • "Greyhound"
  • "Mank"
  • "News of the World"
  • "Soul"

International Feature Film

  • Denmark, "Another Round" — Winner
  • Hong Kong, "Better Days" 
  • Romania, "Collective"
  • Tunisia, "The Man Who Sold His Skin"
  • Bosnia and Herzegovina, "Quo Vadis, Aida?"

Documentary Short Subject

  • "Colette" — Winner
  • "A Concerto Is a Conversation"
  • "Do Not Split"
  • "Hunger Ward"
  • "A Love Song for Latasha"

Documentary Feature

  • "My Octopus Teacher" — Winner
  • "Collective"
  • "Crip Camp"
  • "The Mole Agent"
  • "Time"

Live Action Short Film

  • "Two Distant Strangers" — Winner
  • "Feeling Through"
  • "The Letter Room"
  • "The Present"
  • "White Eye"

Animated Short Film

  • "If Anything Happens I Love You" — Winner
  • "Burrow"
  • "Genius Loci"
  • "Opera"
  • "Yes-People"

Original Screenplay

  • Emerald Fennell, "Promising Young Woman" — Winner
  • Screenplay by Will Berson and Shaka King; story by Will Berson, Shaka King, Kenny Lucas and Keith Lucas, "Judas and the Black Messiah"
  • Lee Isaac Chung, "Minari"
  • Screenplay by Darius Marder and Abraham Marder; story by Darius Marder and Derek Cianfrance, "Sound of Metal"
  • Aaron Sorkin, "The Trial of the Chicago 7"

Adapted Screenplay

  • Christopher Hampton and Florian Zeller, "The Father" — Winner
  • Screenplay by Sacha Baron Cohen, Anthony Hines, Dan Swimer, Peter Baynham, Erica Rivinoja, Dan Mazer, Jena Friedman and Lee Kern; story by Sacha Baron Cohen, Anthony Hines, Dan Swimer and Nina Pedrad, "Borat Subsequent Moviefilm"
  • Chloé Zhao, "Nomadland"
  • Kemp Powers, "One Night in Miami…"
  • Ramin Bahrani, "The White Tiger"

Original Score

  • "Soul" — Winner
  • "Da 5 Bloods"
  • "Mank"
  • "Minari"
  • "News of the World"

Costume Design

  • "Ma Rainey's Black Bottom" — Winner
  • "Emma."
  • "Mank"
  • "Mulan"
  • "Pinocchio"


Source:-  Internet




All image on blog easily available on internet

Comments

Popular posts from this blog

MAKE HTTP REQUEST IN Java Script | codes

  You can make an HTTP request in JavaScript using the XMLHttpRequest object or the fetch API. Using XMLHttpRequest : javascript Copy code const xhr = new XMLHttpRequest (); xhr. open ( 'GET' , 'https://example.com/api/data' , true ); xhr. onload = function ( ) { if (xhr. status === 200 ) { const response = JSON . parse (xhr. responseText ); console . log (response); } }; xhr. onerror = function ( ) { console . error ( 'Request error' ); }; xhr. send (); Using fetch : javascript Copy code fetch ( 'https://example.com/api/data' ) . then ( response => response. json ()) . then ( data => console . log (data)) . catch ( error => console . error ( 'Fetch error:' , error)); Both methods allow you to send requests and handle responses, but the fetch API is newer and more streamlined, while XMLHttpRequest is more versatile and supports features like aborting a request.

How to remove pimples naturally and permanently in one day at home

 Stains and stubborn pimples that appear on the face, along with spoiling beauty, also work to reduce your confidence.  If you are also troubled by stubborn pimples then leave tension and adopt this effective solution. Let us know what are these remedies. The stains and stubborn pimples that appear on the face, along with spoiling the beauty, also work to reduce your confidence. Pimples can appear on the face anytime between the age of 14 to 30 years. The person has a lot of trouble while the pimples are coming out. Which later appear as white, black and burning red spots on the face. If you are also troubled by stubborn pimples then leave tension and adopt this effective solution. Let's know what are these solutions.  Why do pimples come out?  Acne begins to appear on the face when oil and deadskin are gathered in the pores of the skin. In fact, when the secretion from fat glands (sibbius glands) sto...

Download gta 5 highly compressed free download pc no survey

Grand Theft Auto V (GTA 5), for PC, download for pc, full version game, full pc game, Compressed , RIp Version How to download  Gta 5 highly compressed free download no survey GTA 5 for the Popular Game! You can download it easily. GTA 5 Action Full Game! Kalyan result Let me tell you how you can download GTA 5 highly compressed game? First! Go to this website. Search on GTA 5! Click call first post.   After that, go down. After that download all the parts of gta5. To extract the file after downloading. Enter this password Thank you! And enjoy! Note:- open website at your own risk Also read :-   Download Radhe Movie कोरोना के कारण फंगल संक्रमण Gta 5 download apk Gta 4 Download for pc नए कोविड स्ट्रेन लक्षण मूल से अलग कैसे हैं Karma Book by Sadhguru वैक्सीन के दोनों डोज लगे हों तो भी कोरोना हो सकता है Coronavirus nibandh in hindi  Best Cryptocurrency to invest  कोरोना वायरस से बचाव हेतु सुझाव Three antibiotics drugs    what is satta game ...