RPA Study Zone C# Quiz C# Fundamentals You will be given 10 random questions.Good luck! Category: C# Basics 1. int x = 3;int y = 2 + ++x;What are the values of x and y? x = 3 and y = 3 x = 4 and y = 6 x = 5 and y = 7 x = 3 and y = 6 Category: C# Basics 2. An object must implement what interface in order to use foreach? IComparable IDisposable IEnumerable System Category: C# Basics 3. What is 0.0 / -3.0 ? 0 -0 NegativeInfinity NaN Category: C# Basics 4. What does 10 | 7 return? 1.4285 13 15 2 Category: C# Basics 5. Which of the following lines of code uses the addition assignment operator? value++; value = value + 5; value += 5; Category: C# Basics 6. What does 10 >> 1 return? .01 10 100 5 Category: C# Basics 7. What happens when you divide a positive double value by 0? PositiveInfinity NaN DivideByZeroException -0 Category: C# Basics 8. what does 3 << 2 return? 6 1 12 .003 Category: C# Basics 9. What's the purpose of abstraction in C#? To prevent inheritance in a class. To make all methods static. To hide certain details and show only the essential information. To allow direct access to all class members. Category: C# Basics 10. Only accessible within the class protected file private public internal Your score isThe average score is 0% 0% Restart quiz