Category: Job

05
Jan
2020

Data Science Interview Question

   

05
Jan
2020

Must Read For Becoming a Successful Software Developer

https://content.techgig.com/7-habits-of-successful-developers/articleshow/72996679.cms   https://content.techgig.com/5-aptitude-interview-questions-that-can-get-you-a-tech-job/articleshow/73080737.cms

04
Jan
2020

Phone Interview Success

     

20
Dec
2019

What is this keyword in OOP

What is “this”? You may have noticed something slightly strange in our methods. Look at this one…

24
Nov
2019

Java Programming Recap In Sha Allah

27
Oct
2019

OOP concept clearings from some MOOC courses

Code: Student.java   class Student{     //variable declaration     int id;     String name;     String gender;     //method deinitions     boolean updateProfile(String newName){         name=newName;         return true;     } }   StudentTest.java class StudentTest{…