Skip to main content

IS5103 WEEK-2 QUIZE'S


 WEEK-2


Q1. How many times will the following code print "Welcome to Java"?

int count = 0;

do {

System.out.println("Welcome to Java");

} while (count++ < 10);

A) 11

Q2. Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative?

A) ((x < 100) && (x > 1)) || (x < 0)

Q3. In Java, the symbol "=" and the symbol "==" are used synonymously (interchangeably).

A) FALS

Q4. What is the output for y?


int y = 0;
for (int i = 0; i &lt; 10; ++i) {
y += i;
}
System.out.println(y);


A) 45

Q5. Assume that x and y are int variables with x = 5, y = 3, and a and d are char variables with a = 'a' and d = 'A', and examine the following conditions:

Condition 1: (x < y && x > 0)
Condition 2: (a != d || x != 5)
Condition 3: !(true && false)
Condition 4: (x > y || a == 'A' || d != 'A')

A) Conditions 2, 3 and 4 are all true, Condition 1 is not

Q6. The following loop is syntactically valid.

for (int j = 0; j < 1000; j++) j--;

A) TRUE

Q7. The statement if (a >= b) a++; else b--; will do the same thing as the statement if (a < b) b--; else a++;.

A) TRUE

Q8. The do loop differs from the while loop in that

A) the do loop will always execute the body of the loop at least once

Q9. An if statement may or may not have an else clause, but an else clause must be part of an if statement.

A) TRUE

Q10. Which of the following statements are true about Java loops?

A) all three loop statements are functionally equivalent














































Comments

Popular posts from this blog

GE5103-2 Project Management [Aug 23 Syllabus]

    Some of the advantages of using time boxes and cycles in project coordination efforts include creating urgency, measuring progress, and allowing for predictable measurements. A)        True 2.    Even though most project managers are not contract specialists, they need to understand the process well enough to coordinate with the team. For the current assignment, you are looking at a short-term and small effort with a contractor of just a few hours without significant clarity. Which of the following would be the most applicable contract to use in this situation? A)        Time and materials 3. The project you are working on has had modifications to the plan from the start and even how the project is run. Project governance covers all of the 3 following except: A)        Naming The project manager 4. Of the following, which is most likely a trigger condition defined early in t...

GE5093 Design Thinking All Quizzes

  GE---5093-1D2-FA-2021 - Design Thinking Home My courses 2021-FA GE---5093-1D2-FA-2021 Week 1 Reading Quiz 1 Started on Sunday, October 31, 2021, 2:04 PM State Finished Completed on Sunday, October 31, 2021, 2:30 PM Time taken 25 mins 58 secs Grade 8.00  out of 10.00 ( 80 %) Top of Form Question  1 Correct 1.00 points out of 1.00 Flag question Question text A critical finding of Edward Lorenz related to Design Thinking was: Select one: a. An application of the caterpillar effect b. The idea of deterministic chaos or the "Butterfly Effect" c. Business leaders enjoy chaos d. Statistical modeling of weather was fairly accurate in the long term Feedback Your answer is correct. The correct answer is: The idea of deterministic chaos or the "Butterfly Effect" Question  2 Incorrect 0.00 point...

IS5503 Cloud Computing Solutions

  Week-1 Pre Assessment 1) You are working as a cloud architect at Congruence crop. Management he asked you to implement an vitualized infrastructure to provide the company’s  employees with on-demand storage which should be accessible through a web interface over the public internet. Which of the following cloud deployment models will you use to implement this ? Private 2) Which of the following storage solutions saves space by eliminating files or blocks that have redundant data? Deduplication 3) You are as a cloud administrator at BigCo. Management he asked you to move the company’s on-premises data to the cloud. You have received a request from the network administration team while migrating. They want to manage both the Linux- and Windows-based servers efficiently. What should you implement to accomplish this task? Secure Shell Remote Desktop Protocol 4) Ron, a security analyst, found an unkwon design flaw in a product. He notices that correc...