Upload Button Icon Add office photos

Filter interviews by

Raw Engineering Interview Questions, Process, and Tips

Updated 27 Mar 2024

Top Raw Engineering Interview Questions and Answers

View all 7 questions

Raw Engineering Interview Experiences

Popular Designations

4 interviews found

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

I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Details of ITIL
  • Q2. Basics of AWS Services
  • Q3. On call support 24×7
  • Q4. Situation based questions. How would you react if server goes down
  • Q5. Databases like postgresql mongodb redis cache
  • Q6. Basic scripting questions python and ruby
Round 2 - HR 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. Salary requirements
  • Q3. Will you work on 24×7 support requirements
  • Ans. 

    Yes, I am willing to work on 24x7 support requirements.

    • I understand the importance of providing round-the-clock support to ensure system availability and minimize downtime.

    • I am comfortable with working in shifts and being on-call to address any issues that may arise.

    • I have experience in incident management and troubleshooting, which are crucial skills for handling support requirements.

    • I am familiar with tools and techn...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ITIL, MongoDB, and basics of Azure/AwS

Devops Engineer Interview Questions asked at other Companies

Q1. if you want to connect multiple vpc ,we have 2 or 3 vpc, you have to connect ec2 to each vpc? so how you can achieve that?
View answer (3)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2023.

Round 1 - Technical 

(5 Questions)

  • Q1. 1. AWS sagemaker, aws redis cache 2. Kubernetes Architecture 3. MongoDB and redis database 4. 5 ITIL principles and detail explanation 5. Basic Python / Ruby related Qs 6. Incident Situation based Question...
  • Q2. Top ITIL related principles MongoDB in detail. Aws sagemaker, eks and basic level. Kubernetes components and working. Questions about mention projects in resume.
  • Q3. Situation based Questions
  • Q4. MongoDB basics Non-RDB
  • Q5. Java OOPS and SDLC

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn ITIL.
Basic AWS Azure questions
Projects you have done in past
SDLC
Nodejs and redis/mongoDB related basic questions

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2023. 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 

(2 Questions)

  • Q1. What is mvvm Design patterns Services Use cases
  • Ans. 

    MVVM is a design pattern used in software development to separate the user interface from the business logic.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the user interface

    • ViewModel acts as an intermediary between the Model and View

    • MVVM helps in achieving separation of concerns and easier unit testing

    • Popular in frameworks like Angular and Vue.js

  • Answered by AI
  • Q2. Shared viewmodel Algorithms
  • Ans. 

    Shared viewmodel is a design pattern used in software development to share data between different components.

    • Shared viewmodel allows multiple components to access and modify the same data

    • It helps in keeping the data consistent across different parts of the application

    • Example: Using a shared viewmodel in a shopping cart application to update the total price when items are added or removed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of android and kotlin

Skills evaluated in this interview

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
Add answer
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is promise?
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() to handle success and failure.

    • Example: Fetching data from an API returns a promise that resolves with the data or rejects with an error.

  • Answered by AI
  • Q2. How async code works in javascript
  • Ans. 

    Async code in JavaScript allows non-blocking execution, improving performance and responsiveness.

    • Async code uses callbacks, promises, or async/await to handle asynchronous operations.

    • Callbacks are functions passed as arguments to another function, to be executed once the async operation is complete.

    • Promises represent the eventual completion or failure of an asynchronous operation, allowing chaining of multiple async op...

  • Answered by AI
  • Q3. Write a program to find prime numbers
  • Ans. 

    Program to find prime numbers in a given range

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, then it is a prime number

    • Store prime numbers in an array

  • Answered by AI
  • Q4. Explain difference between let, const and var
  • Ans. 

    let, const, and var are all used for variable declaration in JavaScript, but they have different scopes and behaviors.

    • let: block-scoped, can be reassigned, not hoisted

    • const: block-scoped, cannot be reassigned, not hoisted

    • var: function-scoped, can be reassigned, hoisted

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

Raw Engineering interview questions for popular designations

 Associate Software Developer

 (1)

 Devops Engineer

 (1)

 Senior Devops Engineer

 (1)

 Software Engineer

 (1)

Jobs at Raw Engineering

View all

Interview questions from similar companies

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Basic details 

(2 Questions)

  • Q1. Location and work area
  • Q2. Basic details in general
Round 2 - HR 

(2 Questions)

  • Q1. Current and previous work experience and relevance
  • Q2. Territories covered
Round 3 - Behavioral 

