logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • find all Employee records containing the word "Joe", regardless of whether it was stored as JOE, Joe, or joe.


  • Correct Answer
  • SELECT * from Employees WHERE upper(EmpName) like upper('joe%'); 


  • Technology problems


    Search Results


    • 1. What is the security aspects provided with cloud?
    • Discuss
    • 2. Which JSON framework is supported by iOS?
    • Discuss
    • 3. Which of the following attribute can hold the JavaScript version?

    • Options
    • A. script
    • B. version
    • C. language
    • D. none of the above
    • Discuss
    • 4. Which of these class have only one field 'TYPE' ?

    • Options
    • A. Run time
    • B. Process
    • C. Void
    • D. System
    • Discuss
    • 5. void waitForSignal() { Object obj = new Object(); synchronized (Thread.currentThread()) { obj.wait(); obj.notify(); } } Which statement is true?

    • Options
    • A. This code can throw an InterruptedException.
    • B. This code can throw an IllegalMonitorStateException.
    • C. This code can throw a TimeoutException after ten minutes
    • D. All the above
    • Discuss
    • 6. What are the difference between call screen and leave screen?
    • Discuss
    • 7. How do we create a DHTML drop-down menu?
    • Discuss
    • 8. Which tag is used to display the numbered list? 1)
      2)
    • 3)
      4)

    • Options
    • A. 1
    • B. 2
    • C. 3
    • D. 4
    • Discuss
    • 9. In HTML document the tags are

    • Options
    • A. hidden keywords
    • B. used to display the content
    • C. Both A & B
    • D. None of the above
    • Discuss
    • 10. Which of the following is a properly defined structure?

    • Options
    • A. struct {int a;}
    • B. struct a_struct {int a;}
    • C. struct a_struct int a;
    • D. struct a_struct {int a;};
    • Discuss


    Comments

    There are no comments.

Enter a new Comment