Upload Button Icon Add office photos

Filter interviews by

Cmots Infotech Interview Questions and Answers

Updated 8 Nov 2024

Cmots Infotech Interview Experiences

Popular Designations

3 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the PHP Please explain
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP stands for Hypertext Preprocessor.

    • It is widely used for creating dynamic web pages.

    • PHP code is embedded within HTML code.

    • PHP can interact with databases like MySQL.

    • Popular CMS like WordPress and Drupal are built using PHP.

  • Answered by AI
  • Q2. What is OOPS please explain any three
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best to start your career

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Oops related questions with examples

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain sorting mechanism
  • Ans. 

    Sorting mechanism is a way to arrange elements in a specific order, such as ascending or descending.

    • Sorting can be done using various algorithms like bubble sort, merge sort, quick sort, etc.

    • Elements are compared and swapped based on the sorting criteria.

    • Example: Sorting an array of strings alphabetically.

  • Answered by AI
  • Q2. Explain algorithms
  • Ans. 

    Algorithms are step-by-step procedures or formulas for solving a problem or completing a task.

    • Algorithms are used in computer programming to perform specific tasks efficiently.

    • They consist of a sequence of steps that are followed in order to achieve a desired outcome.

    • Examples include sorting algorithms like bubble sort or quicksort, and searching algorithms like binary search.

    • Efficiency of algorithms is often measured ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Expected salary
  • Q2. Are you ok with Bond

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

SEO Executive Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2021

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Seo basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare seo basics clearly and It's tools too

SEO Executive Interview Questions asked at other Companies

