#shreenibas
Read more stories on Hashnode
Articles with this tag
What is SDLC? SDLC stands for (Software Development Life Cycle), it’s a standard or culture followed by all software industries. SDLC is a...
Why Java is a platform-independent language? We all know machines understand only binary language (0’s and 1’s) or machine code, but Java Source...
USE EMP AND DEPT TABLE AS REFERENCE. (EMP TABLE) ( DEPT TABLE) Q01-Write a query to display all the details from the employee table. SELECT * FROM...
Q 01-Write a java program to print the factorial of the given number . /* Write a java program to print the factorial of the given number . Assume...
USE EMP TABLE AND DEPT TABLE AS REFERENCE GIVEN BELOW . Q1.DISPLAY ALL THE EMPLOYEES WHOSE DEPARTMET NAMES ENDING 'S' . SELECT ENAME FROM EMP WHERE...
USE EMP AND DEPT TABLE AS REFERENCE Q1-Write a query to display name of the employee and his location of all the employees. SELECT ENAME, LOC FROM...