Upload Button Icon Add office photos

Filter interviews by

Sree Concrete & Aggregates Interview Questions and Answers

Updated 6 Mar 2022

Sree Concrete & Aggregates Interview Experiences

1 interview found

QC Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2022

I applied via Company Website and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

To form A group and discuss the group members

Round 2 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. Where do you see yourself in 5 years?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Your finel advice coming from offer letter

QC Engineer Interview Questions asked at other Companies

Q1. What is heat exchanger? What is pressure vessel? Function of he/pv? Mechanical properties with codes and standards? Material grade and difference? ASME codes and standards? NDT test? WPS pqr wpq? P no. F no. A no? ITP stage?
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Is this possible to sale any product.
  • Ans. 

    Yes, it is possible to sell any product.

    • With the right sales strategy and approach, any product can be sold.

    • Understanding the target market and their needs is crucial for successful sales.

    • Effective communication and persuasion skills are essential in selling any product.

    • Building strong relationships with customers can lead to repeat sales and referrals.

    • Providing excellent customer service and support can enhance the sa...

  • Answered by AI

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All question releted to your work experience and technical also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared as per your resume also some questions came from your technical background.

I applied via Referral and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. They check your deep understanding about google sheets with various formulas and complex problems
  • Q2. Pareto Analysis, complex google sheets formulas
  • Q3. Sql basic understanding like to be able to write basic queries to little complex queries to fetch data
Round 2 - One-on-one 

(1 Question)

  • Q1. They check your proficiency to tackle complex problems with ease

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, even if you stuck on a particular question atleast give a try and you should be ready with a generic solution with deep understanding of the concept. Google sheets in itself is enough to crack the interview at byjus

Intern Interview Questions & Answers

BYJU'S user image Anonymous

posted on 11 Feb 2022

I applied via Approached by Company and was interviewed in Aug 2021. There were 2 interview rounds.

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 

(1 Question)

  • Q1. About marketing strategy

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying untill you get success

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. HR asked me about myself, why I am applying for this role?
  • Q2. He had given me a situation to sell a phone charger to me to test my convincing skills...

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is to give interview with proper energy and confidence while speaking....They want more energetic person not dull person.

I applied via LinkedIn and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is concurrency and how did you achieved it in your projects ?
  • Ans. 

    Concurrency is the ability of a program to execute multiple tasks simultaneously.

    • Achieved through multi-threading or asynchronous programming

    • Requires careful management of shared resources to avoid race conditions

    • Examples include implementing a chat application or processing multiple requests simultaneously

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Synechron Senior Associate interview:
  • ios
  • swift
  • Multithreading
  • concurrency
Interview preparation tips for other job seekers - Revise the basics prior to the interview and revise the projects you have share on your resume.

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was difficult aptitude test. One need to be well versed in aptitude and coding ( any programming language).

Round 2 - Technical 

(1 Question)

  • Q1. I don't know i didn't pass aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well as the test is hard to crack.

I applied via Company Website and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Searching and Sorting
  • Q2. If You have an infinite array then how many ways to sort it and also tell the complexities
  • Ans. 

    There are infinite ways to sort an infinite array with varying complexities.

    • Sorting algorithms like QuickSort, MergeSort, HeapSort, etc. can be used to sort the array.

    • The time complexity of sorting algorithms varies from O(n log n) to O(n^2).

    • The space complexity also varies depending on the algorithm used.

    • Sorting an infinite array is not practical, so it is usually done in chunks or using parallel processing.

    • The sortin...

  • Answered by AI
  • Q3. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all charge your laptop. In my case there is some electricity issue , my laptop is not fully charged and interviewer taking interview one by one to every student . So I m very scared at that time , But by god I have my brother laptop so I do not face any problem at the time of interview .

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This test consists of two coding questions and some MCQ regarding computer fundamentals.

  • Q1. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Find total distinct card types and common card types between two packs of cards.

    • Create a set to store distinct card types when combining both packs.

    • Iterate through each pack and add card types to the set.

    • Find the intersection of card types between the two packs to get common card types.

  • Answered by AI
  • Q2. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through all possible allocations of books to students.

    • Calculate the maximum number of pages assigned to a student for each allocation.

    • Return the minimum of these maximums as the result.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was a technical round that is based on DSA and computer fundamentals.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria10- above 60% 12- ABove 60 percentZS Associates interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, OOPS, Operating System , System DesignTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.

Application resume tips for other job seekers

Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Sree Concrete & Aggregates Interview FAQs

How many rounds are there in Sree Concrete & Aggregates interview?
Sree Concrete & Aggregates interview process usually has 2 rounds. The most common rounds in the Sree Concrete & Aggregates interview process are Group Discussion and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Vodafone Idea Interview Questions
4.0
 • 561 Interviews
EPAM Systems Interview Questions
3.7
 • 556 Interviews
ZS Interview Questions
3.3
 • 454 Interviews
Tata Projects Interview Questions
4.2
 • 453 Interviews
Goldman Sachs Interview Questions
3.5
 • 380 Interviews
Synechron Interview Questions
3.5
 • 366 Interviews
Hero MotoCorp Interview Questions
4.1
 • 345 Interviews
CARS24 Interview Questions
3.5
 • 337 Interviews
View all

Sree Concrete & Aggregates Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Sree Concrete & Aggregates with

BYJU'S

3.1
Compare

Vodafone Idea

4.0
Compare

Tata Projects

4.2
Compare

Indiamart Intermesh

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