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 generate an audio file based on the input text.”