0:58 It my dearest request that 0:58 on this time stamp screenshot question Please make a video covering answer of those question, it really help full for us thank you so much for your kind work.
16:20 468,455,469,454,470,? In that question,i could suggest adding one to the numbers in the odd index and decreasing 1 to the numbers in the even index.this is easier.
For the second coding question I would recommend everyone to go through a better tutorial to understand the pattern of finding longest common subtring , subsequences and others. These are explained much better on other channels and also go solve them in leetcode too for better practice.
s1=input() s2=input() l=[] sum=0 for i in s1[0:]: for j in s2[0:]: if i==j: l.append(i) else: continue for i in set(l): sum+=ord(i) print(sum) sir can i do like this for 2nd problen
It s the best channel in UA-cam that providing this type of helpful videos which free of charges and good quality videos supeb explanation with detailed solution I really appreciate your effort sir and very much thankful if you continue making this type of videos for us
Sir, My cognitive and technical assessment took place on 23 August 2024, its result came today or asked to give the next assessment but I am login for the next assessment but I am getting an error, Your test validity is over. The time and date of coding assessment was not mentioned in the mail, so I login before 24 hours of receiving the mail, still this error is coming.
I only had this question Rebound Height in the Accenture exam today, but most of the questions are repeated. Please learn more about this program as it won't pass all test cases.👍
sir I gave the last interview round on the 23rd but till now, have not heard anything from Accenture. anyone else BCA Graduate who attended this interview got a reply from Accenture please let me know.
Hello sir, I have applied for the record to reports associate. How is the recruitment procedure for the bcom graduates. Do we have any exams. Please guide on the interview procedure for the R2R post sir please please.
00:05 Solving and discussing repeated questions from Accenture exams 02:11 Solving mathematical equations using logic 06:38 Accenture questions are repeating, providing opportunities for higher scores. 09:04 Decode code language for given words. 14:25 Accenture crash course offers comprehensive preparation for competitive exams 16:47 Solving seating arrangement problems through systematic experimentation 20:46 Solving seating arrangement problem with logic 22:59 Explaining penalty calculation for late electricity bill payment 27:32 Accenture coding problem on rebound height 29:33 Calculating the height of ball after rebounds 33:31 Deriving and applying V upon VN formula to calculate values 35:34 Code to calculate H multiplied by V upon V and square 39:37 Finding the longest common substring between two strings is crucial for decoding a secret message using character encoding. 41:34 Finding longest common substring between two strings 45:45 Matching characters and search strategy 47:33 Problem-solving using recursive approach 51:19 Finding the largest common substring 53:20 Find the largest common substring 57:27 Finding matching substrings using incrementing method 59:30 Finding the longest common substring 1:04:03 Finding the starting index of the longest common substring 1:06:07 Reset substring count to zero for new substring formation 1:10:22 Type casting characters to integers in C++ 1:12:23 Explaining the time complexity of the recursive method for finding common substrings 1:16:04 Explanation of the approach for comparing two arrays 1:18:02 Algorithm to find and count matching substrings 1:22:05 Explaining DP approach for finding longest common substring 1:23:52 Finding Longest Common Substring using Dynamic Programming 1:28:32 Explanation of dynamic programming approach for finding longest common substring 1:30:36 Explaining how to find the answer when Max L is zero 1:34:54 Optimizing time complexity through efficient matrix traversal
I think this is not the correct solution to rebound height coding problem since this exact code passed only 2/10 TCs in my case and even after changing different data types and trying different way, I still could not get it over 2/10. Accenture should look into this.
Sir, I have applied for Packaged APP Development Associate in accenture. I received assesment slot booking mail on 20th August, but it was showing "No slots available at the moment. Comeback later!". Will I get another mail regarding slots booking.? Will I able to proceed further in the hiring process.
Hii I have written exam on 23rd and done coding one question passed all test case and 2nd one was just attempted do I get qualified for next round sir pls reply
In the 2nd question, the approach u followed is too lengthy we can solve it by seeing that in every column there must be a blank box without a dot so only option 2 is possible...... u should have thought more smartly.Thank u
@@sayakpaul9488 how blank box without the dot ? Please explain? That is the difference between a teacher and a leaner . A teacher think about the students and explain each and everything so the student understand things without any doubt. but a leaner think about how he can solve without telling logic to people. Hope u understand now !
@@pleasantdayNwisdom it was off campus and was online nd i raised the ticket and as always they said we solved ur issue , do u have any idea will i get the assessment link again or m i rejected 🙂
// You are using Java import java.util.*; class acc{ public static void main(String args[]) { Scanner obj=new Scanner(System.in); String s1=obj.nextLine(); String s2=obj.nextLine(); int n=s1.length(); int m=s2.length(); int arr[][]=new int[n+1][m+1]; int max_len=0; int row=0; int col=0; for(int i=1;i
Same issue, Mera to directly system hi shutdown ho gya. Fir se login Kiya toh test validity expire aise dikha rha tha. What can do now. Test incomplete hi rh gya
Same issue.after successfully completed cognitive assessment.i could 'nt attend the coding assessment.the login page shows test Validity is over.and I got a message on WhatsApp that " you will receive a notification soon to participate in the next round." I m confused.and I don't know what to do.?? Please reply
Without DP public class Solution { public static int calculateAsciiSumOfLongestCommonSubstring(String S1, String S2) { String max = ""; // Iterate over S2 to find substrings for (int i = 0; i < S2.length(); i++) { for (int j = i; j < S2.length(); j++) { String S23 = S2.substring(i, j + 1); if (S23.length() > max.length() && S1.contains(S23)) { max = S23; } } } // Calculate the ASCII sum of the longest common substring int sum = 0; for (char ch : max.toCharArray()) { sum += (int) ch; } return sum; }
public class LongestCommonSubstring { public static int findEncodedSecret(String S1, String S2) { int maxLength = 0; // Length of the longest common substring String longestCommonSubstring = ""; // Store the first longest common substring // Iterate through all substrings of S1 for (int i = 0; i < S1.length(); i++) { for (int j = i + 1; j maxLength) { maxLength = subStr.length(); longestCommonSubstring = subStr; } } } } // If no common substring is found, return 0 if (maxLength == 0) { return 0; } // Compute the ASCII sum of the longest common substring int asciiSum = 0; for (char c : longestCommonSubstring.toCharArray()) { asciiSum += (int) c; } return asciiSum; } public static void main(String[] args) { String input1 = "adventure"; String input2 = "future"; int result = findEncodedSecret(input1, input2); System.out.println(result); // Output: 448 } }
public class LongestCommonSubstring { public static int findEncodedSecret(String S1, String S2) { int m = S1.length(); int n = S2.length(); int[][] dp = new int[m + 1][n + 1]; int maxLength = 0; // Length of the longest common substring int endIndex = -1; // End index of the longest common substring in S1 // Dynamic Programming to find longest common substring for (int i = 1; i
Cleared both Aptitude and coding round. Thank you so much ❤ your videos helped me a lot😊
is it on campus or off campus ?
@@lavanyakethavath4706 off
Bro in coding round can we write only logic or write everything clear my doubt bro
Are the coding questions getting repeated
@@abhi_coder6practice leetcode youwill know
0:58 It my dearest request that 0:58 on this time stamp screenshot question Please make a video covering answer of those question, it really help full for us thank you so much for your kind work.
16:20 468,455,469,454,470,? In that question,i could suggest adding one to the numbers in the odd index and decreasing 1 to the numbers in the even index.this is easier.
Hnn na bhai..sir hard bata rahe 😂
453 ans?
Position question solving process is just amazing brother ❤❤
For the second coding question I would recommend everyone to go through a better tutorial to understand the pattern of finding longest common subtring , subsequences and others. These are explained much better on other channels and also go solve them in leetcode too for better practice.
s1=input()
s2=input()
l=[]
sum=0
for i in s1[0:]:
for j in s2[0:]:
if i==j:
l.append(i)
else:
continue
for i in set(l):
sum+=ord(i)
print(sum)
sir can i do like this for 2nd problen
It s the best channel in UA-cam that providing this type of helpful videos which free of charges and good quality videos supeb explanation with detailed solution I really appreciate your effort sir and very much thankful if you continue making this type of videos for us
Sir, My cognitive and technical assessment took place on 23 August 2024, its result came today or asked to give the next assessment but I am login for the next assessment but I am getting an error, Your test validity is over. The time and date of coding assessment was not mentioned in the mail, so I login before 24 hours of receiving the mail, still this error is coming.
I only had this question Rebound Height in the Accenture exam today, but most of the questions are repeated. Please learn more about this program as it won't pass all test cases.👍
Exactly. I faced the same problem. It just run 2 test cases.
Tq sir I have passed my 1st round
sir I gave the last interview round on the 23rd but till now, have not heard anything from Accenture. anyone else BCA Graduate who attended this interview got a reply from Accenture please let me know.
Thankyou sir. I cleared my cognitive assessment. I watched your videos 😊❤
hello sir, sir i completely believing in you and this channel for Accenture preparations, is this enough for me to crack the exam?
No this is not enough.
@@OnlineStudy4u why sir
I completed my Aptitude round on 23rd OCT when will I get the coding assessment?
Actually Bhai you are really great man for teaching in a easy way
Sir, is this same pattern follows to non engineering courses too
Thank You ONLINESTUDY4U ,my fav channel
Hello sir,
I have applied for the record to reports associate. How is the recruitment procedure for the bcom graduates. Do we have any exams. Please guide on the interview procedure for the R2R post sir please please.
keep going you are doing great job
can you please explain the second question
using python?
00:05 Solving and discussing repeated questions from Accenture exams
02:11 Solving mathematical equations using logic
06:38 Accenture questions are repeating, providing opportunities for higher scores.
09:04 Decode code language for given words.
14:25 Accenture crash course offers comprehensive preparation for competitive exams
16:47 Solving seating arrangement problems through systematic experimentation
20:46 Solving seating arrangement problem with logic
22:59 Explaining penalty calculation for late electricity bill payment
27:32 Accenture coding problem on rebound height
29:33 Calculating the height of ball after rebounds
33:31 Deriving and applying V upon VN formula to calculate values
35:34 Code to calculate H multiplied by V upon V and square
39:37 Finding the longest common substring between two strings is crucial for decoding a secret message using character encoding.
41:34 Finding longest common substring between two strings
45:45 Matching characters and search strategy
47:33 Problem-solving using recursive approach
51:19 Finding the largest common substring
53:20 Find the largest common substring
57:27 Finding matching substrings using incrementing method
59:30 Finding the longest common substring
1:04:03 Finding the starting index of the longest common substring
1:06:07 Reset substring count to zero for new substring formation
1:10:22 Type casting characters to integers in C++
1:12:23 Explaining the time complexity of the recursive method for finding common substrings
1:16:04 Explanation of the approach for comparing two arrays
1:18:02 Algorithm to find and count matching substrings
1:22:05 Explaining DP approach for finding longest common substring
1:23:52 Finding Longest Common Substring using Dynamic Programming
1:28:32 Explanation of dynamic programming approach for finding longest common substring
1:30:36 Explaining how to find the answer when Max L is zero
1:34:54 Optimizing time complexity through efficient matrix traversal
These ai generated timestamps are of no use
Thank you sir for helping us
Hello sir, hope you are having a good day.
I did both the code questions correctly, is there a guarantee of getting interview call?
Sir cleared accenture ,thankyou very much ..your videos helped a lot.I watched all your videos regarding accenture and made it .
Super . Get ready for interview
@@OnlineStudy4u sir done with interview and get selected for ASE role
@@dostirathi8254is coding questions repeated? Please let me know
I'm flowing since 10th class now I'm pursuing mca 1st year I hope I will achieve one day for your teaching 😊
MCA🙌
best for preparation
In test camera should on or off
I think this is not the correct solution to rebound height coding problem since this exact code passed only 2/10 TCs in my case and even after changing different data types and trying different way, I still could not get it over 2/10. Accenture should look into this.
yes same error
can the coding questions be solved using any programming language?or only using C++?
Very nice video!
Can we use pen and paper in Accenture online assesment?
@online study for you say can we use pen and paper on online assessment
@OnlineStudy4u Can we use pen and paper in Accenture test .... Tell about this
obviously guys otherwise how u gonna solve apti questions
Like how could someone be so dumb....!!
😂😂 i can be @@bossnation8921
Thankyou so much sir.
Parnaam.
Guys when we can expect our Accenture Communication Round
SS sir for which job role this assessment was taken?
very useful. thank you sir .
Ss sir we are following the questions 468,455,469,454,470 ,? This is alternative series +1 and -1
that is also correct, A no series questions can have many logics
How Many Days It Takes To Get Accenture Communication Round Mail After Our First Round Completed
Sir, I have applied for Packaged APP Development Associate in accenture. I received assesment slot booking mail on 20th August, but it was showing "No slots available at the moment. Comeback later!".
Will I get another mail regarding slots booking.?
Will I able to proceed further in the hiring process.
What happened
did you inform them about this issue? have they done anything to resolve it?
Does this role System and Application Services Associate requires coding questions??
Hii I have written exam on 23rd and done coding one question passed all test case and 2nd one was just attempted do I get qualified for next round sir pls reply
Did u qualified
Tell broo
Did U qualify???????????
Yes
Done with communication round also
@@tushar404 waiting for interview to schedule
Sir were these coding questions only for technical round or also for cognitive round ??
I got OL on 7th august
When can I expect DOJ
Accenture PADA
I completed my interview on August 6th but I got mail to register once again we have to register again or not
In the 2nd question, the approach u followed is too lengthy we can solve it by seeing that in every column there must be a blank box without a dot so only option 2 is possible...... u should have thought more smartly.Thank u
@@sayakpaul9488 how blank box without the dot ? Please explain? That is the difference between a teacher and a leaner . A teacher think about the students and explain each and everything so the student understand things without any doubt. but a leaner think about how he can solve without telling logic to people. Hope u understand now !
@@OnlineStudy4u ok
this was held oncampus or offcampus
off campus
this time accenture conducted on which platform sir
How you get these photos ...is phone allowed there ? 🤔
I had the Accenture exam yesterday but ny wifi was not working so i raised a ticket to delay my schedule ,now when can i expect?😅
Was it offcampus or on campus , also college or online
@@pleasantdayNwisdom it was off campus and was online nd i raised the ticket and as always they said we solved ur issue , do u have any idea will i get the assessment link again or m i rejected 🙂
sir online assessment exam held in college campus or at home?
Reply please
@@utkarshmishra998 if you applied through ur clg placement ,then it only happen in clg campus only
what is the platform for this exam ??\
Where can i find coding lectures
sir plz make this coding in java/c plzz i really need urgent
Amazing
Someone kindly share Accenture apply link
When to expect communication round??
the dates are not fixed.
Thank You
helpfull so much
sir what is the cutoff for the online assessment
I registered for an accenture campus drive at the end of july, then when can i expect accenture exam
Guys anyone who wrote accenture can you tell me online assessment is in college or from home?
thank you sir
Sir,can you solve the code in python please
// You are using Java
import java.util.*;
class acc{
public static void main(String args[])
{
Scanner obj=new Scanner(System.in);
String s1=obj.nextLine();
String s2=obj.nextLine();
int n=s1.length();
int m=s2.length();
int arr[][]=new int[n+1][m+1];
int max_len=0;
int row=0;
int col=0;
for(int i=1;i
Anyone whose assessment was on 23 Aug got interview mail?
No
Test validity over😢
Same issue, Mera to directly system hi shutdown ho gya. Fir se login Kiya toh test validity expire aise dikha rha tha. What can do now. Test incomplete hi rh gya
Same issue.after successfully completed cognitive assessment.i could 'nt attend the coding assessment.the login page shows test Validity is over.and I got a message on WhatsApp that " you will receive a notification soon to participate in the next round." I m confused.and I don't know what to do.??
Please reply
Same
Same issue did u raise a ticket
@@sasirekha9254 yes
Nice 🎉
Sir coding assessment keliye login nhi ho raha, test validity is over it's showing?? Means
Rise the tickets in Accenture you receive resedule but with in 24 hours from start of assessment your assessment
Same issue. What can we do?
thanks
Does anyone get the communication interview link ?
Tnx sir
Without DP
public class Solution {
public static int calculateAsciiSumOfLongestCommonSubstring(String S1, String S2) {
String max = "";
// Iterate over S2 to find substrings
for (int i = 0; i < S2.length(); i++) {
for (int j = i; j < S2.length(); j++) {
String S23 = S2.substring(i, j + 1);
if (S23.length() > max.length() && S1.contains(S23)) {
max = S23;
}
}
}
// Calculate the ASCII sum of the longest common substring
int sum = 0;
for (char ch : max.toCharArray()) {
sum += (int) ch;
}
return sum;
}
i also used same but accenture compiler can accept this inbuilt methods is the only question
@@m1151-n8x bro can you please make it clear what you wanted to say ?
it is better not to use any inbuilt functions
Even without using inbuilt functions and DP also , we can solve in O(n^2)
Accenture me pip me daltthe hai bhai log ye true hai kya
join karo ya nhi
please share the java code of the last question
public class LongestCommonSubstring {
public static int findEncodedSecret(String S1, String S2) {
int maxLength = 0; // Length of the longest common substring
String longestCommonSubstring = ""; // Store the first longest common substring
// Iterate through all substrings of S1
for (int i = 0; i < S1.length(); i++) {
for (int j = i + 1; j maxLength) {
maxLength = subStr.length();
longestCommonSubstring = subStr;
}
}
}
}
// If no common substring is found, return 0
if (maxLength == 0) {
return 0;
}
// Compute the ASCII sum of the longest common substring
int asciiSum = 0;
for (char c : longestCommonSubstring.toCharArray()) {
asciiSum += (int) c;
}
return asciiSum;
}
public static void main(String[] args) {
String input1 = "adventure";
String input2 = "future";
int result = findEncodedSecret(input1, input2);
System.out.println(result); // Output: 448
}
}
public class LongestCommonSubstring {
public static int findEncodedSecret(String S1, String S2) {
int m = S1.length();
int n = S2.length();
int[][] dp = new int[m + 1][n + 1];
int maxLength = 0; // Length of the longest common substring
int endIndex = -1; // End index of the longest common substring in S1
// Dynamic Programming to find longest common substring
for (int i = 1; i
Anyone get communication round mail....who write exam on 23rd August?????
Did you got any update now
@@ankitapanchal9646 yeah
@@hydigiworld after how many days you got communication round mail, I mean on which date and when is your communication round
@@hydigiworld plzz reply
@@ankitapanchal9646 4
nice
a year paasout exam paper idhii
Is communication a elimination round in accenture?
no, but its score will be considered in interview
Gud
Tell in java sir please
Guys Anyone Received Accenture Communication Round Mail
No bro
@@shantanubasak9950 When We Can Expect Our Accenture Communication Round Mail
Assuming, in next week
@@chandbasha9363 is there any chances for copy bro
Anyone get communication round mail....who write exam on 23rd August
No bro...not yet
me too not got but who done on 24th they got
today u got any mail?
Second comment 😅
sir you look like brammanandham , telugu actor
thankzzz buddy🙌🧏♂
@onlinestudy pls tell
Thankyou Sir
Thanks ❤
Thanks 🎉