Company: Accenture Japan
Difficulty: medium
What is regression testing?
For the two variables x and y, execute the following procedure: 1. Assign 2 to x and assign 3 to y. 2. Assign y by y minus 1. 3. Assign the sum of the value of x and the value of y into x. 4. If y ≠ 0, return to step 2. 5. If y = 0, the process is terminated. What is the value of x when processing is over?
Choose the public-key cryptosystem that utilizes the fact that the complexity does not fit within polynomial time.
Analyze the following Java function: static int sum(int n) { int answer = 0; for (int i = 0; i < n; i++) { answer += i + 1; } return answer; }. Choose the incorrect statement from below (assume int is a signed 32-bit integer).
Which of the following is an example of social engineering in the context of information security?