import math n=int(input()) l=list(map(int,input().split())) mid=math.ceil(len(l)/2) #print(mid) sum1=0 sum2=0 for i in range(0,mid-1): sum1+=l[i] for j in range(mid,n): sum2+=l[j] if sum1==sum2: print(mid) else: print("NOt found")
@pradeepas57845 ай бұрын
Here is the simple way for the second program : (Java) for(int i=0;i
@abhijeetsarkar75415 ай бұрын
simple but inefficient
@pallavisahoo50175 ай бұрын
Do Quantitative aptitude come or not
@user-uc7nb5ml6j5 ай бұрын
No
@siddharthbalodi34308 ай бұрын
Sir the level of coding round will be same for SASA and PADA ?
@aruldaspaul14996 ай бұрын
For sasa it's optional the technical assessment..they won't take the mark!
@pritijagtap13435 ай бұрын
can we select any coding language to code like java in accenture coding test??
@Supercell_20035 ай бұрын
Yes,you can
@code_with_somesh096 ай бұрын
In coding problem-1 we can also implement a simple logic if the length of array is even then it returns "NOT FOUND" because those array does not have any mid value, if the length of array is odd then we just need to calculate the mid value and then we need to calculate left sum and the right sum from that mid value, if they are equal return the index of mid value or if they are not return "NOT FOUND" Code in python-3:- def find_index(n, arr): if n % 2 == 0: return "NOT FOUND" midVal = n // 2 leftSum = sum(arr[:midVal]) rightSum = sum(arr[midVal+1:]) if leftSum == rightSum: return midVal + 1 else: return "NOT FOUND"
@shubhranginidas68185 ай бұрын
Wrong understanding of the problem. It is clearly not stated that the equilibrium point will be in the middle, so whether N=even or odd, we need to check the (leftsum == rightsum) for each index.
@chennuyamini39895 ай бұрын
In coding problem 1 can be implemented by using prefix sum and suffix sum
@soniya_naskar8 ай бұрын
By any chance can anyone tell me that if code gets automatically saved or not... because my laptop was charged out in between the coding though I have completed the coding part but I'm not sure that it had saved or not..any help would be appreciable
@OnlineStudy4u8 ай бұрын
it will be auto submitted
@souvikbasak43965 ай бұрын
Can someone tell about the credibility of this? Because I want to prepare for the accenture exam.
@SoumyaPoddarBLEC5 ай бұрын
Can anyone help me for tomorrow assessment at 10am slot?
@MKtechnoverse5 ай бұрын
Which college
@mansisharma49625 ай бұрын
Sir data analytics me b yahi hoga same round or yese hi questions honge?
@RajkumarTholam2538 ай бұрын
Can anyone help me tomorrow 10 am slot??
@TammanaTriveni8 ай бұрын
I have
@RajkumarTholam2538 ай бұрын
@@TammanaTriveni I want help for coding round are you ok to help me, you share your questions also if I get answers I will share you
@himanshi37257 ай бұрын
Iz this pada of ASE coding questions. Will there be 2 coding questions in PADA?
@velvet02217 ай бұрын
Sir mene form fill Kiya tha koi mail nahi aaya assessment ka kya Karu
@codes_aesthetic8 ай бұрын
Is this exam for 2024 batch??
@ITHustlers6 ай бұрын
It's for 2024 passouts
@kasivishva31838 ай бұрын
Sir javascript accepted in tcs NQT coding round or not
@mushin-lp8ng8 ай бұрын
Nope
@kasivishva31838 ай бұрын
@@mushin-lp8ngDo you know the reason why?
@ganeshpatil16025 ай бұрын
Tcs nqt me coding round nahi hota hai
@harishallinonechannel34438 ай бұрын
we need coding classes in python language
@handsome-6738 ай бұрын
Sir plzz make video more on it we need
@simmekhan70118 ай бұрын
Sir aj mera bhi exam tha Accenture ka or mene 3rd may. 7 o'clock pr apna slot book Kiya tha or half an hour pehle se login kr k bedhi thi but jb 7 bje or mene sari process ki or test start krne ki koshish ki 😢to likha aya ki test link expired sir meto de hi nhi payi ese q hua ap bta skte h kya ki ab reschedule hoga y exam ya nhi 😢mene bohot mehnat ki thi is exam k liye or apki sari video dekhi thi paper solve ki please reply Krna ap sir
@shreyapawar59938 ай бұрын
Same problem i also got... 7pm slot
@agrima34968 ай бұрын
I also got same problem
@shreyapawar59938 ай бұрын
Mail aya ky Accenture ka? Reschedule ka kisiko
@subhrajitpadhy47068 ай бұрын
Anyone got communication round mail for 2nd May
@ayeshasarwath41778 ай бұрын
No, even I am waiting for it. I got the msg for clearing coding round though, but still didn't get communication round mail
@priyankakulhare98228 ай бұрын
You got?
@ayeshasarwath41778 ай бұрын
@@priyankakulhare9822no priyanka, not yet
@matlebhavyasri8 ай бұрын
Is there any live class for may 9th accenture sir please do class for today exam sir
@VenkamsettiJyothipriya8 ай бұрын
I got test link is expired for may 3 -7pm slot can one help with that
@deepikaganchi4788 ай бұрын
Same
@deepikaganchi4788 ай бұрын
I called them and enquired they are saying backend problem and they will provide further updates...
@shreyapawar59938 ай бұрын
@@deepikaganchi478 yes mujhbhi same bola
@deepikaganchi4788 ай бұрын
@@shreyapawar5993 just hope for good and wait
@deepikaganchi4788 ай бұрын
@@shreyapawar5993did u received any further updates from them??
@seenu69738 ай бұрын
Anyone help me for 2pm slot?
@harishallinonechannel34438 ай бұрын
you can teach c and python also but we need python
@machareddamma66315 ай бұрын
option a
@machareddamma66315 ай бұрын
65
@NITINKUMAR-hm2ls8 ай бұрын
#include using namespace std; int main() { int m; cin>>m; int n; cin>>n; vectorarr(n); unordered_mapmp; for(int i=0;i>arr[i]; mp[arr[i]]=i; } int count =0; for(int i=0;i