(2 Questions)

  • Q1. Work experience, relevant experience
  • Q2. How can I expand their market
  • Ans. 

    Expanding the market can be achieved through market research, identifying new target demographics, developing new products or services, and implementing effective marketing strategies.

    • Conduct market research to identify potential new markets or untapped segments within the current market.

    • Analyze competitors to understand their strategies and identify opportunities for differentiation.

    • Develop new products or services th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Found their job ad on Naukri where the salary is mentioned as 8.4-10.8 LPA.
Initially the HR mentioned the salary to be the same as on the ad; but after the interviews, the HR said that the max they can offer is 10-15% hike over current CTC; which is even lower than the minimum salary they had mentioned in the JD.

If the HR is duping the candidates with just the salary itself then how can a future employee expect the employers to be transparent with him/her later on.

Also, they wanted me to sign a declaration that I will find a channel partner/distributor within 15 days of joining.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Create basic react app with dummy data fetched from JSON API
  • Ans. 

    Create a basic React app with dummy data fetched from a JSON API.

    • Set up a new React project using create-react-app

    • Create a component to fetch data from a JSON API using fetch or axios

    • Display the fetched data in the component

  • Answered by AI
  • Q2. Array methods and Flatten array
  • Q3. Event loop
  • Q4. HTML and Javascript basics
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(2 Questions)

  • Q1. What data structure is used to implement a priority queue?
  • Ans. 

    Binary heap is used to implement a priority queue.

    • Binary heap is a complete binary tree where each node has a value greater than or equal to its children.

    • It can be implemented using arrays, where the parent of node at index i is at index (i-1)/2.

    • Insertion and deletion operations have time complexity of O(log n) in a binary heap.

  • Answered by AI
  • Q2. How many trees will a binary tree have?
  • Ans. 

    A binary tree can have any number of nodes, but the maximum number of trees with n nodes is 2^n.

    • A binary tree can have 0 nodes, 1 node, 2 nodes, or any number of nodes.

    • The maximum number of binary trees with n nodes is 2^n.

    • For example, a binary tree with 3 nodes can have up to 8 different structures.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query to return the second highest marks in a student database
  • Ans. 

    Use a SQL query to find the second highest marks in a student database.

    • Use the ORDER BY clause to sort the marks in descending order

    • Use the LIMIT clause to limit the result to the second row

  • Answered by AI
  • Q2. Program to check if two strings are anagrams
  • Ans. 

    Program to check if two strings are anagrams

    • Create a function that takes in two strings as input

    • Remove any spaces and convert both strings to lowercase for consistency

    • Sort the characters in both strings and compare if they are equal to determine if they are anagrams

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI

Skills evaluated in this interview

Traveling Interview Questions & Answers

Tracelink user image Anonymous

posted on 28 Sep 2024

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Simple travel question
  • Q2. Simple reply and Selection
  • Q3. Good job at any cost
  • Q4. I want top most Salary
  • Q5. I need good appreciation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence

Raw Engineering Interview FAQs

How many rounds are there in Raw Engineering interview?
Raw Engineering interview process usually has 1-2 rounds. The most common rounds in the Raw Engineering interview process are Technical, Resume Shortlist and HR.
How to prepare for Raw Engineering 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 Raw Engineering. The most common topics and skills that interviewers at Raw Engineering expect are Web Technologies, GIT, System Design, Android and Backend.
What are the top questions asked in Raw Engineering interview?

Some of the top questions asked at the Raw Engineering interview -

  1. Will you work on 24×7 support requireme...read more
  2. How async code works in javascr...read more
  3. Explain difference between let, const and ...read more

Tell us how to improve this page.

Raw Engineering Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 282 Interviews
View all

Raw Engineering Reviews and Ratings

based on 42 reviews

2.9/5

Rating in categories

3.0

Skill development

2.8

Work-life balance

2.7

Salary

2.6

Job security

3.1

Company culture

2.4

Promotions

2.9

Work satisfaction

Explore 42 Reviews and Ratings
Android Developer

Virar

1-4 Yrs

₹ 3-8 LPA

Talent Acquisition Lead

Mumbai

7-12 Yrs

Not Disclosed

Explore more jobs
Applications Engineer
34 salaries
unlock blur

₹4.8 L/yr - ₹17.5 L/yr

QA Engineer
16 salaries
unlock blur

₹4.7 L/yr - ₹12 L/yr

Associate Application Engineer
12 salaries
unlock blur

₹7.3 L/yr - ₹9 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹8 L/yr - ₹8.8 L/yr

Senior Application Engineer
11 salaries
unlock blur

₹12 L/yr - ₹28 L/yr

Explore more salaries
Compare Raw Engineering 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