Open In App

SymsTech Interview Experience

Last Updated : 18 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

At SymsTech they resolve the problem of people and focus on developing a user-centric software solution that will help them to solve their real-life issues, for a better experience.

Process :

  • Applied through LinkedIn.
  • Resume shortlisted
  • Phone call interview
  • Technical interview 

After completing this process, I got an internship offer from SymsTech. Now let’s see some questions which were asked in my interview.

  • Tell me about yourself.
  • Project discussion.
  • What is API?
  • Which API have you used in your project?
  • What return types are currently supported by the API?
  • What is the return type of this API?
  • What is JSON format?
  • What is the correct way to include JavaScript in your HTML?
  • What is the difference between <div> and <frame> tags?
  • What are the different types of CSS used in HTML?
  • Design a form that takes input from the user.
  • What is the Arrow function?
  • How is Arrow function differently from normal function?
  • What programming languages are you proficient in?
  • Given a sorted array of size N and an integer K, find the position at which K is present in the array using binary search.

Solution :

C++




int binarysearch(int arr[], int n, int k) 
{
       int start = 0;
       int end = n-1;
       while(start<=end)
       {
          int mid = (start+end)/2;
           if(k>arr[mid])
           {
               start=mid+1;
           }
           else if(k<arr[mid])
           {
               end=mid-1;
           }
           else if(k==arr[mid])
           {
               return mid;
           }
       }
       return -1;
}



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads