Upload Button Icon Add office photos

Tismo Technology Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Tismo Technology Solutions Interview Questions and Answers

Updated 25 Nov 2024
Popular Designations

7 Interview questions

A QA Engineer was asked 7mo ago
Q. Write a MySQL query.
Ans. 

Query to retrieve all columns from a table named 'users'

  • Use SELECT * FROM users;

  • Replace 'users' with the actual table name if different

View all QA Engineer interview questions
A Firmware Engineer was asked 9mo ago
Q. Explain interrupts.
Ans. 

Interrupts are signals sent to the CPU to temporarily suspend the current program and execute a specific task.

  • Interrupts allow the CPU to handle external events without constantly checking for them.

  • There are different types of interrupts such as hardware interrupts and software interrupts.

  • Examples of interrupts include keyboard input, timer expiration, and hardware errors.

View all Firmware Engineer interview questions
A Firmware Engineer was asked 9mo ago
Q. Explain controllers.
Ans. 

Controllers are devices that manage the operation of other devices or systems.

  • Controllers receive input, process it, and send output signals to control the operation of other devices.

  • Examples of controllers include microcontrollers, PLCs (Programmable Logic Controllers), and PID controllers.

  • Controllers can be used in various applications such as industrial automation, robotics, and consumer electronics.

View all Firmware Engineer interview questions
A Business Development Executive was asked 10mo ago
Q. Give an extemporaneous speech on balancing education and extracurricular activities.
Ans. 

Balancing education and extracurricular activities is crucial for holistic development.

  • Prioritize tasks and create a schedule to allocate time for both education and activities.

  • Set realistic goals and manage time efficiently to avoid burnout.

  • Seek support from teachers, parents, or mentors to maintain a healthy balance.

  • Use extracurricular activities to enhance skills that can complement academic learning.

  • Learn to d...

View all Business Development Executive interview questions
A GET Embedded was asked 11mo ago
Q. Write a program to check if a number is a power of 7.
Ans. 

A program to check if a given number is a power of 7.

  • Use a loop to continuously divide the number by 7 until it becomes 1 or not divisible anymore.

  • If the final result is 1, then the number is a power of 7.

  • If the final result is not 1, then the number is not a power of 7.

A GET Embedded was asked 11mo ago
Q. Write a C program to find the second smallest element in an array.
Ans. 

To find the 2nd smallest element in an array in C programming, we can sort the array and then access the element at index 1.

  • Sort the array in ascending order using a sorting algorithm like bubble sort or quicksort.

  • Access the element at index 1 to get the 2nd smallest element.

  • Example: int arr[] = {5, 2, 8, 1, 3}; After sorting: {1, 2, 3, 5, 8}. 2nd smallest element is arr[1] = 2.

A QA Engineer was asked 7mo ago
Q. Write test case for pen and a leave letter form
Ans. 

Test case for pen and leave letter form

  • Verify pen writes smoothly on paper

  • Check if pen ink is not leaking

  • Ensure all fields in leave letter form are editable

  • Submit form and verify successful submission message

View all QA Engineer interview questions
Are these interview questions helpful?

Tismo Technology Solutions Interview Experiences

15 interviews found

Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Asked basic aptitude and GK questions(like % of CO2 in the atmosphere). Then electronics ones on networks, digital, signals, and C programming. Total 30 qns.

Round 2 - Technical 

(4 Questions)

  • Q1. Introduce yourself, usual stuff
  • Q2. Basic 8051 Microcontroller questions
  • Q3. Find 2nd smallest element in an array C programming.
  • Ans. 

    To find the 2nd smallest element in an array in C programming, we can sort the array and then access the element at index 1.

    • Sort the array in ascending order using a sorting algorithm like bubble sort or quicksort.

    • Access the element at index 1 to get the 2nd smallest element.

    • Example: int arr[] = {5, 2, 8, 1, 3}; After sorting: {1, 2, 3, 5, 8}. 2nd smallest element is arr[1] = 2.

  • Answered by AI
  • Q4. Structures, unions, etc in C
Round 3 - Technical 

(4 Questions)

  • Q1. Introduce yourself, rank in competitive entrance exam
  • Q2. Program to check if number is a power of 7
  • Ans. 

    A program to check if a given number is a power of 7.

    • Use a loop to continuously divide the number by 7 until it becomes 1 or not divisible anymore.

    • If the final result is 1, then the number is a power of 7.

    • If the final result is not 1, then the number is not a power of 7.

  • Answered by AI
  • Q3. Array of 5 elements is given. It should contain numbers 1 to 6. Hence one number has to be missing. Write a program to didn't this number.
  • Q4. Given a 32-bit integer, write a program to return 1 if the first and last nibble are the same.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic knowledge and questions related to business and marketing and also grammar

Round 2 - extempre 

(2 Questions)

  • Q1. Questions from resume uploaded
  • Q2. Extempore on balancing education and extracurricular activities
  • Ans. 

    Balancing education and extracurricular activities is crucial for holistic development.

    • Prioritize tasks and create a schedule to allocate time for both education and activities.

    • Set realistic goals and manage time efficiently to avoid burnout.

    • Seek support from teachers, parents, or mentors to maintain a healthy balance.

    • Use extracurricular activities to enhance skills that can complement academic learning.

    • Learn to delega...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell about yourself in technical manner
  • Ans. 

    I am a business development executive with a strong technical background in software development and data analysis.

    • Proficient in programming languages such as Java, Python, and SQL

    • Experienced in utilizing data analytics tools like Tableau and Power BI

    • Skilled in developing and implementing software solutions to meet business needs

  • Answered by AI
  • Q2. What you understood by the job tittle
  • Ans. 

    A Business Development Executive is responsible for identifying new business opportunities, building relationships with potential clients, and driving growth for the company.

    • Identifying new business opportunities through market research and networking

    • Building and maintaining relationships with potential clients

    • Developing strategies to drive growth and increase revenue

    • Collaborating with internal teams to ensure client s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be good with what you are given in your resume. There is no need to fake it. try to find a clear clarification on the job title and questions related to the jobs
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Code snippets were given to find output

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain interupts
  • Ans. 

    Interrupts are signals sent to the CPU to temporarily suspend the current program and execute a specific task.

    • Interrupts allow the CPU to handle external events without constantly checking for them.

    • There are different types of interrupts such as hardware interrupts and software interrupts.

    • Examples of interrupts include keyboard input, timer expiration, and hardware errors.

  • Answered by AI
  • Q2. Timers ,counters
