What is a node in drupal?
What is lts ubuntu?
How do you expose a property?
Can attribute values be set to anything or are there specific values that they accept?
Which are location provider in android ?
How much ram does windows 10 32bit recognize?
what's the latest ram lunch?
What is colorstatelist?
How do you regenerate PSTUXCFG after manually changing psappsrv.cfg?
What is the concatenation?
why effective resistance should be more than static resistance in transmission line?
How can we refresh automatically when new data is entered into the database?
How do I resize columns and rows to better fit the data in ms excel?
How to use null as conditions in oracle?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].