Upload Button Icon Add office photos

Filter interviews by

Shree Ramkrishna Export Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. How handling team and process discrepancy the Breaks and handling call to oversight team for error call.
  • Q2. I will learn new things and growth
  • Q3. How setup new funds
  • Q4. We have behaviour in management
  • Q5. Always positive thoughts and hard work

Interview Preparation Tips

Topics to prepare for Statestreet HCL Services Reconciliation Specialist interview:
  • Bank Reconciliation
Interview preparation tips for other job seekers - Some of the people they don't talk properly but they will do great hard worker and smart work. You have to give to chance to them develop and trainings.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key topics related to Generative AI, specifically focusing on Retrieval-Augmented Generation (RAG) and Large Language Models (LLM)?
  • Q2. What is your understanding of the existing project and the technology stacks used?
Round 2 - Technical 

(3 Questions)

  • Q1. What has been your contribution to existing work and the technologies used in that context?
  • Q2. ML, DL, Gen AI implementation and flow
  • Q3. Python Coding logic and semantics
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the existing work challenges you face, and what solutions have you implemented to address them?
  • Q2. What is your understanding of Generative AI and Natural Language Processing (NLP), and can you provide examples of their use cases?

Interview Preparation Tips

Interview preparation tips for other job seekers - Genuinely communicate your skills and contributions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Ans. 

    Performing operations on an array of objects using JavaScript.

    • Use array methods like map, filter, reduce for operations on object array.

    • Access object properties using dot notation or bracket notation.

    • Iterate through the array using loops like for loop or forEach method.

    • Example: Calculate total sum of 'price' property in an array of products.

  • Answered by AI
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
  • Ans. 

    To create slice and combine reducers in React, use the createSlice and combineReducers functions from Redux toolkit.

    • Use createSlice function to define a slice of state with reducers and actions.

    • Example: const counterSlice = createSlice({ name: 'counter', initialState: 0, reducers: { increment: state => state + 1, decrement: state => state - 1 } })

    • Use combineReducers function to combine multiple slices into a sing...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
  • Ans. 

    To create and optimize a React application, focus on efficient component structure, state management, code splitting, lazy loading, and performance monitoring.

    • Use functional components and hooks for better performance.

    • Implement state management with tools like Redux or Context API.

    • Split code into smaller chunks and lazy load components for faster initial load times.

    • Optimize performance by minimizing re-renders and usin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
  • Ans. 

    Day to day activities involve coding, debugging, testing, collaborating with team members. Salary negotiation involves research, preparation, and effective communication.

    • Coding and developing new features

    • Debugging and fixing issues

    • Testing code for quality assurance

    • Collaborating with team members for project progress

    • Researching market rates for salary negotiation

    • Preparing a strong case for desired salary

    • Effectively comm

  • Answered by AI

Lead Interview Questions & Answers

Swiggy user image Bhagwat Suryawanshi

posted on 5 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions regarding operations
  • Q2. Questions regarding manpower management and cost
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions regarding ownership as a warehouse manager
  • Q2. Questions regarding communication skills and personal development
Round 3 - HR 

(2 Questions)

  • Q1. Personal details
  • Q2. Career goals in corporate
  • Ans. 

    My career goal in the corporate sector is to climb the ladder to a leadership position where I can make strategic decisions and drive the success of the company.

    • Work towards obtaining a management role within the next 5 years

    • Develop strong leadership and communication skills through training and mentorship

    • Contribute to the growth and profitability of the company through innovative strategies

    • Build a strong network of pr

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

The test will comprise a total of 60 questions, divided as follows: 70% of the questions will focus on finance and accounting, while the remaining questions will cover aptitude and English.

Round 2 - Technical 

(1 Question)

  • Q1. Zero coupon bonds, long-term liabilities, return on equity, debt-equity ratio, captial budgeting and techniques, bonds and its types, debt instruments meaning, collateral, mortgage, spin off, demerger, mer...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview panel consists of two members: the team leader and the manager. They specifically asked me detailed questions regarding finance, which included my percentage in my MBA, inquiries related to my projects, and how I learned about the company. While responding to the questions, it is essential to remain confident, and if a question is unfamiliar, we can articulate our response in our own words. We should answer them slowly instead of hurrying. Overall I have a great experience while answering the questions and panel members were polite persons.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

