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 |
How to sort a vector elements that contains the user define class object? (Note: If Suppose consider, A Student class contain two data members. They are String studentName and int rollNo. I am creating Four objects for this class, each object contains students details like name and roll no. Now i am storing that objects in vector and if i retiving the elements from the vector means then it should be display in sorting order)
3 Answers ProdEx Technologies,
What is the console in java?
Write a method to check if input string is palindrome?
What is the difference between the direct buffer and non-direct buffer in java?
Why do you canvas?
How many return statement are allowed in a function?
Can a class be a super class and a sub-class at the same time? Give example.
What is an example of a constant variable?
what is meant by encapsulation?
Why does java does not support multiple inheritance? Explain
Write code to implement bubble sort in java?
What is the Scope of Static Variable?