Company: Societe Generale_18oct
Difficulty: medium
What does the following Java program print to the console? class test { int a; int b; void meth(int i, int j) { i *= 2; j /= 2; } } class Main { public static void main(String args[]) { test obj = new test(); int a = 10; int b = 20; obj.meth(a, b); System.out.println(a + " " + b); } } 10 20 20 10 20 20 10 10 Suppose you have tables Customers (CustomerID, Name) and Orders (OrderID, CustomerID, OrderDate). Which query correctly returns the names of every customer who placed at least one order during 2022? SELECT Name FROM Customers WHERE CustomerID IN (SELECT CustomerID FROM Orders WHERE OrderDate LIKE '2022%'); SELECT Name FROM Customers JOIN Orders ON Customers.CustomerID = Orders.CustomerID WHERE YEAR(OrderDate) = 2022; Both A and B SELECT Name FROM Customers WHERE OrderDate = 2022; Which one of these is not typically classified as a requirement-management workbench tool? Rational RequisitePro DOORS HP ALM Compilers Given tables Book (isbn, bname) and Stock (isbn, copies), which join