Join Regular Classroom : Visit ClassroomTech

code window

TCS Digital Sample Question Paper | Coding Questions

←← Previous Page TCS Digital Coding Questions: Question 1: Write a program to find the count of numbers that consists of unique digits.Input:Input consists of two Integer lower and upper value of a rangeOutput:The output consists of a single line, print the count of unique digits in a given range. Else Print”No Unique Number“. Solution:

TCS Digital Sample Question Paper | Coding Questions Read More »

Capgemini Recruitment Process | Codewindow

Pseudo Code Round 30 Questions 30 Minutes Elimination Round Check Communication Test 30 Questions 30 Minutes Elimination Round Check Gaming Rounds For Every Round 5-8 Minutes Elimination Round Check Behavioral Competency No Elimination Check Technical Interview Elimination Round Check HR Interview Elimination Round Check About Capgemini Capgemini SE is a French multinational corporation that provides consulting,

Capgemini Recruitment Process | Codewindow Read More »

Superclass variable can reference a subclass variable in java

A reference variable of a superclass can be assigned a reference to any subclass derived from that superclass. You will find this aspect of inheritance quite useful in a variety of situations. For example, consider the following: Here, weightbox is a reference to BoxWeight objects, and plainbox is a reference to Box objects. Since BoxWeight

Superclass variable can reference a subclass variable in java Read More »

Inheritance in java

Inheritance is the process by which objects of one class can link and share some common properties of objects from another class. Use of inheritance : For Method Overriding (so runtime polymorphism can be achieved). For Code Reusability. Syntax of inheritance : The extends keyword indicates that you are making a new class that derives

Inheritance in java Read More »