Multiple choice technology programming languages Which among the following is a valid syntax defining a delegate delegate {TheMethod( int Z) } delegate void TheMethod(int Z) ; delegate: TheMethod (int Z) delegate: {TheMethod (int Z)} Reveal answer Fill a bubble to check yourself B Correct answer Explanation The correct delegate declaration syntax in C# is 'delegate returnType MethodName(parameters)'. Option B shows this correctly: 'delegate void TheMethod(int Z)'. The other options use incorrect syntax with braces, colons, or missing return types.