Interviews on Skype
skype.com
Interviews on Skype
1–9 of 9 posts
Re: Interviews on Skype
#2Re: Interviews on Skype
#3Re: Interviews on Skype
#4Re: Interviews on Skype
#5This looks really cool. Can you prepare a test project for the candidates or do they always start from blank?
Re: Interviews on Skype
#6Test candidates using a real-time code editor over Skype. Give instructions, interview candidates and provide feedback via the in-browser Skype call. The in-browser code editor allows candidates to run their code and check their results. Help candidates avoid syntactic mistakes with real-time syntax highlighting for 7 popular programming languages.
Re: Interviews on Skype
#7string Hello () { return "test"; }
Console.WriteLine(Hello());
solution.cs(1,0): error CS1525: Unexpected symbol `string'
Re: Interviews on Skype
#8Re: Interviews on Skype
#9C# doesn't seem to be working properly string Hello () { return "test"; } Console.WriteLine(Hello()); solution.cs(1,0): error CS1525: Unexpected symbol `string'
using System;
class App {
static string Hello() { return "test"; }
public static void Main(string[] args) {
Console.WriteLine(Hello());
}
}