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

  Рет қаралды 112,394

SDET- QA

SDET- QA

Күн бұрын

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