B. Im Winter. Ergänzen Sie den Dialog mit den Ausdrücken in Klammern (parentheses). esma: Du bist immer so fit. Was machst du (during the winter)? [a] hilal: (In spite of the weather) [b] gehe ich jeden Tag spazieren. esma: Gehst du in der Stadt oder (outside of the city) [c] spazieren? hilal: In der Stadt. Möchtest du morgen mitkommen? esma: Danke, nein. (On account of the weather) [d] bleibe ich lieber zu Hause.
Blog
C. Herr Hatunoglu. Ergänzen Sie die folgenden Sätze mit den…
C. Herr Hatunoglu. Ergänzen Sie die folgenden Sätze mit den richtigen Adjektivendungen. Amanda wohnt in einem groß[a] alt[b] Mietshaus (n). Es gibt manchmal Ärger mit den ander[c] Mietern (pl), denn sie spielt oft auf ihrem alt[d] Klavier (n). Laut[e] Musik hört aber Herr Maibaum nicht gern. Er kauft sich eine neu[f] Trompete (f). Frau Morgenschön schlägt mit dem groß[g] Kochlöffel (m) gegen die dünn[h] Wand. Alle in dem ganz[i] Haus kaufen sich neu[j] Musikinstrumente (pl). Herr Hatunoglu zieht mit seiner klein[k] Gitarre (f) in das laut[l] Haus ein. Seine neu[m] Nachbarn (pl) finden die klein[n] Gitarre viel zu laut!
What will be the value of x[8] after the following code is e…
What will be the value of x[8] after the following code is executed? final int SUB = 12; int[] x = new int[SUB]; int y = 100; for(int i = 0; i < SUB; i++) { x[i] = y; y += 10; }
A ragged array is ___________
A ragged array is ___________
Which method overloads the following method? public int pars…
Which method overloads the following method? public int parseNumber(String number) { ……. }
If the following code executes, what is a possible declarati…
If the following code executes, what is a possible declaration/method header for the getTax() method? double price = 9.99; double rate = 0.2; int qty = 3; double tax = getTax(price, rate, qty);
Assuming that the following two methods are written inside a…
Assuming that the following two methods are written inside a class named test, what is the output of the following code? public static void main(String[] args) { int a = 5; int b = 9; callMethod(a,b); System.out.println(“a = “+a+”\nb = “+b); } public static void callMethod(int a, int b) { a = a + 1; b = b + 5; System.out.println(“a = “+a+”\nb = “+b); }
[Select all that apply] Any method that calls a method with…
[Select all that apply] Any method that calls a method with a throws clause in its header must ___________
Given the following method, which of these method calls is v…
Given the following method, which of these method calls is valid? public static void showProduct(double num1, int num2) { double product; product = num1*num2; System.out.println(“The product is ” + product); }
What would be the result after the following code is execute…
What would be the result after the following code is executed? int[] numbers = {40, 3, 5, 7, 8, 12, 10}; int value = numbers[0]; for(int i = 0; i < numbers.length; i++) { if(numbers[i] > value) value = numbers[i]; }