0
C#/.NET Interview Questions
I have an interview for a junior level software developer position soon and I wanted to know what are some of the basic/entry-level C#/.NET Interview Questions that could be asked.
1 Odpowiedź
0
I can remember two that my old teacher once told me he used to ask.
1.) Given the string "abcde", print it in reverse order.
2.) For all numbers from 100-999, find all the numbers that when each digit is cubed, then the cubes are added together, give you the original number:
ex. 370 | 3^3 = 27 | 7^3 = 343 | 0^3 = 0| 27 + 343 + 0 = 370