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 |
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;
I have a class which is abstract which contains only the abstract methods. This is similar to an interface. Then, if i have given a choice to choose one of them. Which one i have to choose and why?
This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .
What are streams?
Does java vector allow null?
Hi can u pls tell me what is the use of marker interface. Iknow what is marker interface but what ability will the object get by implementing this.
Which keyword specify that a variable is effectively final ?
An inner class can actually be a subclass of the outer class? a. true b. false
What is binary search in java?
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.
What is instance means in java?
What is += mean in java?