write SQL command for table employee where print first name or last name start like "A" and who is working in domain(angular js,java,dotnet)
Answer / deepanshu
select first name like "A%" ,last name like "A%" from employee where domain IN (angular,js,java,dotnet);
| Is This Answer Correct ? | 0 Yes | 1 No |
11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.
What is the size of int in 64-bit jvm?
What is an object?s lock? Give name of object?s that have locks?
Which is the best approach for creating thread ?
why applet doesn't have main? isn't possible a program with out main?
how exactly garbage collection take place?
What is final method?
Explain about static imports in java?
What is meant by singleton class?
what is object-oriented programming in java?
What is Enum in Java?
What is comparable and comparator interface? List their differences