learncodingforfree.com

SELENIUM OVERVIEW

  Selenium  is  a  popular  open-source  widely  adopted   framework  designed  for  automating  web  browsers  .  Selenium  is  widely  used  for    functional  testing ,   regression  testing  and  performance  testing .   It  supports  multiple  programming  languages such as  Java , c#, Python , Javascript , Ruby  etc.    and  run  accross  various  platforms  like  Windows , […]

SELENIUM OVERVIEW Read More »

JAVA INHERITANCE

  Inheritance  in  Java  is  a  fundamental  principal  in  OOP ( Object-Oriented  Programming )   by  which  one  class  is  allowed  to  inherit  the  properties (fields)  and  behaviors (methods )  of    another   class .   A   class  that  inherits  the  another  class  can  reuse  the  properties  of  that  class . Example : //Parent  class class  Gift {    

JAVA INHERITANCE Read More »

JAVA POLYMORPHISM

    Polymorphism  in  java  is  one  of  the important  concept   which  allows  objects  to  behave  differently  based  on  their  specific  class  type .  In  Java , polymorphism  allows  the  same  object  or  method  to  behave  differently  based  on  the  context  of  the  project.           Features  of  Polymorphism:   Runtime  Decision

JAVA POLYMORPHISM Read More »

JAVA ENCAPSULATION

    Encapsulation  in  Java  is  a  core  concept   in   object-oriented  programming (OOP ) concept   which  combine  data  and   the  functions  that  work  on  data  into  a  single  unit  like  class.  Encapsulation  is  also  known  as    data  hiding  because  it  restricts  the  direct  access  to the  internal  state  of  an  object  by  protecting  data 

JAVA ENCAPSULATION Read More »

ABSTRACTION IN JAVA

    Abstraction  in  java  is  a  core  principle  of  Object-Oriented  Programming (OOP)  language  which  is  used  to  hide  the   internal  complex  implementation  details  and  show  only  the  necessary  functionality  &  features  to  the  user .    Java  Abstraction  focuses  on   what  an  object  does  rather  than  how   it   does  it   which  siplifies  the  code 

ABSTRACTION IN JAVA Read More »

Java OOPS (Object Oriented Programming ) Concepts

    Object-Oriented  Programming (OOP) in  Java  is  an  important  concept  which  includes  core  principles  of  Java  such as  inheritance , encapsulation ,  Polymorphism , Abstraction  etc   along  with  Classes  &  Objects  which  provides  a  structured  approach  to  build  a  reusable  and  maintainable  software  application.     Before  Object-oriented  Programming ( OOPS) ,  Procedural approach 

Java OOPS (Object Oriented Programming ) Concepts Read More »

JAVA STRING

    In   Java , String  is  an  object  that  represents   a  sequence  of  characters   enclosed  by  double  quotes  and  every  character  is  stored  in  16   bits.  String  class  is  present in  java.lang  package.  String   class  is  bydefault  declared  as   final  class  which  can’t  be  subclassed. String  class  is  considered  as  immutable, so  it  can’t 

JAVA STRING Read More »

Java Arrays

    In  Java, array  is  a  fundamental  datastructure   which  are  used  to  store  multiple  values  in  a  single  variable , instead  of  declaring  separate   variables  for  each  value.     To  declare  an  array , define   the  variable  type  with  square  brackets [ ] . Arrays  in  java  are  objects, and  they  implicitly  inherit 

Java Arrays Read More »

How to Transform Boring Subjects into Fascinating Pursuits

   The subject isn’t inherently dramatic—it’s accounting, data entry, regulatory law, or the life cycle of a mollusk. Our brains rebel, labeling it “boring.” But what if “boring” isn’t a property of the subject, but a symptom of our approach? The truth is, with the right mindset and techniques, any topic can be made captivating

How to Transform Boring Subjects into Fascinating Pursuits Read More »