MT-290

Basic Java = 

1.Conditional Statements

if, if_Else Switch

2.Loops

for, while, do_while

3.Data Types 

int, long, boolean,  float, double


Sel Java = Basic Java + Array + String Functions + Java OOPS:

------------------------------------------------------------------------------------

Premchand Vishwakarma


Manual Testing

ISTQB

Java

Automation Testing

Selenium

Jmeter

POSTMAN

Rest-Assured

Sikuli

Appium

Cucumeber 


ISTQB - 3 Certification

CP-SAT

--------------------------------------------------------------------------------------- 

What is Java?

---------------

>It is High Programming Language

>It is Platform Independant(Suports Multiple OS i.e Windows, Linux, MAC etc)

It was First Language which given Facility of WORA(Write Once & Run AnyWhere)

>It is free

>It is Opensource

>It is Secure

>It supports Multi-Threading(Can run Multiple Programme at a time).

-----------------------------------------------------------------------------------


JDK & JRE

----------


Java is Compiler & Intepreted Language both


1.Compiler executed Whole programme in Single Attempt

2.Interpreter executed the programme line by line



demo.java > Compiler > demo.class >  JVM(Contains Interpreter) > 01's 

HL Middle Level (Which is Machine level)

Language

(ByteCode)



If You want to Write Java Programme

1.JDK (Which tells your System what is Rules & Protocol of Java)

Java 8 or Java 11

2.Editor (NotePad, Notepad++, eclipse, NetBean etc.)



Data Types:

----------

>int 4 bytes = 32 bits = 2^32

>long 8 bytes = 64 bits

>short        2 bytes = 16 bits

>boolean    1 bit

>float 4 bytes

>double 8 bytes

>char 2 bytes

>String (It is Collection of Charactor)



Arithmatic Operator:

--------------------

+

-

*

/

% (Mod) 

9/2 = 8

9%2 = 1

------------------------------------------------


Comparision Operator:

---------------------

>

<

>=

<=

==

!=



Logial Operator:

------------------

&&

||

!

---------------------------------------------------------------------------------------

Fibonacci Series:

-----------------


a  b  c

0, 1, 1, 2, 3, 5, 8, 13, 34

   a  b  c

--------------------------------

What is Array : It is Collection of Similar Kind of Data

---------------






 

Comments