Question: You are given an array of n integers (both positive and negative). Find the first continuous sequence of integers with the largest sum. Example 1: Input: {-7, 4, -2, 5, 3, -6, 8, -9} : Answer: {4, -2, 5, 3, -6, 8} Example 2: Input {5, -3, -4...