133.

lock(_syncObj) //_syncObj declared earlier
{
    lock(_syncObj)
    {
        Console.Writeline("hi");
    }
    Console.WriteLine("Hello");
}

what will be the output?

This is called nesting of locks.