RPA Study Zone C# Quiz C# Fundamentals You will be given 10 random questions.Good luck! Category: C# Basics 1. What does _ represent in a switch expression? case default continue onto next line it doesn't mean anything case null Category: C# Basics 2. Which of the following lines of code uses the addition assignment operator? value += 5; value++; value = value + 5; Category: C# Basics 3. What does 10 ^ 3 return? 3.3333 9 6 1000 Category: C# Basics 4. What is the result of the following?int result = 3 + 1 * 5 / 2; 10 6 5 Category: C# Basics 5. Only accessible from within same assembly public protected internal private file Category: C# Basics 6. 0 / -3 returns what? NegativeInfinity 0 -0 NaN Category: C# Basics 7. int x = 3;int y = 2 + ++x;What are the values of x and y? x = 3 and y = 3 x = 5 and y = 7 x = 3 and y = 6 x = 4 and y = 6 Category: C# Basics 8. Default access modifier for a class protected private file internal public Category: C# Basics 9. x= ++y;what is x? x is equal to y x is 1 more than y x is 1 less than y Category: C# Basics 10. What happens when you divide a zero double value by 0? 0 DivideByZeroException PositiveInfinity NaN Your score isThe average score is 0% 0% Restart quiz