- 41
- 2 994
Roy Classes
เข้าร่วมเมื่อ 26 เม.ย. 2020
Roy Classes is a digital educator. It is an online education abode but not one in the way you might think. We're committed to build the best learning experience inside and out, making
Roy Classes the best place to learn.
Roy casses is set up by Subhash Kr. Roy, B.tech electronic and Communication Engg. We focuses
on making education easier and fun. We use
total different style of pedagogy in which
viewer feels as if a teacher is sitting beside
him and giving him lecture.
This style of teaching once existed in India
has eroded and now completely vanished
and has been replaced by western style
of teaching. We have clubbed information
technology and our ancient style of teaching
to rejuvenate ancient Indian style of teaching.
For more please call us on:- 7503080862.
Email:- royclasses695@gmail.com
Thankyou!
Roy Classes the best place to learn.
Roy casses is set up by Subhash Kr. Roy, B.tech electronic and Communication Engg. We focuses
on making education easier and fun. We use
total different style of pedagogy in which
viewer feels as if a teacher is sitting beside
him and giving him lecture.
This style of teaching once existed in India
has eroded and now completely vanished
and has been replaced by western style
of teaching. We have clubbed information
technology and our ancient style of teaching
to rejuvenate ancient Indian style of teaching.
For more please call us on:- 7503080862.
Email:- royclasses695@gmail.com
Thankyou!
|| Java with Selenium || Lecture-13 || Wrapper Class In Java || Automation testing || Java
|| Java with Selenium || Lecture-13 || Wrapper Class In Java || Automation testing || Java
#Wrapper_Class:-
A Wrapper class in Java is one whose object wraps or contains primitive data types. When we create an object to a wrapper class, it contains a field and in this field, we can store primitive data types. In other words, we can wrap a primitive value into a wrapper class object
1. Normally data are store in two format
a. Primitive format
b. Object format
2. String s="welcome";//primitive type
String s= new String("welcome");//object type
but we want to create object for normal primitive data type we can not used,so in stead we have to use something called wrapper class
int x=100;//normal primitive type
int x= new int(10);//not used
3. for every primitive type there is a wrapper class is available for example int we used Integer wrapper classes
Integer x= new Integer(10);
4. int-Integer
float-Float
double-Double
char- Character
boolea-Boolean
5.one advantage is we can create variable/data in object format
other adv is we can convert the data into one format to another format
example1.
String price1="150.50";
String price2="120.50";
when we add price1+price2=not add but both string are in concat operation ,not add
in this case we can convert string int integer type and then add.
example-2.
text box or input filed are directly allowed data in string format not integer
text box is not allowed the numeric format directly for this we can used wrapper class having build-in methods
Scenario 1
we can convert String-------------int double Boolean char
String--------------Primitive type
Scenario 2
Int, double, Boolean, char--------------String type
primitive type======================String type
example:=
String----int
i want to convert String into int format ,what is a target type that is integer type so we have to used integer wrapper class, inside this class there is a static method available which is parseint(string value).
Integer.parseInt(string value);
String---double Double.parseDouble(string value)
string---Boolean Boolean.parseBoolean(string value)
String---char not possible
because string is collection of character but character is what single character
any data type----string
String.valueOf();-----convert all primitive data type into string format
Need of Wrapper Classes:-
There are certain needs for using the Wrapper class in Java as mentioned below:
They convert primitive data types into objects. Objects are needed if we wish to modify the arguments passed into a method (because primitive types are passed by value).
The classes in java.util package handle only objects and hence wrapper classes help in this case.
Data structures in the Collection framework, such as ArrayList and Vector, store only objects (reference types) and not primitive types.
An object is needed to support synchronization in multithreading.
#JavaErrorHandling
#ExceptionMastery
#JavaBugsNoMore
#HandleWithJavaCare
#JavaFaultTolerance
#ExceptionalJava
#ErrorFreeJava
#JavaDebugging
#JavaExceptionSolvers
#JavaExceptionalism
#JavaExceptionHandling101
#CodeResilienceJava
#JavaExceptionExperts
#ExceptionGuardianJava
#JavaErrorResolvers
#JavaCodeFaultProof
#JavaTroubleshooters
#ExceptionAwareJava
#JavaErrorFreeZone
#JavaExceptionMindset
#JavaBugBusters
#JavaDefensiveCoding
#ExceptionControlJava
#JavaErrorTerminators
#JavaGracefulFailures
#JavaExceptionalCode
#JavaFaultFixers
#JavaExceptionStrategy
#JavaErrorManagement
#JavaExceptionEradicators
#JavaFailSafeCoding
#ExceptionHandlingHero
#JavaErrorEliminators
#JavaFlawlessCode
#JavaExceptionAlert
#JavaTroubleFreeCoding
#JavaErrorPrevention
#ExceptionAwarenessJava
#JavaCodeRescue
#JavaExceptionVeterans
#JavaDefectDefense
#ExceptionProofJava
#JavaErrorCleansers
#JavaExceptionChampions
Video link:-
#javawithselenium
1. 1st video link: -th-cam.com/video/oZ4hz91MfX4/w-d-xo.html (Intro of java-selenium)
2. 2nd video link:-th-cam.com/video/tE4d0fFMSKI/w-d-xo.html (Selection Statement)
3. 3rd video link:- th-cam.com/video/aWfyTqTKq-g/w-d-xo.html (Iterative Statement)
4. 4th video link:-th-cam.com/video/Yx4Tk0eU3fs/w-d-xo.html (Transfer Statement)
5. 5th video link:- th-cam.com/video/mWNrpMd75t0/w-d-xo.html (1 D Array)
6. 6th video link:- th-cam.com/video/1EoqWpD60jk/w-d-xo.html (2 D array)
7. 7th video link:- th-cam.com/video/_i8wx6zVjkg/w-d-xo.html (Operator in Java)
8. 8th Video Link:- th-cam.com/video/XDTu1jm9L0g/w-d-xo.html (String in java ,part -01)
9. 9th video Link:- th-cam.com/video/R14TdlG9ioI/w-d-xo.html (String In Java, Part-02)
10.10th video Link:-th-cam.com/video/dxGk40JWmew/w-d-xo.html (String in Java Part-3)
11. 11th video Link:- th-cam.com/video/dd2l9PnqJDM/w-d-xo.html (String in java Part-4)
12. 12th video link:- th-cam.com/video/0145QuqT7Do/w-d-xo.html (Scanner class)
For more details:
Roy Classes
Mob:- 75030080862
#Wrapper_Class:-
A Wrapper class in Java is one whose object wraps or contains primitive data types. When we create an object to a wrapper class, it contains a field and in this field, we can store primitive data types. In other words, we can wrap a primitive value into a wrapper class object
1. Normally data are store in two format
a. Primitive format
b. Object format
2. String s="welcome";//primitive type
String s= new String("welcome");//object type
but we want to create object for normal primitive data type we can not used,so in stead we have to use something called wrapper class
int x=100;//normal primitive type
int x= new int(10);//not used
3. for every primitive type there is a wrapper class is available for example int we used Integer wrapper classes
Integer x= new Integer(10);
4. int-Integer
float-Float
double-Double
char- Character
boolea-Boolean
5.one advantage is we can create variable/data in object format
other adv is we can convert the data into one format to another format
example1.
String price1="150.50";
String price2="120.50";
when we add price1+price2=not add but both string are in concat operation ,not add
in this case we can convert string int integer type and then add.
example-2.
text box or input filed are directly allowed data in string format not integer
text box is not allowed the numeric format directly for this we can used wrapper class having build-in methods
Scenario 1
we can convert String-------------int double Boolean char
String--------------Primitive type
Scenario 2
Int, double, Boolean, char--------------String type
primitive type======================String type
example:=
String----int
i want to convert String into int format ,what is a target type that is integer type so we have to used integer wrapper class, inside this class there is a static method available which is parseint(string value).
Integer.parseInt(string value);
String---double Double.parseDouble(string value)
string---Boolean Boolean.parseBoolean(string value)
String---char not possible
because string is collection of character but character is what single character
any data type----string
String.valueOf();-----convert all primitive data type into string format
Need of Wrapper Classes:-
There are certain needs for using the Wrapper class in Java as mentioned below:
They convert primitive data types into objects. Objects are needed if we wish to modify the arguments passed into a method (because primitive types are passed by value).
The classes in java.util package handle only objects and hence wrapper classes help in this case.
Data structures in the Collection framework, such as ArrayList and Vector, store only objects (reference types) and not primitive types.
An object is needed to support synchronization in multithreading.
#JavaErrorHandling
#ExceptionMastery
#JavaBugsNoMore
#HandleWithJavaCare
#JavaFaultTolerance
#ExceptionalJava
#ErrorFreeJava
#JavaDebugging
#JavaExceptionSolvers
#JavaExceptionalism
#JavaExceptionHandling101
#CodeResilienceJava
#JavaExceptionExperts
#ExceptionGuardianJava
#JavaErrorResolvers
#JavaCodeFaultProof
#JavaTroubleshooters
#ExceptionAwareJava
#JavaErrorFreeZone
#JavaExceptionMindset
#JavaBugBusters
#JavaDefensiveCoding
#ExceptionControlJava
#JavaErrorTerminators
#JavaGracefulFailures
#JavaExceptionalCode
#JavaFaultFixers
#JavaExceptionStrategy
#JavaErrorManagement
#JavaExceptionEradicators
#JavaFailSafeCoding
#ExceptionHandlingHero
#JavaErrorEliminators
#JavaFlawlessCode
#JavaExceptionAlert
#JavaTroubleFreeCoding
#JavaErrorPrevention
#ExceptionAwarenessJava
#JavaCodeRescue
#JavaExceptionVeterans
#JavaDefectDefense
#ExceptionProofJava
#JavaErrorCleansers
#JavaExceptionChampions
Video link:-
#javawithselenium
1. 1st video link: -th-cam.com/video/oZ4hz91MfX4/w-d-xo.html (Intro of java-selenium)
2. 2nd video link:-th-cam.com/video/tE4d0fFMSKI/w-d-xo.html (Selection Statement)
3. 3rd video link:- th-cam.com/video/aWfyTqTKq-g/w-d-xo.html (Iterative Statement)
4. 4th video link:-th-cam.com/video/Yx4Tk0eU3fs/w-d-xo.html (Transfer Statement)
5. 5th video link:- th-cam.com/video/mWNrpMd75t0/w-d-xo.html (1 D Array)
6. 6th video link:- th-cam.com/video/1EoqWpD60jk/w-d-xo.html (2 D array)
7. 7th video link:- th-cam.com/video/_i8wx6zVjkg/w-d-xo.html (Operator in Java)
8. 8th Video Link:- th-cam.com/video/XDTu1jm9L0g/w-d-xo.html (String in java ,part -01)
9. 9th video Link:- th-cam.com/video/R14TdlG9ioI/w-d-xo.html (String In Java, Part-02)
10.10th video Link:-th-cam.com/video/dxGk40JWmew/w-d-xo.html (String in Java Part-3)
11. 11th video Link:- th-cam.com/video/dd2l9PnqJDM/w-d-xo.html (String in java Part-4)
12. 12th video link:- th-cam.com/video/0145QuqT7Do/w-d-xo.html (Scanner class)
For more details:
Roy Classes
Mob:- 75030080862
มุมมอง: 30
วีดีโอ
|| Java with Selenium || Lecture-12 || Scanner Class In Java || Automation testing || Java
มุมมอง 38วันที่ผ่านมา
|| Java with Selenium || Lecture-12 || Scanner Class In Java || Automation testing || Java #scanner Class:- The Scanner class is used to get user input, and it is found in the java.util package. A.INPUT(scanner class) 1.scanner is a pre defined class in java\ 2.which is available in java.util package, 3. it is used to get the data from user input rule 1.if we used scanner class , must have to c...
|| Java with Selenium || Lecture-11|| part-4 || String Class In Java || Automation testing || Java
มุมมอง 31วันที่ผ่านมา
|| Java with Selenium || Lecture-10 || Part-03 || String Class In Java || Automation testing || Core Java #StringClass String is a sequence of characters. In Java, objects of the String class are immutable which means they cannot be changed once created. In this article, we will learn about the String class in Java. String Methods:- 8. indexOf():- String para="i am writing a code in eclipse IDE...
|| Java with Selenium || Lecture-10 || part-3 || String Class In Java || Automation testing || Java
มุมมอง 2914 วันที่ผ่านมา
|| Java with Selenium || Lecture-10 || Part-03 || String Class In Java || Automation testing || Core Java #StringClass String is a sequence of characters. In Java, objects of the String class are immutable which means they cannot be changed once created. In this article, we will learn about the String class in Java. String Methods:- 6. contains() this methods is to check the text provided the s...
|| Java with Selenium || Lecture-9 || part-2 || String Class In Java || Automation testing || Java
มุมมอง 4314 วันที่ผ่านมา
|| Java with Selenium || Lecture-9 || Part-02 || String Class In Java || Automation testing || Core Java #StringClass String is a sequence of characters. In Java, objects of the String class are immutable which means they cannot be changed once created. In this article, we will learn about the String class in Java. String Methods:- 1.concatnation():- append the value with the text together in t...
|| Java with Selenium || Lecture-8 || part-01 || String Class In Java || Automation testing || Java
มุมมอง 2114 วันที่ผ่านมา
|| Java with Selenium || Lecture-8 || Part-01 || String Class In Java || Automation testing || Core Java #StringClass String is a sequence of characters. In Java, objects of the String class are immutable which means they cannot be changed once created. In this article, we will learn about the String class in Java. Table of Content Creating a String Using String literal Using new keyword Creati...
|| Java with Selenium || Lecture-8 || String Class In Java || Automation testing || Core Java
มุมมอง 4414 วันที่ผ่านมา
|| Java with Selenium || Lecture-8 || String Class In Java || Automation testing || Core Java #StringClass String is a sequence of characters. In Java, objects of the String class are immutable which means they cannot be changed once created. In this article, we will learn about the String class in Java. Table of Content Creating a String Using String literal Using new keyword Creating a String...
|| Java with Selenium || Lecture - 7 || Operator || Automation Testing || Core Java
มุมมอง 3014 วันที่ผ่านมา
|| Java with Selenium || Lecture - 7 || Operator || Automation Testing || Core Java #operator Java operators are special symbols that perform operations on variables or values. They can be classified into several categories based on their functionality. These operators play a crucial role in performing arithmetic, logical, relational, and bitwise operations etc. symbol which can be used to perf...
Java with Selenium || Lecture-6 || Two Dimensional| Array|| Core Java || Automation Testing || Java
มุมมอง 3814 วันที่ผ่านมา
Two - Dimensional Array (2D-Array) Two - dimensional array is the simplest form of a multidimensional array. A 2-D array can be seen as an array storing multiple 1-D array for easier understanding. Syntax (Declare, Initialize and Assigning) // Declaring and Intializing data_type[][] array_name = new data_type[x][y]; // Assigning Value array_name[row_index][column_index] = value; Representation ...
|Java With Selenium || Lecture -4 || Transfer Statement || Break || Continue || Return|| Core java
มุมมอง 5421 วันที่ผ่านมา
The jumping statements are the control statements which transfer the program execution control to a specific statements. Java has three types of jumping statements they are break, continue, and return. These statements transfer execution control to another part of the program. #Break The break statement is used to terminate the execution of a loop prematurely. When a break statement is encounte...
Java With Selenium || Lecture -3 || Iterative Statement || Automation Testing || Core Java
มุมมอง 4221 วันที่ผ่านมา
Iteration statements, commonly known as loops, are statements in programming used to execute part of code repeatedly based on condition or set of conditions. These constructs are important for performing repetitive tasks efficiently. In this article, we will discuss various types of iteration statements and their use in different programming languages. Types of Iteration Statements in programmi...
|| Java With Selenium || Lecture -2 || Selection Statement || Automation Testing || Core Java
มุมมอง 4521 วันที่ผ่านมา
Selection statements in Java are control flow statements that allow you to make decisions in your Code based on certain conditions. These statements enable your Java programs to execute different blocks of Code depending on whether specific conditions are true or false. Selection statements are fundamental to programming, allowing you to create dynamic, flexible, and responsive applications. Th...
||Java with Selenium || Lecture -1 || Introduction of Java with selenium || Automation Testing
มุมมอง 5021 วันที่ผ่านมา
What is Selenium? Selenium is a suite of tools that helps you to automate cross-browser testing for a web-based application. Selenium components The Selenium comprises of these main components: Selenium WebDriver - is a collection of open-source APIs that helps in simulating user flows for any web-based application Selenium IDE - is a browser add-on that helps you to create tests quickly throug...
formality and molarity_class 12th_Science
มุมมอง 1052 ปีที่แล้ว
formality and molarity_class 12th_Science
#Class_10 Tangent to a circle #Circle part_3 NCERT Theorem 10.2 by:- S.K ROY
มุมมอง 2814 ปีที่แล้ว
Class_10 Introduction of "Tangent to a circle" #NCERT #chapter_10 Our Slogan:- Shaping Your Future. Welcome to Roy Classes, 𝐐𝐮𝐚𝐝𝐫𝐚𝐭𝐢𝐜 𝐄𝐪𝐮𝐚𝐭𝐢𝐨𝐧𝐬: Part 1:- th-cam.com/video/UZPnIC3cGo8/w-d-xo.html Part 2:- th-cam.com/video/r0V3UNAdMOg/w-d-xo.html Part 3:-th-cam.com/video/QE3uqJM0N0A/w-d-xo.html Part 4:-th-cam.com/video/gOx_SuJwpQw/w-d-xo.html Here, we are providing Basic to advance concept of 𝐐𝐮𝐚...
#class_10 Application of the theorem 1, #Tangent to a circle Chapter_10.1_NCERT Qstn no_1&2
มุมมอง 724 ปีที่แล้ว
#class_10 Application of the theorem 1, #Tangent to a circle Chapter_10.1_NCERT Qstn no_1&2
#Class_10 Tangent to a circle Basic Introduction class #part_1
มุมมอง 1114 ปีที่แล้ว
#Class_10 Tangent to a circle Basic Introduction class #part_1
How to solve Quadratic Equation by a method of PO- SHEN LOH Method Easy way to learn #Class_10_part5
มุมมอง 794 ปีที่แล้ว
How to solve Quadratic Equation by a method of PO- SHEN LOH Method Easy way to learn #Class_10_part5
#Quadratic _Equation #Ncert Class_10 Ex-4.3 ,Q-4
มุมมอง 314 ปีที่แล้ว
#Quadratic _Equation #Ncert Class_10 Ex-4.3 ,Q-4
#Class_10th | #Quadratic_Equation Nature Of Roots.
มุมมอง 404 ปีที่แล้ว
#Class_10th | #Quadratic_Equation Nature Of Roots.
#Quadratic_Equation #Completing The Square Method #class_10 ,, #Part_2 _NCERT
มุมมอง 494 ปีที่แล้ว
#Quadratic_Equation #Completing The Square Method #class_10 ,, #Part_2 _NCERT
#Proof of the quadratic equation in simple manner #Class_10 #part_1
มุมมอง 1174 ปีที่แล้ว
#Proof of the quadratic equation in simple manner #Class_10 #part_1
Part-9 | Height and DistanceQuestion based on 3 magic rule
มุมมอง 704 ปีที่แล้ว
Part-9 | Height and DistanceQuestion based on 3 magic rule
Part-8 Question Based on Height and distance
มุมมอง 314 ปีที่แล้ว
Part-8 Question Based on Height and distance
3 Magic Rule for Application of Trigonometry
มุมมอง 1034 ปีที่แล้ว
3 Magic Rule for Application of Trigonometry
Part-7 questions based on height and distance
มุมมอง 174 ปีที่แล้ว
Part-7 questions based on height and distance
Height & Distance | Application of Trigonometry
มุมมอง 594 ปีที่แล้ว
Height & Distance | Application of Trigonometry
Part-5, Trick to memorise Trigonometry Value from 0 to 90 degree
มุมมอง 294 ปีที่แล้ว
Part-5, Trick to memorise Trigonometry Value from 0 to 90 degree
Part- 4 Prove value of 30/45/60 degree | #Trigonometry_Class10
มุมมอง 524 ปีที่แล้ว
Part- 4 Prove value of 30/45/60 degree | #Trigonometry_Class10
Yes @atul ,I have worked on each element very hard within the short interval of time...hope so it will better in next batches....😂
Good Going... And sir you have a very deep understanding of each individual elements used in Java.😊
Thnku all
Great fan sir great fan
Nice explanation sir
Nice
Please give us ncert exampler solution class 10
Nice explanation sir ji
Good going sir
Good morning sir je
Super
Bhai mic 🎤ld lo or background noise ko band karo
It's Vivek Singh from student junction youtube channel
Achaa achaa...Ha Kal baat hui thi na Live Class pe.. Keep Uploading Updates about University :)) Regards S. K Roy (Stay Home And Wear Mask Frequently)
Mauz kardi master ....
Continue Bro.. You were doing incredible👍
nice sir
Me mohit
Nice
Nice
Great
GOOD job 👍👏👌 sir 💪 ji
Good sir 👌👍 ji
Great content, I subbed! Check smzeus . c o m to grow your channel and get more social proof!
🔥🔥
Good sir 👍👌 ji
👌👌
Nice job 👌👏👍 sir ji
Nice sir
sir g aap quadratic equation ka video bnaye sir
good going sir
Good job sir g
Good sir 👌👍 ji
Perfect Sir👌👌
Nice video sir Good job sir g
🤘🤘🤘🤘
👍
Best teaching
👍👍Nice
Perfect Sir👌👌
Very Nice 👌👌
Nice sir
Master jii chaaaa gaye.....
Sir g next series trigonometry ka start kijiyega
Good job sir g
Nice Video Sir
👍👍👍👍👍👌👌👌👌
Nice Sir
Good sir
Good job Roy 👍