employer cover photo
employer logo
employer logo

People Tech Group

Is this your company?

People Tech Group Interview Question

What is Abstraction? And it's implementation?

Interview Answers

Anonymous

Jun 18, 2024

Abstraction is nothing but hiding the internal details and representing the functionality We can achieve abstract using two keywords Abstract Interface

1

Anonymous

Apr 16, 2025

#include #include using namespace std; int BinarySearch(std::vector &vec,int target) { int low =0,high = vec.size()-1; while(low vec = {1,2,3,4,5,6,7,8}; int pos = BinarySearch(vec,3); if(pos != -1) { std::cout<<"Element Found at Position : "<