Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by STEMM One Cloudworks Team. If you also belong to the team, you can get access from here

STEMM One Cloudworks Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 5 Reviews

Filter interviews by

STEMM One Cloudworks Flutter Developer Interview Questions and Answers

Updated 14 Oct 2024

STEMM One Cloudworks Flutter Developer Interview Experiences

1 interview found

Flutter Developer Interview Questions & Answers

user image Shubham Bansal

posted on 14 Oct 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Discussion about Projects and challenges.
  • Q2. Background and basic skill discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - I got an opportunity for interview of Flutter Developer position.

Ayush Sanghvi (Founder) came to take interview. I don’t know how a BBA guy can analyse the a Flutter Developer.

He asked a few questions about my experience and 1 technical question i.e. What are the 4 pillars of programming?

Now you can understand what kind of time pass is going on in company. I think company opened a few positions only to attract investors.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at The LNM Institute of information Technology, Jaipur and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question of mySQL like inner join,left join,right join,outer join.
  • Q2. Windows function in MySQL and Basic DSA question on implementation of heap sort
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(5 Questions)

  • Q1. Explain the project you are working on.
  • Q2. A code on python, strings.
  • Q3. Two tables given and asked how many outputs will you get if you apply inner joim
  • Q4. Versioning in aws
  • Ans. 

    Versioning in AWS allows you to manage different versions of your resources.

    • AWS S3 supports object versioning to keep multiple versions of an object in the same bucket.

    • AWS Lambda supports versioning to manage different versions of your functions.

    • AWS API Gateway supports versioning to manage different versions of your APIs.

  • Answered by AI
  • Q5. Redshift related questions

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was Python coding and Sql query assessment round.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Perform task on joins?
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Use JOIN keyword to combine tables based on a common column

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

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

    Projects are specific tasks or assignments that require a set of skills and resources to complete.

    • Projects are temporary endeavors with a defined beginning and end.

    • They are unique, with specific goals, deliverables, and constraints.

    • Projects require a team of individuals with different roles and responsibilities.

    • Examples: Developing a data pipeline for real-time analytics, building a recommendation system for an e-comme

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is indexing in SQL?
  • Ans. 

    Indexing in SQL is a technique used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of data.

    • They work similar to the index in a book, allowing the database to quickly find the rows that match a certain condition.

    • Indexes can be created using a single column or a combination of columns.

    • ...

  • Answered by AI
  • Q2. Lift capacity and passenger sql query
  • Q3. What is your experience in Pyspark , python
  • Ans. 

    I have extensive experience in using Pyspark and Python for data engineering tasks.

    • I have worked on various projects involving data processing, transformation, and analysis using Pyspark and Python.

    • I am proficient in writing efficient and optimized code in Pyspark for big data processing.

    • I have experience in handling large datasets and implementing complex data pipelines using Pyspark and Python.

  • Answered by AI
  • Q4. Tell me about architecture of the project that you are working on

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Newspaper Ad and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql queries, python program and my clg background
  • Q2. Star pattern, codding and sql question oral
Round 2 - One-on-one 

(2 Questions)

  • Q1. Joins , sub queries
  • Q2. Trigger, group by
Round 3 - Coding Test 

Programing questiion star pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - not good
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain Differnece between ETL AND ELT?
  • Ans. 

    ETL is Extract, Transform, Load where data is extracted, transformed, and loaded in that order. ELT is Extract, Load, Transform where data is extracted, loaded, and then transformed.

    • ETL: Data is extracted from the source, transformed in a separate system, and then loaded into the target system.

    • ELT: Data is extracted from the source, loaded into the target system, and then transformed within the target system.

    • ETL is sui...

  • Answered by AI
  • Q2. Explain the differnece between the difference?
  • Ans. 

    The difference between the difference is the result of subtracting one value from another.

    • Difference is the result of subtracting two values.

    • The difference between two values can be positive, negative, or zero.

    • For example, the difference between 10 and 5 is 5.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Calculate repeating element in list
  • Ans. 

    Find the repeating element in a list

    • Iterate through the list and keep track of elements seen so far

    • Use a hash set to efficiently check for duplicates

    • Return the first element that is already in the set

  • Answered by AI
  • Q2. Calculate maximum salary in SQL
  • Ans. 

    Use the MAX() function in SQL to calculate the maximum salary.

    • Use the MAX() function along with the column name of the salary field.

    • Example: SELECT MAX(salary) FROM employees;

    • Ensure the correct table and column names are used in the query.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined Celebal Technology as Intern, The interviewer asked python and SQL easy questions.
1. Calculate maximum salary
2. Given two tables and what will be the output after the inner join
3. Calculate repeating number in a list in python.
4. Class object

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL basic questions, Difference between types of join, Aggregate function, Triggers and cursors
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion with roles and responsiblity

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the concepts of SQL and what you mentioned in CV should match
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What are advance types of join ?
  • Ans. 

    Advanced types of join include outer join, self join, and cross join.

    • Outer join: includes unmatched rows from one or both tables

    • Self join: joins a table with itself

    • Cross join: combines each row from one table with each row from another table

  • Answered by AI
  • Q2. Difference between having clause and where clause?
  • Ans. 

    The WHERE clause is used to filter rows before grouping, while the HAVING clause is used to filter groups after grouping.

    • WHERE clause is used with SELECT, UPDATE, and DELETE statements.

    • HAVING clause is used with SELECT statements that include GROUP BY clause.

    • WHERE clause filters individual rows based on conditions.

    • HAVING clause filters groups based on conditions.

    • WHERE clause is applied before the GROUP BY clause.

    • HAVING...

  • Answered by AI
  • Q3. Differnce between join and union?
  • Ans. 

    Join combines rows from two or more tables based on a related column, while union combines rows from two or more tables into a single result set.

    • Join is used to combine rows from different tables based on a related column.

    • Union is used to combine rows from two or more tables into a single result set.

    • Join can be used with different types like inner join, left join, right join, etc.

    • Union only combines rows with the same ...

  • Answered by AI
  • Q4. Basic oops concept ?
  • Q5. What are python data structure?
  • Ans. 

    Python data structures are containers that hold and organize data in different ways.

    • Some common Python data structures are lists, tuples, sets, and dictionaries.

    • Lists are ordered and mutable, allowing duplicate elements.

    • Tuples are ordered and immutable, useful for storing related data together.

    • Sets are unordered and contain unique elements, useful for mathematical operations.

    • Dictionaries are key-value pairs, providing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basic

Skills evaluated in this interview

STEMM One Cloudworks Interview FAQs

How many rounds are there in STEMM One Cloudworks Flutter Developer interview?
STEMM One Cloudworks interview process usually has 1 rounds. The most common rounds in the STEMM One Cloudworks interview process are One-on-one Round.
How to prepare for STEMM One Cloudworks Flutter Developer 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 STEMM One Cloudworks. The most common topics and skills that interviewers at STEMM One Cloudworks expect are Flutter, Javascript and Terraform.

Tell us how to improve this page.

STEMM One Cloudworks Flutter Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Acviss Interview Questions
4.3
 • 7 Interviews
View all

STEMM One Cloudworks Flutter Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Flutter Developer
3 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Explore more salaries
Compare STEMM One Cloudworks with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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