1. print "Hello, world\n";

2. print 'Hello, world\n';

Both will gives you different result like this :-

Hello, world
Hello, world\n$

Also quotes interpolate variables and special characters, whereas same thing does not work for single.

BY Best Interview Question ON 13 Jan 2019