For python and Java programming languages

Round 2 - Technical 

(3 Questions)

  • Q1. What is technical?
  • Ans. 

    Technical refers to knowledge, skills, and expertise related to a specific field or subject.

    • Technical knowledge involves understanding the principles, theories, and practices within a particular area.

    • Technical skills are practical abilities to perform tasks or use tools effectively.

    • Technical expertise is gained through education, training, and experience.

    • Examples: programming languages, engineering design software, mac

  • Answered by AI
  • Q2. What you think about technical
  • Ans. 

    Technical aspects in the field of Industrial Engineering are crucial for optimizing processes and improving efficiency.

    • Technical aspects involve utilizing software and tools to analyze data and optimize processes.

    • Understanding of manufacturing processes, supply chain management, and quality control is essential.

    • Knowledge of automation, robotics, and artificial intelligence can help streamline operations.

    • Continuous impr...

  • Answered by AI
  • Q3. Technology is the application of conceptual knowledge to achieve practical goals, especially in a reproducible way. The word technology can also mean the products resulting from such efforts, including bot...

Interview Preparation Tips

Topics to prepare for Indus Towers Industrial Engineer interview:
  • Computer science engineering
Interview preparation tips for other job seekers - NNNNNNNNNNNNNNNNNNNN
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Some persons are discussing the company and jobs

Round 2 - One-on-one 

(5 Questions)

  • Q1. What experience in this field
  • Q2. What kind of job works before
  • Q3. Any reason choose this platform
  • Ans. 

    I chose this platform because of its strong reputation in the industry and its proven track record of success.

    • Strong reputation in the industry

    • Proven track record of success

    • Positive reviews from current and past employees

    • Opportunities for growth and advancement

    • Innovative and cutting-edge technology

  • Answered by AI
  • Q4. When you start your platform
  • Q5. Are you sure this job is perfect

Interview Preparation Tips

Interview preparation tips for other job seekers - You are select intresting jobs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Assignment 

An assignment based on the given scenario.

Round 2 - HR 

(1 Question)

  • Q1. Personal details and reason for change in job
Round 3 - One-on-one 

(1 Question)

  • Q1. Scenario based questions, aptitude and attitude , connecting new person or a popular personality

Shree Ramkrishna Export Interview FAQs

How to prepare for Shree Ramkrishna Export 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 Shree Ramkrishna Export. The most common topics and skills that interviewers at Shree Ramkrishna Export expect are Communication Skills, Marketing, Marketing Management, Conferences and Coordination.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Tata Steel Interview Questions
4.1
 • 812 Interviews
ITC Interview Questions
4.0
 • 533 Interviews
Patanjali Foods Interview Questions
3.9
 • 53 Interviews
View all

Shree Ramkrishna Export Reviews and Ratings

based on 26 reviews

4.4/5

Rating in categories

4.4

Skill development

4.2

Work-Life balance

4.5

Salary & Benefits

4.3

Job Security

4.5

Company culture

4.2

Promotions/Appraisal

4.3

Work Satisfaction

Explore 26 Reviews and Ratings
HR EXECUTIVE

Surat

2-4 Yrs

Not Disclosed

Explore more jobs
Graphic Designer
5 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Marketing Executive
4 salaries
unlock blur

₹3.4 L/yr - ₹3.6 L/yr

Manager
3 salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Computer Operator
3 salaries
unlock blur

₹2.2 L/yr - ₹3.8 L/yr

Civil Site Engineer
3 salaries
unlock blur

₹3.6 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Shree Ramkrishna Export with

Ratnamani Metals and Tubes

4.4
Compare

Patanjali Foods

3.9
Compare

Tata Steel

4.1
Compare

Adani Enterprises

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview