Guys for those who have not joined in verified students group Please contact the below instagram id instagram.com/rashwanth_?igsh=MWJ3OHk2NTJ3NTBkMQ== He will do the needful👍
Anna one doubt ... You are the right person to help me.. I learn the full stack development in nxtwave platform.... There are two option java full stack and MERN full stack which one can i chose.. You tell the depend upon you.. does not given that Like the answer please its anan one more doubt the fundamental are cover with python base to advance in fundamental curriculum
public static void fun(int n) { // if(n>0) { // System.out.print( n+ " "); // fun(n-1); This block end up in a loop. // fun(n); // } if (n == 0) { return; // Base case: stop when n reaches 0 } System.out.print(n + " "); // Print the current number fun(n - 1); // Recursive call to print the descending part if (n != 0) { // Avoid duplicate 1 in the middle System.out.print(n + " "); // Print the ascending part after recursion } }
I hope you are a JS guy. Even in js it works the same way for synchronous function. Try to run the below code in your console. function f2(){ console.log("I'm at f2"); } function f1(){ console.log("Before f2"); f2(); console.log("after f2"); } f1(); await is needed only for async functions like where we do API call etc.. Hope this helps for you.
In the course update group there is a link to join students group there we are doing verification for students And I hired a dedicated person to do this and I have mentioned his insta id in the pinned comment Until I onboard people into a proper platform it will be little hectic I agree but post that our ultimate focus should be learning
I had already covered how function local variables takes space in stack and how each stack frame gets removed from memory in my dsa playlist same gets applied here Except for static and some special language specific variables
I will be travelling that time brother. Please help me to get me a seat as I can able to access internet properly by Monday morning only. I’m bit serious about this course.
@keerthis4783 definitely not tmrw first let me onboard students properly and then I will say one confirmed date until then please focus on pre-requisites
Hi Bhuvanesh, Video is really informative and very good explanations as well. Any number^0=1 -> Ithukku neenga kudutha explanation I have never heard before. Looking forward to learn more from you. Hope I will get a seat. Fingers crossed. I'm not affordable to loose your working professional Batch1 seat. Epdiyachum seat kuduthrunga brother, humble request. I need to change my life in 2025 and it depends on your course. Thanks, CV
Bro so so late bro sorry for that please help me to the I like to submit the students verification form I submitted now please check that bro humble request
Anna please i want to join the class.. I can't afford the working professional class i just passout in 2024 in tired 3 college please help me join the course this humble request.. I very very interested to join your course
Anna one help please do not get irritate.. I was arrange amount my full effort did not make you ask for the course very very serious about the course anna i arrange 8k anna already take one loan in ujjivan Bank any change to help to join the class.. Please anna.. You can give me any work.. Place please anna.. I try best arrang the money.. Please helps me anna humble request anna..
Bro I have BCA degree and 1 year experience in front and developer. Ennala High package pogamudiyuma.bcz engineering degree mostly hire pannuvanga high package la
Degree doesn't matter in many good product based companies especially if you are already experienced The moment you have 1 or 2 offer letters nothing can stop you to get high package
Bro I am student , verification process ku passed out proof Kaalinga but inna sadhu start Panyala mana verification processla irukunu mention pannirukinga
Answer for homework: I got the output but not sure its right. class Multi { public static long multi(int n, int k) { if (k % 2 == 0) { if (k==2){ return n*n; } return multi(n, k / 2) * multi(n, k / 2); } else { return multi(n, k - 1) * n; } } public static void main(String[] args) { System.out.println("Hello World!"); long result = Multi.multi(2, 9); System.out.println("Result of multi(2, 7): " + result); } }
public class Main { public static long multi(int n, int k) { if (k == 0) return 1; if (k % 2 == 0) { if (k==2){ return n*n; } return multi(n, k / 2) * multi(n, k / 2); } else { return multi(n, k - 1) * n; } } public static void main(String[] args) { long result = Main.multi(2, 1); System.out.println("Result of multi(2, 1): " + result); } } ======================= ======================= If we add the condition " if (k == 0) return 1; " it would be efficient when k == 0 (or) k == 1
Bro please answer me i am in the final year of my college but I fill the form last week can I join this course ❤ na money ready panniten, please ennayum Sethu konga
@@jaya_bhuvaneshHey bruh, I too registered the Google form last week but haven't recieved any email or call from ur side. I have again registered the Google form now.
Guys for those who have not joined in verified students group
Please contact the below instagram id
instagram.com/rashwanth_?igsh=MWJ3OHk2NTJ3NTBkMQ==
He will do the needful👍
What are the modes of payment, bro?
Contacted this IG ID as well, no responses yet.
@barret3534 I will confirm everything in my next video reg payments please wait
Bro... Can you provide an update on payment portal for working professionals
Video starts 4:16
Nalla puriyuthu bro ❤🔥
Good one bro. I learned something new in day one of 2025 from you.
Any way marana waiting thalaivare romba adi pattachu intha 3 months relatives side as well as parents side🥲
😢😢😢
same broo 😔
Happy New Year, Waiting for this video 🙌🏻
Happy New year Bro 🎉 and waiting for payment portal joined in verified Students group!
Anna one doubt ... You are the right person to help me.. I learn the full stack development in nxtwave platform.... There are two option java full stack and MERN full stack which one can i chose.. You tell the depend upon you.. does not given that Like the answer please its anan one more doubt the fundamental are cover with python base to advance in fundamental curriculum
If you want a quick job with more opportunities go for java backend
Waiting for Jan 2🔥
I cant find the cursor while pointingout somthing please highlight the touch
Noted 👍
public static void fun(int n) {
// if(n>0) {
// System.out.print( n+ " ");
// fun(n-1); This block end up in a loop.
// fun(n);
// }
if (n == 0) {
return; // Base case: stop when n reaches 0
}
System.out.print(n + " "); // Print the current number
fun(n - 1); // Recursive call to print the descending part
if (n != 0) { // Avoid duplicate 1 in the middle
System.out.print(n + " "); // Print the ascending part after recursion
}
}
Bro, the process for all, other than students (like verifying them) starts only on jan 2, ryt?
No student verification already started remaining process will start in 2 or 3 days
@@jaya_bhuvanesh ok bro
Happy new year🎇 bro.
Happy new year 🎉🎉
Eager to crack maang bro
5:55 await podalana , it wont wait till the fuction completes
I just mentioned the sync flow
Asynchronous totally a different topic lol
I hope you are a JS guy. Even in js it works the same way for synchronous function. Try to run the below code in your console.
function f2(){
console.log("I'm at f2");
}
function f1(){
console.log("Before f2");
f2();
console.log("after f2");
}
f1();
await is needed only for async functions like where we do API call etc.. Hope this helps for you.
Lol why you going more advance to asynchronous...he just saying synchronous function working
@@chidambara_vignesh Im dot net guy, btw thank you
Happy New Year bro
Theres no link to join students group and im in the course uodates group
How to contact you bro
If theres no way to contact how can we trust you bro
In the course update group there is a link to join students group there we are doing verification for students
And I hired a dedicated person to do this and I have mentioned his insta id in the pinned comment
Until I onboard people into a proper platform it will be little hectic I agree but post that our ultimate focus should be learning
@@jaya_bhuvanesh alright i'll see
Hi Jaya,
Can you explain how memory is managed in a recursive function?
I had already covered how function local variables takes space in stack and how each stack frame gets removed from memory in my dsa playlist same gets applied here
Except for static and some special language specific variables
Hi Bhuvanesh
When can we expect registration for the course for working professionals?
sunday 6pm sharp
I will be travelling that time brother. Please help me to get me a seat as I can able to access internet properly by Monday morning only. I’m bit serious about this course.
@@chidambara_vignesh dm me when you are free before 6pm
waiting for jan 6..
Is it possible to join working professional in your course?
Yes you can join please wait for my next video where I will explain promptly how to join and everything
@@jaya_bhuvanesh Next video epo upload panuvinga tomorrow va ila Jan 3 ya .. prepare ah irukathan kekure😅
@keerthis4783 definitely not tmrw first let me onboard students properly and then I will say one confirmed date until then please focus on pre-requisites
@@jaya_bhuvanesh okay👍
Hi bro, Is this course useful for QA Automation Tester ? Or only for Developer ?
Only for dev I am afraid
Hi Bhuvanesh,
Video is really informative and very good explanations as well. Any number^0=1 -> Ithukku neenga kudutha explanation I have never heard before. Looking forward to learn more from you. Hope I will get a seat. Fingers crossed.
I'm not affordable to loose your working professional Batch1 seat. Epdiyachum seat kuduthrunga brother, humble request. I need to change my life in 2025 and it depends on your course.
Thanks,
CV
You are definitely in 😉👍
Thanks a lot brother 😊
Bro so so late bro sorry for that please help me to the I like to submit the students verification form I submitted now please check that bro humble request
@@999gaming-g9q please contact the EO
@999gaming-g9q he is a college 3rd year guy I hired !
Anna now i just pass out in 2024 July
Anna please i want to join the class.. I can't afford the working professional class i just passout in 2024 in tired 3 college please help me join the course this humble request.. I very very interested to join your course
How to contact EO
Anna one help please do not get irritate.. I was arrange amount my full effort did not make you ask for the course very very serious about the course anna i arrange 8k anna already take one loan in ujjivan Bank any change to help to join the class.. Please anna.. You can give me any work.. Place please anna.. I try best arrang the money.. Please helps me anna humble request anna..
@@999gaming-g9q i will delete this comment but ping me in insta I will reply you there 👍
Bro I have BCA degree and 1 year experience in front and developer. Ennala High package pogamudiyuma.bcz engineering degree mostly hire pannuvanga high package la
Degree doesn't matter in many good product based companies especially if you are already experienced
The moment you have 1 or 2 offer letters nothing can stop you to get high package
Bro I am student , verification process ku passed out proof Kaalinga but inna sadhu start Panyala mana verification processla irukunu mention pannirukinga
I am 2024 passed out
@@karthikravi8932please contact the EO
Does the payment for the course start at 6pm Sunday (05.01.2025)?
@@abcdabcd8605 yes
Where will i get the payment portal link?
Answer for homework:
I got the output but not sure its right.
class Multi {
public static long multi(int n, int k) {
if (k % 2 == 0) {
if (k==2){
return n*n;
}
return multi(n, k / 2) * multi(n, k / 2);
}
else {
return multi(n, k - 1) * n;
}
}
public static void main(String[] args) {
System.out.println("Hello World!");
long result = Multi.multi(2, 9);
System.out.println("Result of multi(2, 7): " + result);
}
}
public class Main {
public static long multi(int n, int k) {
if (k == 0) return 1;
if (k % 2 == 0) {
if (k==2){
return n*n;
}
return multi(n, k / 2) * multi(n, k / 2);
}
else {
return multi(n, k - 1) * n;
}
}
public static void main(String[] args) {
long result = Main.multi(2, 1);
System.out.println("Result of multi(2, 1): " + result);
}
}
=======================
=======================
If we add the condition " if (k == 0) return 1; " it would be efficient when k == 0 (or) k == 1
1st view♥
Bro please answer me i am in the final year of my college but I fill the form last week can I join this course ❤ na money ready panniten, please ennayum Sethu konga
Have you joined verified students channel ? If not ping me
@@jaya_bhuvaneshHey bruh, I too registered the Google form last week but haven't recieved any email or call from ur side. I have again registered the Google form now.
@dhanushrock9375 have you joined in telegram channel ?
@@jaya_bhuvaneshYes bro.
@@jaya_bhuvaneshI even messaged the executive coordinator. He told that he will check.
Bro I have a doubt. Zoho la round 4 and round 5 la tamil la communicate pannalamaa?
Bro zoho la language la problem illa skill matters for software development role😊
All rounds and in office as well tamil therinchurundhaa actually adhu oru advantage lol
Do finance video
Around june we will do a complete finance workshop
Happy newyear bro