SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

await.result(fetch())

await.result(fetch())
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

result = fetch().await()

result = fetch().await()
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified Correct Answer

result = await fetch()

result = await fetch()
Additional Explanation
Coroutine को async context में await किया जाता है।
Verified

result = async fetch()

result = async fetch()
Additional Explanation
यह विकल्प सही समाधान नहीं है।