Zoho Technical Interview Coding Questions for Freshers

Zoho Technical Interview Coding Questions for Freshers

Zoho is one of the Bootstrapped SaaS companies from India. It offers a lot of benefits to its employees with an awesome work culture, food, learning and a lot of other perks.

It was founded by Sridhar Vembu in 1996 which has 45+ products and more than 50 million users all over the world. Zoho provides tools for CRM, support, marketing, sales and product. It is also one of the most popular products used by most Small and Medium businesses.

So seeing your response in our previous Zoho interview experiences we are happy to help you more with some long coding questions.

Technical Coding Questions asked in Zoho interview

There were two coding questions asked.

Being a fresher, interviewer asked me these technical coding questions.

Guess the Output Type Questions

To crack these debugging type questions you should know the basics of C programming.

Question 1:

void main()
{
  int d=5; 
  printf("%f ",d);
}

Answer: Undefined ( As the variable type was Integer and we are printing using float modifier)

Question 2:

void main()
{
  int i; 
  for(i=1;i<4,i++) 
    switch(i)
      case 1: printf("%d",i); break;
       {
         case 2:printf("%d",i); break; 
         case 3:printf("%d",i); break;
       }
  switch(i) 
    case 4: printf("%d",i);
}

Answer:

1,2,3,4 (Based on concept of switch and also just try running it with applying the value of i with for loop from 1-3 and pass it into switch and see the output + remember how break statement works it just comes out of the function it’s in.)

Question 3:

void main()
{
  char *s="\12345s\n"; 
  printf("%d",sizeof(s));
}

Answer:

6 (As the size of string is no of elements +1 ( ‘/0’ character which ends the string ) )


Editors’ Note: These Zoho coding interview questions and experience are shared by the R. Manoj Aiyer. We wish him all the best for his future.

Leave a Reply

Your email address will not be published. Required fields are marked *