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.
@mridulapandey66982 ай бұрын
Boolean operater m problem feel ho rha hai
@sirisharayaprolu11 ай бұрын
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
@SantoshGayakwad-d6i10 ай бұрын
So simply Sir , you have get understand everyone
@pankajnikam5505 күн бұрын
Thank you sir. Great explain
@susantadas4004Ай бұрын
i am thankful to you after getting knowledge from your videos . you are great trainer.
@durgeshnarute77547 ай бұрын
Thankyou Pawan Sir, got to learn some new things that i never knew about increment/decrement operations 😊
@bandlahari10 ай бұрын
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. } }
@alanleonelvera4611Ай бұрын
The real GOAT! Thank you Sir
@sachinrai86968 ай бұрын
Thanks Sir. The way of explaining each and every topic in simple way its very helpful for me. And its very easy to understand.🙏
@sdetpavan8 ай бұрын
Welcome
@rajadheeraj423Ай бұрын
@@sdetpavan Sir, can we get complete PDF data of this all videos?
@anadh2811 ай бұрын
Sir, please make other videos of this series accessible for us
@abhishekshahi12097 ай бұрын
Thank you so much for explaining sp easily all the topics. Thanks a lot..
@sdetpavan7 ай бұрын
Welcome
@ManikkavasukiUlaganathanLebene2 ай бұрын
thankyou so much sir for your clear explanation
@sdetpavan2 ай бұрын
You are most welcome
@pavankumar78647 ай бұрын
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); }
@hrushikeshpurohit2195Ай бұрын
a value is: 20 b value is: 10
@rescueteamdaksh4949 ай бұрын
Super explaination Sir...Danke❤🙏
@sdetpavan9 ай бұрын
Thanks
@indian-xb2nn4 ай бұрын
Thank you sir for such clear explaination
@blutopluto86866 ай бұрын
the tutorials are tailored to perfection
@anilgowdan89767 ай бұрын
// 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
@harikrishna-bp7zmАй бұрын
int p = 10; w =20; p = p+w;(10+20=30) so P of new value is 30; w = p-w; (30-20= 10); W = 10; p = p-w; (30-10 = 20); p=20;
@omucreations613110 ай бұрын
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
@avinashkuwar29823 ай бұрын
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); } }
@Mandeepkaur-et7yy8 ай бұрын
Session 3 done thanks these videos are helping me to go through java basics again, before jumping to selenium. really helpful.
@rajisgoodtimes2 ай бұрын
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
@twinkleverma31797 ай бұрын
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.
@kanakakalpana407011 ай бұрын
Please provide documentation and pdf of java to membership persons also
@fayyazshaik120213 күн бұрын
@sdetpavan Sir It will be great if you can provide us the note pad notes and video links you share for assignments
@numeshialmapiyasiri10 ай бұрын
Thank you sir
@sdetpavan10 ай бұрын
Welcome
@anandvenkatesh.s7294Ай бұрын
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); } }
@Life_Observers9 ай бұрын
Greatful
@sdetpavan9 ай бұрын
Thanks
@dunethchadeera58384 ай бұрын
Thank you sir!!! ❤❤
@jayashreesureban11 ай бұрын
Sir I took one month subscription but I'm not able to access previous videos please help me
@kodeship11 ай бұрын
He is not giving reply to anyone.. it would be very helpful if he respond
@kishoresrinivas210411 ай бұрын
Very nice abd useful information sir 💯
@sdetpavan11 ай бұрын
Thanks
@TestingBag11 ай бұрын
sir am your member ( in logical operator how can i find not( ! ) result with boolean variable
@KrisuParikh4 күн бұрын
thank you
@SVRhappy83528 ай бұрын
Good explanation sir
@sdetpavan8 ай бұрын
Thanks
@divyagunasekaran49794 ай бұрын
Hi sir, where have you shared the java ppt notes kindly share sir
@indian-xb2nn4 ай бұрын
where we can get the core java notes
@ManojMaddareddy4 ай бұрын
== doesn't compare values, it compares the adress in stack memory.. please correct it.. time 1:12:37 second.
@NadeemAfzal-ri8ju3 ай бұрын
but just by comparing address how can it know which result is bigger or which one is equal or which one is smaller???
@oldisgold924211 ай бұрын
easy to understanding..
@sdetpavan11 ай бұрын
Thanks
@asimkhan57210 ай бұрын
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
@nagasaimaddula569 ай бұрын
First Java will be completed then in selenium videos he explains both Java and selenium.
@asimkhan5729 ай бұрын
@@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
@ride-eat-repeat8 ай бұрын
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"?
@mahendrak-nr8zt8 ай бұрын
Sir can you please mention the link in description are comments
@sohelmozumder448010 ай бұрын
hi sir how are you.. I don’t understand Unary binary and ternary point..😢 what is single variable and double variable
@AdityaMishra_am11 ай бұрын
Hello Sir, I am not able to access notes that you mentioned in video and also the link. 1:35:21
@Lets_Roam9 ай бұрын
kzbin.info/www/bejne/aafFmq2Ba7Ctl7c
@Biplabraylive11 ай бұрын
Hi Sir, It's my humble request please don't put your valuable video in member only special for selenium video 🙏
@suriyapraba569111 ай бұрын
Thanks sir🎉
@sdetpavan11 ай бұрын
Welcome
@SameerKhan-i1v5wАй бұрын
Hi sir how can I get the notes do provid notes if I will be member
@karthikpatil950911 ай бұрын
Sir, Could you please make a video on Karate Frame Work , please
@SWATHITRICKSWORLD4 ай бұрын
sir in video u told that assignment operator comes under unary operators but in chatgpt it is showing binary operators
@RamAshishSingh-m1z4 ай бұрын
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.
@akanshasaraswat72742 ай бұрын
sir how can we get video link from session?
@madhurmsai4721Ай бұрын
Sir, where I get notes of your class..???
@sylesh6161Ай бұрын
any lead on Notes ?
@amazingTHOUGHTSlover7 ай бұрын
done.thank you sir.
@sdetpavan6 ай бұрын
Welcome
@IndulgeMusic-fw9dy3 ай бұрын
Do We able to switch after Completing this SDET Course .
@siddharthsidd-i3i6 ай бұрын
sir,make videos on advanced java
@TanuVarshney-ke8on2 ай бұрын
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)); } }
@pandianpandian46768 ай бұрын
Am getting hti erro java.lang.ClassNotFoundException: while executing the program how to resolve this
@onefactiz8049 ай бұрын
Sir how I get notes and documents?
@G-il5um7 ай бұрын
Trying to open the video link for solution caused a virus to be downloaded.
@AJITHKUMAR-rj1od11 ай бұрын
I have taken membership Can tell me by the what time the class will start
@meetmehta4718 ай бұрын
@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.
@pranaygaikwad75037 ай бұрын
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.
@meetmehta4717 ай бұрын
@@pranaygaikwad7503 thanks for clarification and helping
@arshiaasif51811 ай бұрын
Sir please provide access to all.
@sakalabhaktulaharika93818 ай бұрын
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
@HemanthKumar-oq6lo8 ай бұрын
how can we join your live session?
@GADGETS-ft3lu11 ай бұрын
Hi sir , sir I took member ship of your class I paid money but I don't get this membership yet.
@jayashreesureban11 ай бұрын
Same here
@akanshasaraswat72743 ай бұрын
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'
@sdetpavan3 ай бұрын
Yes.
@jiteshshankhpal30347 ай бұрын
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
@Xyz-zya5 ай бұрын
a=10,b=20 a*=2 and b/=2 value of a=20 and b=10 is that correct
@prameelagavara10710 ай бұрын
Sir could you please send all the documents including PPT, notepad, word document.
@tasneemshaikh1905 ай бұрын
a=10, b=20; a=a+b; b=a-b; a=a-b;
@pulkitbhardwaj531111 ай бұрын
What is the timing of daily classs?
@poojasoni534011 ай бұрын
Do i need to go through java playlist
@sandeepsandy391711 ай бұрын
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 🙏🙏🙏 🙏🙏
@MyGamingEra5 күн бұрын
Where we get notes😅
@archanaanirudhan862111 ай бұрын
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
@reddyvlogspsr723711 ай бұрын
a=a+b b=a-b a=a-b Swapping
@mohamedansari168211 ай бұрын
Thanks
@sdetpavan11 ай бұрын
Welcome
@poojasurajkudale8904Ай бұрын
how to get notes?
@bankarswapnil5811 ай бұрын
How many days will this series go on
@rachanajoshi482111 ай бұрын
where can we get program documents or notes ?
@AbhayGupta-yg2fc7 ай бұрын
Did u get the notes?
@anushakonka406011 ай бұрын
Sir you mentioned in first video that you are giving these videos for free. But now videos are in membership
@lifestyleworld682111 ай бұрын
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.
@PPIEA10 ай бұрын
hes charging a very fair price and for the quality of the content its a steal dont be cheap support mr.pavan
@PookieThisSide-d9c9 ай бұрын
Sab to video public h private kb kui classes?
@SilaBlog-ld4zd6 ай бұрын
Hi@@PookieThisSide-d9c
@PookieThisSide-d9c6 ай бұрын
@@SilaBlog-ld4zd hello
@gukapriyan849611 ай бұрын
After a few hours it will be only on members only
@vipinkumark447610 ай бұрын
Can any one share the notes and these class files? I couldn't see any attachment's please 🙏🏻🙏🏻🙏🏻🙏🏻
@JyotiRao-wk9gw6 ай бұрын
Where can we see notes
@ARIFAQEELAHMAD-k7w11 ай бұрын
how to join channel
@JyotiRao-wk9gw6 ай бұрын
Where can we the notes
@sindhuaras646811 ай бұрын
Sir after this you have uploaded session 9 where is 4 5 6 7 8 please upload alla vedioa
@Om859411 ай бұрын
Check playlist u will find all videos
@aditivairale728111 ай бұрын
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
@mudadlaprasad972811 ай бұрын
Clear
@sandipbhagwat-o2s11 ай бұрын
pls upload next lecture
@RiyaMaheshwari-iq7dg11 ай бұрын
payment is done but i am not able to see the vedios
@kishoresrinivas210411 ай бұрын
Waiting for you class today
@jyotitipgond664911 ай бұрын
Yes
@maitridas66796 ай бұрын
👍
@RamNarayan-l5p3 ай бұрын
can any one send the notes please?
@shaiksiraj994211 ай бұрын
Is this a free course or paid one???
@sachinrai86968 ай бұрын
Can any body share me the PPT pdf of complete java
@SunithaL-we3qn11 ай бұрын
Hi sir this is free course sir
@mudadlaprasad972811 ай бұрын
Logical operators
@TalentifyNY7 ай бұрын
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); } }
@ravikanth471511 ай бұрын
Sir dont put this in member only.. my humble request pls
@alokeducationexplore330110 ай бұрын
Class Swap{ Psvm (str arr[]){ int a=10, b=20; a=a+10; b=b-10; Sopln(a); Sopln(b); } }