Shreenibas Samalshreenibas.hashnode.dev·Dec 12, 2024Manual TestingWhat is SDLC? SDLC stands for (Software Development Life Cycle), it’s a standard or culture followed by all software industries. SDLC is a step-by-step procedure for designing, developing, and testing to deliver a high-quality software product. When ...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Nov 13, 2024Java Interview QuestionsWhy 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 Code(.java file) first converts into Bytecode(.class file ) with the help of the Java compiler and JVM co...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Nov 11, 2024SQL Practice questions.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 EMP; Q02-Write a query to display Q03-Write a query to display Q04-Write a query to display Q05-Wri...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Aug 9, 2024java programming challengeQ 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 case 1: input 3 output 6 Assume case 2: input 5 outpu...1 like@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jul 14, 2024QUESTIONS on SUBQUERY (BY BHARAT SIR)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 DEPTO IN (SELECT DEPTNO FROM EMP WHERE DNAME LIKE '%S% ); Q2.QUERY ...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jul 6, 2024Assignment on INNER JOINUSE 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 EMP, DEPT; Q2-Write a query to display DNAME and salary for all the employee working in accounting ....27 reads@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jul 5, 2024Assignment on EMP and Manager relationUSE EMP AND DEPT TABLE AS REFERENCE Q1-Write a query to display smiths reporting manager name . SELECT ENAME FROM EMP WHERE EMPNO IN (SELECT MGR FROM EMP WHERE ENAME='SMITH'); Q2-Write a query to display adams man...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jul 5, 2024Assignment On Types Of Sub QueryUSE EMP AND DEPT TABLE AS REFERENCE Q1-Write a query to display name of the employees earning salary more than the salesman . SELECT ENAME FROM EMP WHERE SAL >ALL (SELECT SAL FROM EMP WHERE JOB='SALESMAN'); Q2-Write a query to display details of the...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jun 24, 2024java switchcase question .Q1-Write a program to print day names using switchcase & scanner class . import java.util.Scanner; public class DayName { public static void main(String[] args) { Scanner input = new Scanner(System.in); int daynum ; /* Here we...@shreenibas
Shreenibas Samalshreenibas.hashnode.dev·Jun 16, 2024SQL Logical OperatorUSE THIS EMP TABLE AS REFERENCE Q1: Write a Query to display details of the employees working as clerk and earning less than 1500 . SELECT * FROM EMP WHERE JOB='CLERK' AND SAL<1500; Q2: Write a Query to display name and hiredate of the employees wo...75 reads@shreenibas