Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Adobe Systems Online Test (On-Campus Internship)

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Adobe visited our campus for an on-campus internship. First-round they conducted an online test of which there are 16 MCQ’s and 2 coding. Both coding questions are easy to level.

1. Given an array A, you have to return an index such that the left sum of an index must be equal to the right sum of the index. For example, if array is [3,1,2,1] then output will be index 1 as 3==(2+1). So, here you have to return 1;

1<n<=105

1<a[i]<=1000

Same question:https://www.geeksforgeeks.org/find-element-array-sum-left-array-equal-sum-right-array/

2. Similar question: https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended/

My Personal Notes arrow_drop_up
Last Updated : 28 Sep, 2020
Like Article
Save Article
Similar Reads