Write a method

  

Write a method with the signature “public static int findMax(int[][] data)” which finds the maximum value in the given array and returns it. Is there a limit to the number of dimensions can an array have? Why might you use a two-dimensional array? 

Presentation

 Information related with the Survey paper and Presentations is given here. Survey This is an individual research. Each student will prepare a survey on the topic of their interest by reading at least 3 – 5 scientific papers and writing a short report (maximum of 5 pages including citations). Survey details In your report, give the problem/topic definition, discuss the motivation behind the studies working on this problem/topic (just try to answer the question of “why have all these studies worked on this problem? is it really important?”), and then explain the studies. While explaining the studies, do NOT list the studies and do NOT explain them one by one. Instead, understand the contribution and methodology of each study, try to group the studies according to their contributions and methodologies, and then explain/discuss the studies as groups.
In your discussion, do not forget to give the give the advantages and disadvantages of each group’s approach, and discuss the similarities and differences in between the approaches followed by different groups. The format, plagiarism, structure, and writing style of your report (including writing the citations properly) will be a part of your grade.

Discussion 3

Q1) Given the growth in telecommuting and other mobile work arrangements,  how might offices physically change in the coming years? Will offices  as we think of them today exist in the next ten years? Why or why not?  

Min 250 words

Two references

Q2) If you have you been involved with a  company doing a redesign of business processes, discuss what went right  during the redesign and what went wrong from your perspective.  Additionally, provide a discussion on what could have been done better  to minimize the risk of failure. If you have not yet been involved with a  business process redesign, research a company that has recently  completed one and discuss what went wrong, what went right, and how the  company could have done a better job minimizing the risk of failure.

Your paper should meet the following requirements: Be approximately 4 pages in length, not including the required cover page and reference page.

Follow APA7 guidelines. Paper should include an introduction, a body with fully developed content, and a conclusion.

At least two scholarly journal articles to support  the positions, claims, and observations.

Attach them as two sep documents along with plagiarism report

Weekly Activity 8

Complete the attached

This exercise is more suited for in person instruction, obviously, so let’s do it this way.  Try to execute the exercise with another person, spouse, friend, etc.  Explain in a half page or more what the exercise was meant to accomplish.  No references required.  If you can’t perform the exercise with another person, simulate the exercise by yourself and reflect on what you were supposed to learn.

Java

I need a test case for the following programming code 

* Click nofs://nbhost/SystemFileSystem/Templates/

Licenses/license-default.txt to change this license

* Click nofs://nbhost/SystemFileSystem/Templates/

Classes/Class.java to edit this template

package poker;

import java.util.ArrayList;

import java.util.*.

* Click nbfs://nbhost/SystemFileSystem/Templates/

Licenses/license-default.txt to change this license

* Click nofs://nbhost/SystemFileSystem/Templates/

Classes/Class.java to edit this template

/**

* @author adamt

public class Deck {

private ArrayList deck = new ArrayListO);

public Deck(){

ArrayList deck = new ArrayList();

for(int i=0;i<=3;i++){

for(int j=0;j<13:j++){

cdeck.add(new Card (ij));

3

deck=cdeck:

public void printAllCards){

for(int i=0;i

System.out.println(deck.get(i).toString());

}
public Card getCard(int i){

return deck.get(i);

}

public Card deal0f

return deck.remove(0):

public int countCards ()f

return deck.size();

public void shuffle )f

Collections.shuffle(deck,new Random());

?