Q1. What are the best practices to get more traffic on a website?
View answer (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Database related questions
  • Q2. Api
  • Q3. Two basic coding questions
  • Q4. Some apti based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just try to attempt all the sample questions available in geeks for geeks

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

20 questions and 40 minutes time, questions were asked from computer science basics and aptitude

Round 2 - Coding Test 

5 coding questions and 1 hr time. Questions were easy to medium level and mostly asked on topics like array, strings and basic data structures

Round 3 - Technical 

(1 Question)

  • Q1. Next 3 rounds were technical interviews. Coding questions were asked in all rounds and some hr questions in 3rd interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and practice solving coding questions on simple text editor.

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude questions mainly on quantitative

Round 2 - Coding Test 

Google docs was shared which has 5 coding questions mainly on array and string.

Round 3 - Technical 

(4 Questions)

  • Q1. Interviewer introduced himself , then told the flow of interview ie. 2 coding question will be asked then he asked to introduce myself
  • Q2. Occurance of characters in string
  • Ans. 

    The question is about finding the occurrence of characters in a string.

    • Iterate through the string and count the occurrence of each character.

    • Use a hash table to store the count of each character.

    • Consider the case sensitivity of the characters.

    • Handle special characters and spaces as required.

  • Answered by AI
  • Q3. Angle between hour and minute hand of clock at a given time
  • Ans. 

    The angle between hour and minute hand of a clock at a given time.

    • Calculate the angle made by the hour hand with 12 o'clock

    • Calculate the angle made by the minute hand with 12 o'clock

    • Find the difference between the two angles

    • If the difference is greater than 180 degrees, subtract it from 360 degrees

    • The result is the angle between the hour and minute hand

  • Answered by AI
  • Q4. Both question I was able to solve quickly interview was sheduled for one hour but i solved questions in 23 minutes so interview ended. I was called for second techinal round
Round 4 - Technical 

(4 Questions)

  • Q1. Same format as above introduction and 2 coding questions
  • Q2. 1 Integer to roman it took me some time to solve the question
  • Q3. 2 given sum and we have to print all the subsequences in array with given sum
  • Ans. 

    Printing all the subsequences in an array with a given sum.

    • Use recursion to generate all possible subsequences.

    • Check if the sum of each subsequence is equal to the given sum.

    • Print the subsequences that satisfy the condition.

    • Time complexity: O(2^n).

  • Answered by AI
  • Q4. The interview took almost 45 minutes and i was able to solve both questions so i was selected for third round ie technical + HR
Round 5 - HR 

(5 Questions)

  • Q1. First introduction then as all rounds 2 coding questions and then HR questions were asked
  • Q2. 1 print string without taking repeating characters eg helper - helpr
  • Ans. 

    The task is to print a string without any repeating characters.

    • Iterate through the string and keep track of the characters seen so far.

    • If a character is already seen, skip it.

    • Otherwise, add it to the output string.

    • Return the output string.

  • Answered by AI
  • Q3. 2 sort array of 0s and 1s in only one loop solution was using two pointers
  • Ans. 

    Sort an array of 0s and 1s in one loop using two pointers.

    • Use two pointers, one starting from the beginning and the other from the end.

    • Swap the values at the pointers if the value at the beginning pointer is greater than the value at the end pointer.

    • Continue until the pointers meet in the middle.

    • Time complexity is O(n).

  • Answered by AI
  • Q4. I solved both the questions then questions were asked on projects
  • Q5. Difficulties in project how you learn new technology After two days I received mail and I was selected for software developer role

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • arrays
  • string
Interview preparation tips for other job seekers - - Practice questions on array and string
- Also see puzzles on GFG they are also asked frequently
- No need to revise DBMS , OS for RSL interviews only coding is necessary

Skills evaluated in this interview

I appeared for an interview in Aug 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. First non repeating character in a string
  • Ans. 

    Find the first non-repeating character in a string.

    • Create a hash table to store character frequency

    • Iterate through the string and update the hash table

    • Iterate through the string again and return the first character with frequency 1

  • Answered by AI
  • Q2. Longest substring pallandrome in a string
  • Ans. 

    Find the longest substring that is a palindrome in a given string.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D boolean array to store the results of subproblems.

    • Check for palindromes of length 1 and 2 separately.

    • For substrings of length greater than 2, check if the first and last characters are the same and the substring between them is also a palindrome.

    • Update the result if a longer palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare easy to medium level DSA from GFG. And many times they ask questions which were asked earlier in previous years.

Skills evaluated in this interview

Round 1 - Coding Test 

5 coding questions in the first round

Round 2 - One-on-one 

(2 Questions)

  • Q1. About yourself , about your project explaination.
  • Ans. Explianation about your project they'll ask fine details also.
  • Answered Anonymously
  • Q2. Find prime numbers value.
  • Ans. 

    A prime number is a number greater than 1 that is divisible only by 1 and itself.

    • Start with a loop to iterate through numbers

    • Check if each number is divisible by any number from 2 to its square root

    • If not divisible, add it to the list of prime numbers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through leet code question easy and medium.

I applied via Job Fair and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - MCQ test 

(1 Question)

  • Q1. MCQ test. 20 questions were asked and attempted in 30 minutes.
Round 2 - Coding Test 

1hr duration, test can be attempted in any language. I have attempted in python.

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • Java
  • Python
Interview preparation tips for other job seekers - MCQ test based on loops and string, asked in java I think. I attempted and cleared. 20 questions/30 mins.

coding test was 1 hour and 5 questions were given. medium level questions.

Cmots Infotech Interview FAQs

How many rounds are there in Cmots Infotech interview?
Cmots Infotech interview process usually has 2 rounds. The most common rounds in the Cmots Infotech interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Cmots Infotech interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cmots Infotech. The most common topics and skills that interviewers at Cmots Infotech expect are SQL, Coding, Windows, XML and Ajax.
What are the top questions asked in Cmots Infotech interview?

Some of the top questions asked at the Cmots Infotech interview -

  1. What is OOPS please explain any th...read more
  2. What is the PHP Please expl...read more
  3. Explain sorting mechan...read more

Tell us how to improve this page.

Cmots Infotech Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.2
 • 57 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
View all

Cmots Infotech Reviews and Ratings

based on 39 reviews

2.7/5

Rating in categories

3.0

Skill development

2.6

Work-life balance

2.1

Salary

3.7

Job security

2.3

Company culture

1.8

Promotions

2.9

Work satisfaction

Explore 39 Reviews and Ratings
Software Developer
37 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Data Analyst
31 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Financial Analyst
13 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Software Engineer
12 salaries
unlock blur

₹1.5 L/yr - ₹5.6 L/yr

Softwaretest Engineer
7 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Cmots Infotech with

Medcode

4.5
Compare

Maxgen Technologies

4.5
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview