These people are rare; they work hard to create courses and sessions like this for us. I encourage everyone who watches the SDET-QA video do like and subscribe to their channel.
@mridulapandey6698Ай бұрын
Boolean operater m problem feel ho rha hai
@sirisharayaprolu10 ай бұрын
people like me need ur course and guidance ..please my humble request don't make search restrictions..Ur teaching is extraordinary...pls help us...Thank you sir
@susantadas40045 күн бұрын
i am thankful to you after getting knowledge from your videos . you are great trainer.
@SantoshGayakwad-d6i8 ай бұрын
So simply Sir , you have get understand everyone
@durgeshnarute77546 ай бұрын
Thankyou Pawan Sir, got to learn some new things that i never knew about increment/decrement operations 😊
@sachinrai86967 ай бұрын
Thanks Sir. The way of explaining each and every topic in simple way its very helpful for me. And its very easy to understand.🙏
@sdetpavan6 ай бұрын
Welcome
@anadh2810 ай бұрын
Sir, please make other videos of this series accessible for us
@bandlahari9 ай бұрын
code for the assignement -Swapping of 2 numbers: package Name; public class name; { public static void main(String[] args); { int a=10, b=20; int c=a; System.out.println(c); // result-10; value of a is stores into c. int A=b; System.out.println(a); // result-20 value of b is stores into a. int B=c; System.out.println(B); // result-10 value of c is stores into b. System.out.println(A); // result is 20, System.out.println(B); // result is 10. } }
@anilgowdan89766 ай бұрын
// Assignment // 1) Swapping of 2 numbers int p=10, w=20; p=p+10; w=w-10; // using arithmetic operators System.out.println(p); result 20 System.out.println(w); result 10 int ab=150, bc=200; ab+=50; bc-=50; System.out.println(ab); result 200 // using assignment operators System.out.println(bc); result 100
@omucreations61319 ай бұрын
Sir I watch your video and I have had learned manual testing and automation testing from you guide me for internship in automation testing. If possible please make a video on this Thank you
@pavankumar78646 ай бұрын
public static void SwappingOfTwoNumbers(){ int a=10; int b=20; a=a+b; b=a-b; a=a-b; System.out.println("a value is: "+a); System.out.println("b value is: "+b); }
@hrushikeshpurohit219515 күн бұрын
a value is: 20 b value is: 10
@abhishekshahi12096 ай бұрын
Thank you so much for explaining sp easily all the topics. Thanks a lot..
@sdetpavan6 ай бұрын
Welcome
@TanuVarshney-ke8onАй бұрын
Hi Pavan sir, please reply on this assignment of Swapping 2 numbers with Arithmetic operators only without using third variable. package day3; public class Swapping2Numbers { public static void main(String[] args) { // Swapping of 2 numbers with Arithmetic Operators int a= 10; int b= 20; System.out.println("the swapped Value of a is:" +(a*2)); System.out.println("The swapped vale of b is:"+(b/2)); System.out.println("the swapped Value of a is:" +(a+10)); System.out.println("The swapped vale of b is:"+(b-10)); } }
@kanakakalpana407010 ай бұрын
Please provide documentation and pdf of java to membership persons also
@rajisgoodtimesАй бұрын
Hi sir in the video u have mentioned u have share the notepad .Can u let us know where have u share it.thank you in advance
@rescueteamdaksh4948 ай бұрын
Super explaination Sir...Danke❤🙏
@sdetpavan8 ай бұрын
Thanks
@indian-xb2nn3 ай бұрын
Thank you sir for such clear explaination
@blutopluto86864 ай бұрын
the tutorials are tailored to perfection
@ManikkavasukiUlaganathanLebeneАй бұрын
thankyou so much sir for your clear explanation
@sdetpavanАй бұрын
You are most welcome
@Mandeepkaur-et7yy7 ай бұрын
Session 3 done thanks these videos are helping me to go through java basics again, before jumping to selenium. really helpful.
@avinashkuwar29822 ай бұрын
package pavan1; public class Swapping2 { public static void main(String[] args) { int a =10; int b= 20; int x= (1==2)? 10:20; // System.out.println(x); a=x; System.out.println("a:" +a); int y= (1==1)? 10:20; b=y; System.out.println ("b:" +b); } }
@anandvenkatesh.s72944 күн бұрын
public class SwapNumbers { public static void main(String[] args) { int a = 5; int b = 10; System.out.println("Before swapping: a = " + a + ", b = " + b); // Swapping using addition and subtraction a = a + b; // a becomes 15 b = a - b; // b becomes 5 a = a - b; // a becomes 10 System.out.println("After swapping: a = " + a + ", b = " + b); } }
@asimkhan5729 ай бұрын
Hello sir, the first into of the video of this series is related to automation but after the videos it will be changed into java programming language please I requested you to bring the original one which you make a video about automation testing, using java and selenium language Thank you
@nagasaimaddula568 ай бұрын
First Java will be completed then in selenium videos he explains both Java and selenium.
@asimkhan5728 ай бұрын
@@nagasaimaddula56 ok but I completely watch it its very good. I understand properly. Thats why I want that video. He is excellent to understand the one by one point very properly. By the way Thank you
@Life_Observers7 ай бұрын
Greatful
@sdetpavan7 ай бұрын
Thanks
@ride-eat-repeat6 ай бұрын
Hi Sir, I tried this logic a += b; b = a - b; a -= b; instead of using b = a - b; I wanted to write "Short hand assignment operator" for this but I couldn't figure out. Can you please help me understand in this case how I can use "Short hand assignment operator"?
@twinkleverma31796 ай бұрын
hi, sir I have taken the membership for this course but yet i have not received any code base as you are saying n the class that you will share.
@SameerKhan-i1v5w14 күн бұрын
Hi sir how can I get the notes do provid notes if I will be member
@mahendrak-nr8zt7 ай бұрын
Sir can you please mention the link in description are comments
@divyagunasekaran49793 ай бұрын
Hi sir, where have you shared the java ppt notes kindly share sir
@prameelagavara1079 ай бұрын
Sir could you please send all the documents including PPT, notepad, word document.
@indian-xb2nn3 ай бұрын
where we can get the core java notes
@ManojMaddareddy2 ай бұрын
== doesn't compare values, it compares the adress in stack memory.. please correct it.. time 1:12:37 second.
@NadeemAfzal-ri8ju2 ай бұрын
but just by comparing address how can it know which result is bigger or which one is equal or which one is smaller???
@jayashreesureban10 ай бұрын
Sir I took one month subscription but I'm not able to access previous videos please help me
@kodeship10 ай бұрын
He is not giving reply to anyone.. it would be very helpful if he respond
@Biplabraylive10 ай бұрын
Hi Sir, It's my humble request please don't put your valuable video in member only special for selenium video 🙏
@siddharthsidd-i3i5 ай бұрын
sir,make videos on advanced java
@karthikpatil950910 ай бұрын
Sir, Could you please make a video on Karate Frame Work , please
@SVRhappy83527 ай бұрын
Good explanation sir
@sdetpavan7 ай бұрын
Thanks
@sohelmozumder44809 ай бұрын
hi sir how are you.. I don’t understand Unary binary and ternary point..😢 what is single variable and double variable
@kishoresrinivas210410 ай бұрын
Very nice abd useful information sir 💯
@sdetpavan10 ай бұрын
Thanks
@TestingBag10 ай бұрын
sir am your member ( in logical operator how can i find not( ! ) result with boolean variable
@IndulgeMusic-fw9dy2 ай бұрын
Do We able to switch after Completing this SDET Course .
@SWATHITRICKSWORLD3 ай бұрын
sir in video u told that assignment operator comes under unary operators but in chatgpt it is showing binary operators
@RamAshishSingh-m1z3 ай бұрын
He never said assignment operator is unary operators , unary operators are which we can use with single variables, yes when i searched in Chatgpt it said the same thing what you are telling.
@numeshialmapiyasiri9 ай бұрын
Thank you sir
@sdetpavan9 ай бұрын
Welcome
@dunethchadeera58383 ай бұрын
Thank you sir!!! ❤❤
@akanshasaraswat7274Ай бұрын
Hi Pawan sir, if we watch all 20 videos of core java course, this would be enough to understand for automation. Pls any one can reply'
@sdetpavanАй бұрын
Yes.
@Xyz-zya4 ай бұрын
a=10,b=20 a*=2 and b/=2 value of a=20 and b=10 is that correct
@meetmehta4717 ай бұрын
@pavan sir, I have one question that if x and y both are false then why x&y false? Why it's not true because both value are same just like true and true of 1st question... Will do pratical in some time but i am curious to know the reason... Lastly thank you for providing detailed information.
@pranaygaikwad75036 ай бұрын
when we use && we simply multiply the values for example let's consider true=1 and false=0, now for true(1) && true (1) we get 1 i.e true as ans, and if your do flase(0) && false(0) we get 0 as answer which is false inshort for && use mulitiplcation and for || use addition and try thinking true as 1 and false as 0 i hope this helps.
@meetmehta4716 ай бұрын
@@pranaygaikwad7503 thanks for clarification and helping
@jiteshshankhpal30346 ай бұрын
if we want to see the solution do we have to see that link and type it in our browser man that will take a whole hour for me
@arshiaasif51810 ай бұрын
Sir please provide access to all.
@sandeepsandy391710 ай бұрын
Firstly sorry sir asking this in selenium series... Sir, please do a video on how many types of classes or libraries are there to call APIs and read those responses in Java programming. Please please do this sir 🙏🙏🙏 🙏🙏
@akanshasaraswat7274Ай бұрын
sir how can we get video link from session?
@G-il5um5 ай бұрын
Trying to open the video link for solution caused a virus to be downloaded.
@sakalabhaktulaharika93817 ай бұрын
Hi sir, The below logic for swapping of 2 numbers is correct or not? int a=10, b=20; b=b-a; //10 a=b+a; //20
@onefactiz8048 ай бұрын
Sir how I get notes and documents?
@pandianpandian46767 ай бұрын
Am getting hti erro java.lang.ClassNotFoundException: while executing the program how to resolve this
@oldisgold924210 ай бұрын
easy to understanding..
@sdetpavan10 ай бұрын
Thanks
@HemanthKumar-oq6lo7 ай бұрын
how can we join your live session?
@AJITHKUMAR-rj1od10 ай бұрын
I have taken membership Can tell me by the what time the class will start
@amazingTHOUGHTSlover5 ай бұрын
done.thank you sir.
@sdetpavan5 ай бұрын
Welcome
@poojasoni534010 ай бұрын
Do i need to go through java playlist
@suriyapraba569110 ай бұрын
Thanks sir🎉
@sdetpavan10 ай бұрын
Welcome
@sindhuaras64689 ай бұрын
Sir after this you have uploaded session 9 where is 4 5 6 7 8 please upload alla vedioa
@Om85949 ай бұрын
Check playlist u will find all videos
@vipinkumark44769 ай бұрын
Can any one share the notes and these class files? I couldn't see any attachment's please 🙏🏻🙏🏻🙏🏻🙏🏻
@GADGETS-ft3lu10 ай бұрын
Hi sir , sir I took member ship of your class I paid money but I don't get this membership yet.
@jayashreesureban10 ай бұрын
Same here
@JyotiRao-wk9gw5 ай бұрын
Where can we see notes
@bankarswapnil5810 ай бұрын
How many days will this series go on
@archanaanirudhan862110 ай бұрын
Hi sir, I'm trying to join the membership, the payment is getting debited but it's showing error message in the you tube. Could you please help me with the payment. Thank you
@ARIFAQEELAHMAD-k7w10 ай бұрын
how to join channel
@JyotiRao-wk9gw5 ай бұрын
Where can we the notes
@tasneemshaikh1903 ай бұрын
a=10, b=20; a=a+b; b=a-b; a=a-b;
@aditivairale728110 ай бұрын
Hii sir, It's an humble request to you that don't put your videos to members only . I done Testing course course but there is better understanding of programming and each program sentence explain by you. I want to learn from you sir don't do that sir. If I get an membership then how much time it will be required to initially start 😢 please reply
@rachanajoshi482110 ай бұрын
where can we get program documents or notes ?
@AbhayGupta-yg2fc6 ай бұрын
Did u get the notes?
@pulkitbhardwaj531110 ай бұрын
What is the timing of daily classs?
@reddyvlogspsr723710 ай бұрын
a=a+b b=a-b a=a-b Swapping
@AdityaMishra_am10 ай бұрын
Hello Sir, I am not able to access notes that you mentioned in video and also the link. 1:35:21
@Lets_Roam8 ай бұрын
kzbin.info/www/bejne/aafFmq2Ba7Ctl7c
@anushakonka406010 ай бұрын
Sir you mentioned in first video that you are giving these videos for free. But now videos are in membership
@lifestyleworld682110 ай бұрын
free main kuch nahi hona chahiye , Kejriwal ne bi free kiya tha dekha kya hua tha . And it just a 159 rs not a huge amount that you can't pay for your growth.
@PPIEA9 ай бұрын
hes charging a very fair price and for the quality of the content its a steal dont be cheap support mr.pavan
@Aptilover8 ай бұрын
Sab to video public h private kb kui classes?
@SilaBlog-ld4zd5 ай бұрын
Hi@@Aptilover
@Aptilover5 ай бұрын
@@SilaBlog-ld4zd hello
@mudadlaprasad972810 ай бұрын
Clear
@alokeducationexplore33019 ай бұрын
Class Swap{ Psvm (str arr[]){ int a=10, b=20; a=a+10; b=b-10; Sopln(a); Sopln(b); } }
@RiyaMaheshwari-iq7dg10 ай бұрын
payment is done but i am not able to see the vedios
@mohamedansari168210 ай бұрын
Thanks
@sdetpavan10 ай бұрын
Welcome
@maitridas66795 ай бұрын
👍
@sandipbhagwat-o2s10 ай бұрын
pls upload next lecture
@shaiksiraj994210 ай бұрын
Is this a free course or paid one???
@kishoresrinivas210410 ай бұрын
Waiting for you class today
@gukapriyan849610 ай бұрын
After a few hours it will be only on members only
@RamNarayan-l5p2 ай бұрын
can any one send the notes please?
@TalentifyNY6 ай бұрын
public class Swapping2Numbers { public static void main(String[] args) { int a = 10; int b = 20; System.out.println("value of a and b before swapping, a= "+ a +" b=" + b); //swapping value of two numbers without using temp variable a = a+ b; //now a is 30 and b is 20 b = a -b; //now a is 30 but b is 10 (original value of a) a = a -b; //now a is 20 and b is 10, numbers are swapped System.out.println("value of a and b after swapping, a="+ a +" b=" + b); } }
@sachinrai86966 ай бұрын
Can any body share me the PPT pdf of complete java
@jyotitipgond664910 ай бұрын
Yes
@SunithaL-we3qn10 ай бұрын
Hi sir this is free course sir
@ravikanth471510 ай бұрын
Sir dont put this in member only.. my humble request pls