AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: You have an Azure AI Speech service resource azure video

Question 1 Be Honest
« Back   Next azure Cloud ai-102-ai-engineer-assoc Question »
Answer

Full Certification Question

You have an Azure AI Speech service resource named Resource1. You call Resource1 by running the following C# code. static async Task SynthesizeAudioAsync ( dynamic input ) { var speechConfig = SpeechConfig . FromSubscription ( "YourSpeechKey" , "YourSpeechRegion" ); using var audioConfig = AudioConfig . FromWavFileOutput ( "path/to/file.wav" ); using var speechSynthesizer = new SpeechSynthesizer ( speechConfig , audioConfig ); await speechSynthesizer . SpeakTextAsync ( input ); } For the following statement, select Yes if the statement is true. Otherwise, select No. “The function will fail if there is an existing file named File.wav.”