Sir please make one video for SQL queries 🙏🥹 btw loved your way of explaining solution as well as related concept for mcqs and specially for 2nd coding question
for sum of bits for given decimal number without using bin method---->>>>>>> x=int(input()) l=[] rem=0 while(x>0): rem=x%2 x=int(x/2) l.append(rem) print(sum(l)) with using bin method------->>>>>>> x=int(input()) y=bin(x)[2::] print(y) sumi=0 for i in y: if(i=="1"): sumi=sumi+1 print(sumi)
hello sir. i have received congradulation you have ahead in our recruitment process this mail on june 14 still now no any updates when will the start assesment process
i actually completed the congnitive and technical test today and the screen came for few minutes and all of a sudden it showed red screen and moved back to home screen when i went inside the browser it says test have submitted but didn't receive any mail? What to do?
Hii sir i had completed my accenture virtual interview on august 28th 2024 when will expect my result and also if had successfully completed when will my on boarding date please replay to me
l=list(map(int,input().split())) si=len(l) l.sort() sec=0 if(si==1): print(-1) else: while(si>1): if(l[-1]>l[si-2]): sec=l[si-2] break si=si-1 if(sec==0): print(-1) else: print(sec) for second largest element problem
package placement_Practise; public class Sum_of_bin { public static void main(String[] args) { // TODO Auto-generated method stub int n=10,sum=0; while(n>0) { sum+=n%2; n/=2; //System.out.println(sum); }
thankyou sir i selected Cognitive + technical exam is today 9am, after some loading now i got whatsapp message as successfully cleared and showing wait for next assessment round 🫡
Thank you sir I cleared cognitive round by help of your videos
Wow it’s amazing
@prashantmehra4136 Did you give technical assessment also ?
Yes it is combined
@@prashantmehra4136 which role did you applied for?
@@kabiracharya219 Its On Campus PADA
14:34 -48*2+4=100(logic-2*1 and then 2*2=4)
100*3+6=306(logic-3*1 and 3*2=6)
306*4+8=1232(logic-4*1 and 4*2=8)
1232*5+10=6170(logic-5*1 and 5*2=10)
Your videos are very useful. And we learn many ideas to solve the problems.Thankyou sir ❤
Really liked the explanation of last question.😊
Clear and concise explanation by mam and approach of solving coding questions. Please sir upload more questions and solutions for other exams as well.
your videos are a great help thanks for posting them on youtube..we greatly appreciate your effort..
Itna kuch nhi bhut easy aata h dono round bs coding m compiler k issue h ..b/w I cleared both round thanks sir for this accenture series
kya issue h compiler ka?
How to prepare for ms office and cloud part
What compiler error ?
On campus ya off campus ?
@@siddhartha1278 oncampus
Learned a lot by watching your videos
Very helpful for further exams
the video are good sir !
Just Pray For Me And I try my best to crack the rounds
thnx sir ,pls continue this series
Sir please make one video for SQL queries 🙏🥹 btw loved your way of explaining solution as well as related concept for mcqs and specially for 2nd coding question
Thank you sir for guiding me for cognitive and technical assessment 😊
NICE SUPER EXCELLENT MOTIVATED
I cleared both rounds and coding round was very easy , both questions were easy i think i got lucky in that case 😁
ager male ho to lucky nhi ho
@@rhth-m2u yes bro after appearing in interview now i know that if you are boy then they will not pay attention to you 😞
@@himanshuraghav5723 huya selected?
@@rhth-m2u result is yet to be declared but i know that 99.99% chances are of getting rejected.
For converting the decimal to binary and adding the digits..
a=10
b=bin(a)
c=b[2:]
sum=0
for i in range(len(c)):
sum+=int(c[i])
print(sum)
Very insightful
second largest element without sort
arr=[3,10,54,60,20,9]
if len(arr) arr[j+1]:
arr[j], arr[j+1] = arr[j+1], arr[j]
print(arr[-2])
this is just bubble sort, prove me wrong
for sum of bits for given decimal number
without using bin method---->>>>>>>
x=int(input())
l=[]
rem=0
while(x>0):
rem=x%2
x=int(x/2)
l.append(rem)
print(sum(l))
with using bin method------->>>>>>>
x=int(input())
y=bin(x)[2::]
print(y)
sumi=0
for i in y:
if(i=="1"):
sumi=sumi+1
print(sumi)
Very Helpful👍
n=int(input())
binary=bin(n)[2:]
result=0
for i in binary:
result+=int(i)
print(result)
Same logic ❤ harshitha 🎉 all the best 👍 for ur exams frnds if ur learning anything then learn python it is easy
Thanks alot sir❤ …. Yesterday i cleared my aptitude and coding round
Thank you sir I cleared my first round 🙏
hello sir. i have received congradulation you have ahead in our recruitment process this mail on june 14 still now no any updates when will the start assesment process
Thank you sir i cleared my Accenture aptitude round.
how was the round??
is questions are repeated from previous papers???
sir I got mail for shortlisting after filling the form , they said soon i will receive assessment but till today i did not receive assessment mail
arr=list(map(int,input().split()))
arr=list(set(arr))
sort.arr()
if len(arr)
Hi
I have one doubt, can we use in built functions in coding round
Thank you sir
i actually completed the congnitive and technical test today and the screen came for few minutes and all of a sudden it showed red screen and moved back to home screen when i went inside the browser it says test have submitted but didn't receive any mail? What to do?
When u had applied ???
Thanku sir ❤❤ today i cleared both rounds of Accenture
Really
Sir your videos are very helpful for revision. Please make videos on Verbal as well.
sure
@@OnlineStudy4u plzz reply sir 😢
So we can use pen and paper during exam?
Did'nt get the Exam notification yet i've applied 5 days ago..
is anyone got??
Those who gave or cleared their exams please can i know when u had applied for accenture??
Now also it's open apply
Search as accenture mass hiring entry level
Sir i cleared Accenture 1 round
Mam is this actual Accenture question..........🎉
Validity (how many days) for the crash course?
6month
Hii sir i had completed my accenture virtual interview on august 28th 2024 when will expect my result and also if had successfully completed when will my on boarding date please replay to me
Same day interview completed bro, waiting for result
Sir accenture is updated their syallbus make a video on that sir plese I'm confusing a lot
There is no change in syllabus
🎉❤
Anyone whose 1st round on 23 August got interview mail???
l=list(map(int,input().split()))
si=len(l)
l.sort()
sec=0
if(si==1):
print(-1)
else:
while(si>1):
if(l[-1]>l[si-2]):
sec=l[si-2]
break
si=si-1
if(sec==0):
print(-1)
else:
print(sec)
for second largest element problem
SIR ,my accenture interview on 17th july but not yet receive interview result .Then sir they reject me or i am wait for more time?
Wait for some time
@@OnlineStudy4u they definitely send me mail if I rejected/selected ?
1st like..
done
package placement_Practise;
public class Sum_of_bin {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n=10,sum=0;
while(n>0)
{
sum+=n%2;
n/=2;
//System.out.println(sum);
}
System.out.println(sum);
}
} 2nd code in java
In second coding question what if we have more than one string which has same match count which we need to consider
Anyone who wrote communication between 26-31August got interview slot booking mail
When was your 1st assessment round?
@@ankitapanchal9646 30August
@@ankitapanchal9646 30 August
No
@@ankitapanchal9646 23aug
First comment
Nice explanation sir❤👏
thankyou sir i selected Cognitive + technical exam is today 9am, after some loading now i got whatsapp message as successfully cleared and showing wait for next assessment round 🫡