csharp_introduction_expressions_tasks.md - brainchildservices/curriculum GitHub Wiki
SLIDE-1
-
In an expression with multiple operators, the operators with higher precedence are evaluated before the operators with lower precedence. What change the order of evaluation imposed by operator precedence in below C# expression ?
var a = 2 + 2 * 2; //output should be 8.
SLIDE-2
- Write a C# expression to add 3 different texts?
SLIDE-3
- Create C# expression to get a line of string statement where adding two texts and one already defined integer getting added?