Technical Writing Interview Questions

 1. Analyse the code

public final class Solid

{

  public static int atomic(int n)

  {

    if (n < 0) {

      n = -n;

    }

    int d = 1;

    while (n > 9) {

      ++d;

      n /= 10;

    }

    return d;

  }

  public static void main(String[] args)

  {

    System.out.println(atomic(103));

  }

}

2. What's the difference between API and SDK?

3. What's the difference between Class and Object?

4. How do you create code samples, what are the important things to note when creating?

5. What's the purpose of Version Control Tools?

6. Tell me about a time you failed or made a mistake.

7.  Tell me about a time you had to manage conflicting priorities.

8. Tell me about a time you disagreed with someone.

9. Tell me about yourself.