Concept explainers
Indicate the whether the indicated lines execute or not:
Line #01: if ((int2 <= int1) && b1) Line #02: System.out.println("a"); Line #03: else Line #04: System.out.println("b"); Line #05: if (b1 || (int1 * int2 >= s.length())) Line #06: System.out.println("c"); Line #07: Line #08: switch ((int) Math.pow(int2, int1) / --int1) { Line #09: case 10000: Line #10: System.out.println("d"); Line #11: break; Line #12: case 25000: Line #13: System.out.println("e"); Line #14: break; Line #15: case 50000: Line #16: System.out.println("f"); Line #17: break; Line #18: }
Answer at least 5 of the following 6 correctly, indicating whether or not the specified line will execute:
line 2
line 4
line 6
line 10
line 16
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images
- Rewrite the following code segment using the conditional operators (?/:) if (x > y) Z = 1; else z = 20;arrow_forwardmodule test (clk, a, b, f, g, h); input clk, a, b; output f, g, h; reg f, g, h; always@ (negedge glk) f <= #5 a| b; alwayse (clk) g = #10 f ^ b; alwayse (f or g) h = #2 f & g; endmodule Figure 1arrow_forwardusing System; class TicTacToe { Console.WriteLine("Do you want be X or O: "); Console.Write("Press 1 for 'X' or Press 2 for 'O'\n"); choice = int.Parse(Console.ReadLine()); if(choice==1) staticint player = 1 staticint choice; { staticvoid Print(char[] board) { Console.WriteLine(); Console.WriteLine($" {board[0]} | {board[1]} | {board[2]} "); Console.WriteLine($" {board[3]} | {board[4]} | {board[5]} "); Console.WriteLine($" {board[6]} | {board[7]} | {board[8]} "); Console.WriteLine(); } staticvoid Main(string[] args) { char[] board = newchar[9]; for (int i = 0; i < 9; i = i + 1) { board[i] = ' '; } Print(board); board[4] = 'X'; Print(board); board[0] = 'O'; Print(board); board[3] = 'X'; Print(board); board[5] = 'O'; Print(board); board[6] = 'X'; Print(board); board[2] = 'O'; Print(board); } } } How can this program be fixed to ask the user "It is your turn to place an X. Where would you like to place it?"arrow_forward
- A fish-finder is a device used by anglers to find fish in a lake. If the fish-finder finds a fish, it will sound an alarm. It uses depth readings to determine whether to sound an alarm. For our purposes, the fish-finder will decide that a fish is swimming past if:there are four consecutive depth readings which form a strictly increasing sequence (such as 3 4 7 9) (which we will call "Fish Rising"), orthere are four consecutive depth readings which form a strictly decreasing sequence (such as 9 6 5 2) (which we will call "Fish Diving"), orthere are four consecutive depth readings which are identical (which we will call "Constant Depth").All other readings will be considered random noise or debris, which we will call "No Fish."Create a Python program called "fishfinder_firstname_lastname" that takes 1 input of string of 4 numbers separated with comma. Your program must display "Fish Rising", "Fish Diving.", "Fish At Constant Depth" or "No Fish".Example:30,10,20,20 Must display No…arrow_forwardLook at this program: int main(){ int x = 4; displayMessage(); return 0;}void displayMessage(){ for(int x = 1; x <= 100; x++) cout << "I love computer science" << endl;} What will the output be? Answers: Nothing. It won't compile because you can't define the variable x inside a loop heading. Nothing. It won't compile because the displayMessage function is being called before it has been defined "I love computer science" 100 times "I love computer science" Nothing. It won't compile because you can't call a void methoarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education