• Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard
CSEstack

What do you want to Learn Today?

  • Programming
    • Tutorial- C/C++
    • Tutorial- Django
    • Tutorial- Git
    • Tutorial- HTML & CSS
    • Tutorial- Java
    • Tutorial- MySQL
    • Tutorial- Python
    • Competitive Coding Challenges
  • CSE Subject
    • (CD) Compiler Design
    • (CN) Computer Network
    • (COA) Computer Organization & Architecture
    • (DBMS) Database Management System
    • (DS) Data Structure
    • (OS) Operating System
    • (ToA) Theory of Automata
    • (WT) Web Technology
  • Interview Questions
    • Interview Questions- Company Wise
    • Interview Questions- Coding Round
    • Interview Questions- Python
    • Interview Questions- REST API
    • Interview Questions- Web Scraping
    • Interview Questions- HR Round
    • Aptitude Preparation Guide
  • GATE 2024
  • Linux
  • Trend
    • Full Stack Development
    • Artificial Intelligence (AI)
    • BigData
    • Cloud Computing
    • Machine Learning (ML)
  • Write for Us
    • Submit Article
    • Submit Source Code or Program
    • Share Your Interview Experience
  • Tools
    • IDE
    • CV Builder
    • Other Tools …
  • Jobs

Zoho Technical Interview Coding Questions for Freshers

Want to Share your Interview Experience?/2058/0
Placement Interview

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.

  • Write a program to find the transpose of the matrix.
  • Write a program to find the median of the array.

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.

Python Interview Questions eBook

Zoho
Want to Share your Interview Experience?
This interview questions and experience are shared by one of the readers like you. You can share your interview experience as well. If you want to help new job aspirants to get their dream job, kindly share your experience on CSEstack Portal, by filling this simple form. It will be published on our portal. Thank You!

Your name can also be listed here. Got a tip? Submit it here to become an CSEstack author.

Leave a Reply Cancel reply

100+ Company’s Interview Questions



You can share your interview experience.

Job Preparation Stack

03 Types of IT Engineers in Demand

05 Programming Skills for Jobs

05 Programming for High Paying Jobs

11 Software Developer Skills for Jobs

07 Tips for Standard CV Format

05 Guidelines for Writing Best SoP

13 Aptitude Preparation Tips

07 Steps for Effective Job Search

07 HR Interview Questions

57 Coding Interview Questions

57 Python Interview Questions

Summer Internships 2023

Why Internship?

Apply Internships in IIT, NIT, IIIT

Programming Tutorials

C/C++ Programming

Python Programming

Java Programming

© 2022 – CSEstack.org. All Rights Reserved.

  • Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard