Session 3- Working with Java Operators and Expressions | Java & Selenium | 2024 New series

  Рет қаралды 124,384

SDET- QA

SDET- QA

Күн бұрын

Пікірлер: 145
@POOJASAHU-kp3wm
@POOJASAHU-kp3wm 4 ай бұрын
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
@mridulapandey6698 2 ай бұрын
Boolean operater m problem feel ho rha hai
@sirisharayaprolu
@sirisharayaprolu 11 ай бұрын
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-d6i
@SantoshGayakwad-d6i 10 ай бұрын
So simply Sir , you have get understand everyone
@pankajnikam550
@pankajnikam550 5 күн бұрын
Thank you sir. Great explain
@susantadas4004
@susantadas4004 Ай бұрын
i am thankful to you after getting knowledge from your videos . you are great trainer.
@durgeshnarute7754
@durgeshnarute7754 7 ай бұрын
Thankyou Pawan Sir, got to learn some new things that i never knew about increment/decrement operations 😊
@bandlahari
@bandlahari 10 ай бұрын
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
@alanleonelvera4611 Ай бұрын
The real GOAT! Thank you Sir
@sachinrai8696
@sachinrai8696 8 ай бұрын
Thanks Sir. The way of explaining each and every topic in simple way its very helpful for me. And its very easy to understand.🙏
@sdetpavan
@sdetpavan 8 ай бұрын
Welcome
@rajadheeraj423
@rajadheeraj423 Ай бұрын
@@sdetpavan Sir, can we get complete PDF data of this all videos?
@anadh28
@anadh28 11 ай бұрын
Sir, please make other videos of this series accessible for us
@abhishekshahi1209
@abhishekshahi1209 7 ай бұрын
Thank you so much for explaining sp easily all the topics. Thanks a lot..
@sdetpavan
@sdetpavan 7 ай бұрын
Welcome
@ManikkavasukiUlaganathanLebene
@ManikkavasukiUlaganathanLebene 2 ай бұрын
thankyou so much sir for your clear explanation
@sdetpavan
@sdetpavan 2 ай бұрын
You are most welcome
@pavankumar7864
@pavankumar7864 7 ай бұрын
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
@hrushikeshpurohit2195 Ай бұрын
a value is: 20 b value is: 10
@rescueteamdaksh494
@rescueteamdaksh494 9 ай бұрын
Super explaination Sir...Danke❤🙏
@sdetpavan
@sdetpavan 9 ай бұрын
Thanks
@indian-xb2nn
@indian-xb2nn 4 ай бұрын
Thank you sir for such clear explaination
@blutopluto8686
@blutopluto8686 6 ай бұрын
the tutorials are tailored to perfection
@anilgowdan8976
@anilgowdan8976 7 ай бұрын
// 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
@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;
@omucreations6131
@omucreations6131 10 ай бұрын
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
@avinashkuwar2982
@avinashkuwar2982 3 ай бұрын
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-et7yy
@Mandeepkaur-et7yy 8 ай бұрын
Session 3 done thanks these videos are helping me to go through java basics again, before jumping to selenium. really helpful.
@rajisgoodtimes
@rajisgoodtimes 2 ай бұрын
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
@twinkleverma3179
@twinkleverma3179 7 ай бұрын
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.
@kanakakalpana4070
@kanakakalpana4070 11 ай бұрын
Please provide documentation and pdf of java to membership persons also
@fayyazshaik1202
@fayyazshaik1202 13 күн бұрын
@sdetpavan Sir It will be great if you can provide us the note pad notes and video links you share for assignments
@numeshialmapiyasiri
@numeshialmapiyasiri 10 ай бұрын
Thank you sir
@sdetpavan
@sdetpavan 10 ай бұрын
Welcome
@anandvenkatesh.s7294
@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_Observers
@Life_Observers 9 ай бұрын
Greatful
@sdetpavan
@sdetpavan 9 ай бұрын
Thanks
@dunethchadeera5838
@dunethchadeera5838 4 ай бұрын
Thank you sir!!! ❤❤
@jayashreesureban
@jayashreesureban 11 ай бұрын
Sir I took one month subscription but I'm not able to access previous videos please help me
@kodeship
@kodeship 11 ай бұрын
He is not giving reply to anyone.. it would be very helpful if he respond
@kishoresrinivas2104
@kishoresrinivas2104 11 ай бұрын
Very nice abd useful information sir 💯
@sdetpavan
@sdetpavan 11 ай бұрын
Thanks
@TestingBag
@TestingBag 11 ай бұрын
sir am your member ( in logical operator how can i find not( ! ) result with boolean variable
@KrisuParikh
@KrisuParikh 4 күн бұрын
thank you
@SVRhappy8352
@SVRhappy8352 8 ай бұрын
Good explanation sir
@sdetpavan
@sdetpavan 8 ай бұрын
Thanks
@divyagunasekaran4979
@divyagunasekaran4979 4 ай бұрын
Hi sir, where have you shared the java ppt notes kindly share sir
@indian-xb2nn
@indian-xb2nn 4 ай бұрын
where we can get the core java notes
@ManojMaddareddy
@ManojMaddareddy 4 ай бұрын
== doesn't compare values, it compares the adress in stack memory.. please correct it.. time 1:12:37 second.
@NadeemAfzal-ri8ju
@NadeemAfzal-ri8ju 3 ай бұрын
but just by comparing address how can it know which result is bigger or which one is equal or which one is smaller???
@oldisgold9242
@oldisgold9242 11 ай бұрын
easy to understanding..
@sdetpavan
@sdetpavan 11 ай бұрын
Thanks
@asimkhan572
@asimkhan572 10 ай бұрын
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
@nagasaimaddula56
@nagasaimaddula56 9 ай бұрын
First Java will be completed then in selenium videos he explains both Java and selenium.
@asimkhan572
@asimkhan572 9 ай бұрын
@@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-repeat
@ride-eat-repeat 8 ай бұрын
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-nr8zt
@mahendrak-nr8zt 8 ай бұрын
Sir can you please mention the link in description are comments
@sohelmozumder4480
@sohelmozumder4480 10 ай бұрын
hi sir how are you.. I don’t understand Unary binary and ternary point..😢 what is single variable and double variable
@AdityaMishra_am
@AdityaMishra_am 11 ай бұрын
Hello Sir, I am not able to access notes that you mentioned in video and also the link. 1:35:21
@Lets_Roam
@Lets_Roam 9 ай бұрын
kzbin.info/www/bejne/aafFmq2Ba7Ctl7c
@Biplabraylive
@Biplabraylive 11 ай бұрын
Hi Sir, It's my humble request please don't put your valuable video in member only special for selenium video 🙏
@suriyapraba5691
@suriyapraba5691 11 ай бұрын
Thanks sir🎉
@sdetpavan
@sdetpavan 11 ай бұрын
Welcome
@SameerKhan-i1v5w
@SameerKhan-i1v5w Ай бұрын
Hi sir how can I get the notes do provid notes if I will be member
@karthikpatil9509
@karthikpatil9509 11 ай бұрын
Sir, Could you please make a video on Karate Frame Work , please
@SWATHITRICKSWORLD
@SWATHITRICKSWORLD 4 ай бұрын
sir in video u told that assignment operator comes under unary operators but in chatgpt it is showing binary operators
@RamAshishSingh-m1z
@RamAshishSingh-m1z 4 ай бұрын
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.
@akanshasaraswat7274
@akanshasaraswat7274 2 ай бұрын
sir how can we get video link from session?
@madhurmsai4721
@madhurmsai4721 Ай бұрын
Sir, where I get notes of your class..???
@sylesh6161
@sylesh6161 Ай бұрын
any lead on Notes ?
@amazingTHOUGHTSlover
@amazingTHOUGHTSlover 7 ай бұрын
done.thank you sir.
@sdetpavan
@sdetpavan 6 ай бұрын
Welcome
@IndulgeMusic-fw9dy
@IndulgeMusic-fw9dy 3 ай бұрын
Do We able to switch after Completing this SDET Course .
@siddharthsidd-i3i
@siddharthsidd-i3i 6 ай бұрын
sir,make videos on advanced java
@TanuVarshney-ke8on
@TanuVarshney-ke8on 2 ай бұрын
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)); } }
@pandianpandian4676
@pandianpandian4676 8 ай бұрын
Am getting hti erro java.lang.ClassNotFoundException: while executing the program how to resolve this
@onefactiz804
@onefactiz804 9 ай бұрын
Sir how I get notes and documents?
@G-il5um
@G-il5um 7 ай бұрын
Trying to open the video link for solution caused a virus to be downloaded.
@AJITHKUMAR-rj1od
@AJITHKUMAR-rj1od 11 ай бұрын
I have taken membership Can tell me by the what time the class will start
@meetmehta471
@meetmehta471 8 ай бұрын
@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.
@pranaygaikwad7503
@pranaygaikwad7503 7 ай бұрын
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.
@meetmehta471
@meetmehta471 7 ай бұрын
@@pranaygaikwad7503 thanks for clarification and helping
@arshiaasif518
@arshiaasif518 11 ай бұрын
Sir please provide access to all.
@sakalabhaktulaharika9381
@sakalabhaktulaharika9381 8 ай бұрын
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-oq6lo
@HemanthKumar-oq6lo 8 ай бұрын
how can we join your live session?
@GADGETS-ft3lu
@GADGETS-ft3lu 11 ай бұрын
Hi sir , sir I took member ship of your class I paid money but I don't get this membership yet.
@jayashreesureban
@jayashreesureban 11 ай бұрын
Same here
@akanshasaraswat7274
@akanshasaraswat7274 3 ай бұрын
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
@sdetpavan 3 ай бұрын
Yes.
@jiteshshankhpal3034
@jiteshshankhpal3034 7 ай бұрын
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-zya
@Xyz-zya 5 ай бұрын
a=10,b=20 a*=2 and b/=2 value of a=20 and b=10 is that correct
@prameelagavara107
@prameelagavara107 10 ай бұрын
Sir could you please send all the documents including PPT, notepad, word document.
@tasneemshaikh190
@tasneemshaikh190 5 ай бұрын
a=10, b=20; a=a+b; b=a-b; a=a-b;
@pulkitbhardwaj5311
@pulkitbhardwaj5311 11 ай бұрын
What is the timing of daily classs?
@poojasoni5340
@poojasoni5340 11 ай бұрын
Do i need to go through java playlist
@sandeepsandy3917
@sandeepsandy3917 11 ай бұрын
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 🙏🙏🙏 🙏🙏
@MyGamingEra
@MyGamingEra 5 күн бұрын
Where we get notes😅
@archanaanirudhan8621
@archanaanirudhan8621 11 ай бұрын
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
@reddyvlogspsr7237
@reddyvlogspsr7237 11 ай бұрын
a=a+b b=a-b a=a-b Swapping
@mohamedansari1682
@mohamedansari1682 11 ай бұрын
Thanks
@sdetpavan
@sdetpavan 11 ай бұрын
Welcome
@poojasurajkudale8904
@poojasurajkudale8904 Ай бұрын
how to get notes?
@bankarswapnil58
@bankarswapnil58 11 ай бұрын
How many days will this series go on
@rachanajoshi4821
@rachanajoshi4821 11 ай бұрын
where can we get program documents or notes ?
@AbhayGupta-yg2fc
@AbhayGupta-yg2fc 7 ай бұрын
Did u get the notes?
@anushakonka4060
@anushakonka4060 11 ай бұрын
Sir you mentioned in first video that you are giving these videos for free. But now videos are in membership
@lifestyleworld6821
@lifestyleworld6821 11 ай бұрын
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.
@PPIEA
@PPIEA 10 ай бұрын
hes charging a very fair price and for the quality of the content its a steal dont be cheap support mr.pavan
@PookieThisSide-d9c
@PookieThisSide-d9c 9 ай бұрын
Sab to video public h private kb kui classes?
@SilaBlog-ld4zd
@SilaBlog-ld4zd 6 ай бұрын
Hi​@@PookieThisSide-d9c
@PookieThisSide-d9c
@PookieThisSide-d9c 6 ай бұрын
@@SilaBlog-ld4zd hello
@gukapriyan8496
@gukapriyan8496 11 ай бұрын
After a few hours it will be only on members only
@vipinkumark4476
@vipinkumark4476 10 ай бұрын
Can any one share the notes and these class files? I couldn't see any attachment's please 🙏🏻🙏🏻🙏🏻🙏🏻
@JyotiRao-wk9gw
@JyotiRao-wk9gw 6 ай бұрын
Where can we see notes
@ARIFAQEELAHMAD-k7w
@ARIFAQEELAHMAD-k7w 11 ай бұрын
how to join channel
@JyotiRao-wk9gw
@JyotiRao-wk9gw 6 ай бұрын
Where can we the notes
@sindhuaras6468
@sindhuaras6468 11 ай бұрын
Sir after this you have uploaded session 9 where is 4 5 6 7 8 please upload alla vedioa
@Om8594
@Om8594 11 ай бұрын
Check playlist u will find all videos
@aditivairale7281
@aditivairale7281 11 ай бұрын
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
@mudadlaprasad9728
@mudadlaprasad9728 11 ай бұрын
Clear
@sandipbhagwat-o2s
@sandipbhagwat-o2s 11 ай бұрын
pls upload next lecture
@RiyaMaheshwari-iq7dg
@RiyaMaheshwari-iq7dg 11 ай бұрын
payment is done but i am not able to see the vedios
@kishoresrinivas2104
@kishoresrinivas2104 11 ай бұрын
Waiting for you class today
@jyotitipgond6649
@jyotitipgond6649 11 ай бұрын
Yes
@maitridas6679
@maitridas6679 6 ай бұрын
👍
@RamNarayan-l5p
@RamNarayan-l5p 3 ай бұрын
can any one send the notes please?
@shaiksiraj9942
@shaiksiraj9942 11 ай бұрын
Is this a free course or paid one???
@sachinrai8696
@sachinrai8696 8 ай бұрын
Can any body share me the PPT pdf of complete java
@SunithaL-we3qn
@SunithaL-we3qn 11 ай бұрын
Hi sir this is free course sir
@mudadlaprasad9728
@mudadlaprasad9728 11 ай бұрын
Logical operators
@TalentifyNY
@TalentifyNY 7 ай бұрын
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); } }
@ravikanth4715
@ravikanth4715 11 ай бұрын
Sir dont put this in member only.. my humble request pls
@alokeducationexplore3301
@alokeducationexplore3301 10 ай бұрын
Class Swap{ Psvm (str arr[]){ int a=10, b=20; a=a+10; b=b-10; Sopln(a); Sopln(b); } }
@jiteshshankhpal3034
@jiteshshankhpal3034 7 ай бұрын
haha the kid at 1:16:50
@rajunaik1736
@rajunaik1736 11 ай бұрын
A++
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Introduction to Jenkins, CI/CD, and DevOps for Beginners (2024)
1:55:40
Valentin Despa
Рет қаралды 29 М.
Postman Beginner's Course - API Testing
2:09:38
freeCodeCamp.org
Рет қаралды 2,5 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН