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

preview_player
Показать описание
#java#selenium#sdet#programming

#########################
Udemy Courses:
#########################

Manual Testing+Agile with Jira Tool
************************************

Selenium with Java+Cucumber
********************************

Selenium with Python & PyTest
********************************

Selenium with python using Robot framework
****************************************

API Testing(Postman, RestAssured & SoapUI)
*****************************************

Web & API Automation using Cypress with Javascript
********************************************

Playwright with Javascript
**************************

Jmeter-Performance Testing
************************

SDET Essencials(Full Stack QA)
*************************

Appium-Mobile Automation Testing
************************************

Java Collections
*****************

Python Programming
*********************

Cucumber BDD Framework
***************************

Protractor with Javascript
***************************

####################################
Youtube Playlists:
####################################

Manual Testing & Agile
***********************

SQL
*************************

linux & Shell Scripting
**********************

Java
**********************

Selenium With Java+Cucumber
********************************

Python
********************************

Selenium With Python,Pytest&Behave
***************************************

Selenium With Python Using Robert Framework
(Web&API Testing)
*************************************************

API Testing (Postman,SoapUi,&Rest Assured)
**********************************************

Mobile App Testing Appium
****************************

Performance Testing Jmeter
*******************************

Maven,Jenkins,Git,Github,CI/CD
*******************************

SQL,DB Testing&ETL,Bigdata
*******************************

JavaScript Based Automation Tools
********************************

Selector Hub Tools
********************

GraphQL
******************

Cypress API Testing
********************

Cypress Web Testing
**********************

Playwright with Javascipt
**************************

#JavaOperators
#JavaExpressions
#CodeWithJava
#JavaProgramming
#CodingInJava
#LearnJava
#JavaBasics
#JavaDevelopment
#ProgrammingTips
#JavaTutorial
#JavaCode
#OperatorOverloading
#ExpressionEvaluation
#CodeSnippetJava
#JavaProgramming101
#ProgrammingLogic
#JavaDevelopmentTips
#CodeExplained
#CodingChallengeJava
#JavaCodingSkills
#JavaOperatorsExplained
#JavaExpressionExamples
#MasteringJava
#ProgrammingInJava
#JavaSyntax
#CodeDebuggingJava
#JavaProgrammingLanguage
#JavaDeveloper
#CodingJourney
#JavaSkills
#LogicalOperators
#ArithmeticExpressions
#JavaCodeReview
#CodeOptimizationJava
#JavaProgrammingFundamentals
#ExpressionSimplification
#ProgrammingLife
#AdvancedJava
#JavaCodeChallenge
#JavaOperatorsTutorial
#ProgrammingInStyle
#JavaExpressionsDemo
#CodeMasteryJava
#JavaProgrammingTips
#ExpressionsInJava
#JavaOperatorsCheatsheet
#CodeEfficiency
#JavaLogic
#ProgrammingWisdom
#JavaCodingJourney
Рекомендации по теме
Комментарии
Автор

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.

POOJASAHU-kpwm
Автор

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

sirisharayaprolu
Автор

Thankyou Pawan Sir, got to learn some new things that i never knew about increment/decrement operations 😊

durgeshnarute
Автор

So simply Sir, you have get understand everyone

SantoshGayakwad-di
Автор

Thanks Sir.
The way of explaining each and every topic in simple way its very helpful for me. And its very easy to understand.🙏

sachinrai
Автор

Thank you so much for explaining sp easily all the topics. Thanks a lot..

abhishekshahi
Автор

thankyou so much sir for your clear explanation

ManikkavasukiUlaganathanLebene
Автор

Sir, please make other videos of this series accessible for us

anadh
Автор

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

rajisgoodtimes
Автор

Thank you sir for such clear explaination

indian-xbnn
Автор

the tutorials are tailored to perfection

blutopluto
Автор

Session 3 done thanks these videos are helping me to go through java basics again, before jumping to selenium. really helpful.

Mandeepkaur-etyy
Автор

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

omucreations
Автор

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);
}

pavankumar
Автор

Very nice abd useful information sir 💯

kishoresrinivas
Автор

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));


}

}

TanuVarshney-keon
Автор

// 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

anilgowdan
Автор

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.

}
}

bandlahari
Автор

Please provide documentation and pdf of java to membership persons also

kanakakalpana
Автор

Hi sir, where have you shared the java ppt notes kindly share sir

divyagunasekaran