what does the following code print ? Class X { void print(){ cout << "This is X" << endl; } } Class Y : public X{ void print(){ cout << "This is Y" << endl; } } void main() { X* xPtr = new X; X* yPtr = new Y; X-> print(); Y->print(); }
Validation Engineer Interview Questions
1,604 validation engineer interview questions shared by candidates
The bucket Challenge with 3 buckets (10L - 7L - 3L)
1. tell me about yourself. 2. principles of software testing 3. Programming languages you are good at 4.advantages and disadvantages of Best practices of continous integration and automated testing
assume your are an ant walking on a cube and you are at some corner of the cube. what is the shortest way from this corner to the oppiste corner and why can you say for sure this is the shortest way?
Describe STB Architecture
1. Given an array with only 3 characters - sort the array in O(n). 2. Given an interger with at least 8 bits (or more) - write a function to return the integer obtained by reflecting the bits of the given number. For instance, given the number: 00110001, the result should be: 10001100.
What do you know about Celestica?
Real time scenarios
What is the difference between a compiled and interpreted language? Which of these categories does Java fall into?
Explain what does #define do.
Viewing 101 - 110 interview questions