IS5503 week-8 post assessment

Which of the following cloud service models best supports a software development team to work efficiently with members working from different geographical locations? A: Platform as a service A: Redundancy A: Resources will be available to all client OSs via broad network access. A:…

IS5503 Cloud Computing Solutions

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…

GE5103-5D2-SP-2022 – Project Management

True 2. Operations consist of the ongoing work needed to ensure that an organization continues to function effectively.  True 3. A project manager needs to be concerned with achieving desired scope and quality (often called performance), subject to constraints of…

IS5213-3W1QuiZ

1. To answer this question, please refer to the CRAN Packages web page referred to in the course material.Which of these packages are used for Optical Character Recognition? abbyyR 2.Using the iris data set in R, generate a box plot…

BA6933 Week-7 (17,18)

1.Consider the following gasoline sales time series data. Click on the datafile logo to reference the data. Week Sales (1000s of gallons) 1 17 2 21 3 19 4 23 5 18 6 16 7 20 8 18 9 22…

IS5113 FINAL EXAM & LAB

1.Which of the following functionalities joins every record of the dataset with every other record of another dataset? cartesian product 2. Which of the following types of Tableau data spreads of a single row over multiple coloums?  Wide 3. In…

IS5103 WEEK-1 QUIZE’S

Q1. Which library package would you import to use NumberFormat and DecimalFormat? java.text Q2. The expression 4 + 20 / (3 – 1) ∗ 2 is evaluated to ________. 24 Q3.Which of the following expressions results in a value 1?  37 % 6 Q4. If…

IS5103 Week5 (Quiz 5 Solutions)

String[] list = {“red”, “yellow”, “green”};  String[] list = new String[]{“red”, “yellow”, “green”}; 2. Analyze the following code:  int[] list = new int[5]; list = new int[6];  The code can compile and run fine. The second line assigns a new…

IS5103 WEEK-2 QUIZE’S

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); 11 Q2. Which of the following is the correct expression that evaluates to true if the…