Round 3 - One-on-one 

(2 Questions)

  • Q1. Explain controllers
  • Ans. 

    Controllers are devices that manage the operation of other devices or systems.

    • Controllers receive input, process it, and send output signals to control the operation of other devices.

    • Examples of controllers include microcontrollers, PLCs (Programmable Logic Controllers), and PID controllers.

    • Controllers can be used in various applications such as industrial automation, robotics, and consumer electronics.

  • Answered by AI
  • Q2. Make a counter using d flipflops
  • Ans. 

    A counter can be created using D flip-flops by connecting the output of one flip-flop to the input of the next.

    • Connect the Q output of one D flip-flop to the D input of the next flip-flop

    • Use clock signal to trigger the flip-flops and increment the count

    • Use additional logic gates if needed for specific counter functionality

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

General questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. 8051 architecture
  • Q2. Digital and analog

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Duration i hr,c code snippets

Round 2 - Technical 

(1 Question)

  • Q1. Risc architucture,interupts

Interview Preparation Tips

Interview preparation tips for other job seekers - st
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

1st round was aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Second was technical
  • Q2. Related to technical
Round 3 - Technical 

(1 Question)

  • Q1. 3rd was also technical
Round 4 - HR 

(1 Question)

  • Q1. Last Hr discussion..that she didn't give good ratings after clearing all the rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time...if they are not gonna select then they should not take all the rounds and at last in hr discussion she rejected don't know on what basis.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were aptitude and code snippets qs

Round 2 - Technical 

(2 Questions)

  • Q1. Basic electronics
  • Q2. Questions on Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Study c programming and btec electronics core subjects deeply

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy to moderate level quants logical and testing related questions

Round 2 - Technical 

(2 Questions)

  • Q1. Write MySQL query
  • Ans. 

    Query to retrieve all columns from a table named 'users'

    • Use SELECT * FROM users;

    • Replace 'users' with the actual table name if different

  • Answered by AI
  • Q2. Write test case for pen and a leave letter form
  • Ans. 

    Test case for pen and leave letter form

    • Verify pen writes smoothly on paper

    • Check if pen ink is not leaking

    • Ensure all fields in leave letter form are editable

    • Submit form and verify successful submission message

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Genral apptitude with 25 questions for 30mins and coding section 2 questions 30 mins

Interview Preparation Tips

Interview preparation tips for other job seekers - read digital elctronics and dsp , analog and c programming

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Electronics, data structures, and general aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Projects, Types of communications, What is UART, UART Data frame, ARM Registers
  • Q2. Combinational and sequential circuits, flip flops and types, bit manipulation
Round 3 - Coding Test 

4-5 questions asked, Done in a shared google worksheet, Duration 50 mins

Round 4 - Coding Test 

4 questions, in any IDE, topics- Bit manipulation, simple array, 2d array, pattern printing.

Interview Preparation Tips

Topics to prepare for Tismo Technology Solutions Software Engineer interview:
  • Embedded Systems
  • C
  • Bit manipulation
  • arrays
  • Digital Electronics
Interview preparation tips for other job seekers - Be confident on what you put out to the interviewers.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Tismo Technology Solutions?
Ask anonymously on communities.

Tismo Technology Solutions Interview FAQs

How many rounds are there in Tismo Technology Solutions interview?
Tismo Technology Solutions interview process usually has 2-3 rounds. The most common rounds in the Tismo Technology Solutions interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Tismo Technology Solutions 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 Tismo Technology Solutions. The most common topics and skills that interviewers at Tismo Technology Solutions expect are C#, Embedded Systems, Microcontroller, RTOS and Firmware Development.
What are the top questions asked in Tismo Technology Solutions interview?

Some of the top questions asked at the Tismo Technology Solutions interview -

  1. Array of 5 elements is given. It should contain numbers 1 to 6. Hence one numbe...read more
  2. Given a 32-bit integer, write a program to return 1 if the first and last nibbl...read more
  3. Find 2nd smallest element in an array C programmi...read more
How long is the Tismo Technology Solutions interview process?

The duration of Tismo Technology Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.1/5

based on 10 interview experiences

Difficulty level

Easy 17%
Moderate 67%
Hard 17%

Duration

Less than 2 weeks 83%
4-6 weeks 17%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Tismo Technology Solutions Reviews and Ratings

based on 42 reviews

2.7/5

Rating in categories

3.3

Skill development

2.4

Work-life balance

3.0

Salary

2.8

Job security

2.1

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 42 Reviews and Ratings
Business Development Executive

Bangalore / Bengaluru

0-2 Yrs

₹ 4-11 LPA

Program Managers

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
36 salaries
unlock blur

₹6 L/yr - ₹13.5 L/yr

Software Developer
22 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Firmware Engineer
20 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Business Development Executive
13 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹9.1 L/yr - ₹14 L/yr

Explore more salaries
Compare Tismo Technology Solutions with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare
write
Share an Interview