Upload Button Icon Add office photos

Filter interviews by

Srichid Technologies Software Engineer Trainee Interview Questions and Answers

Updated 14 Nov 2022

Srichid Technologies Software Engineer Trainee Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

(4 Questions)

  • Q1. This is divided into 2 sections basically, first part contains java based MCQ questions , if you know the basic Knowledge of the language you can get pass through and the second part is of coding part whe...
  • Q2. Why is java called the partial OOP concept?
  • Ans. 

    Java is not called the partial OOP concept.

    • Java is a fully object-oriented programming language.

    • It supports all the principles of OOP such as encapsulation, inheritance, and polymorphism.

    • Java allows the creation of classes, objects, and methods to implement OOP concepts.

    • It provides features like abstraction and encapsulation to achieve data hiding and modularity.

    • Java also supports interfaces, which are a key component ...

  • Answered by AI
  • Q3. Write a program to print the length of number of permutations if the given input is "123"
  • Ans. 

    Program to print the length of number of permutations of a given input

    • Use recursion to generate all permutations

    • Count the number of permutations and print the length

  • Answered by AI
  • Q4. You have to write your own code in whatever language your comfortable with
Round 2 - Group Discussion 

It was a total of 1hour session, where topic is selected after getting the ideas of the candidates itself. Once the topics are let out by all candidates everyone are let to discuss about the topic of discussion and then every candidate are let to talk about the topic according to their sitting order.

Interview Preparation Tips

Topics to prepare for Srichid Technologies Software Engineer Trainee interview:
  • Java
  • Python
  • IT basics
  • Android
  • basics about blockchain
Interview preparation tips for other job seekers - Its a company of 12 years, where there are less number of employees but you'll learn a lot there. The working hours is more when compared to many big tech companies yet its worth if your a fresher wanting to explore and learn things

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Chitkara Institute of Engineering & Technology, Rajpura and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

10 mcqs and 2 coding questions were given to solve in the language of your choice

Round 2 - Technical 

(2 Questions)

  • Q1. Dbms transactions
  • Q2. Os based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a thorough knowledge of core subjects and prepare dsa and interact with your interviewer as much as you can

I applied via Campus Placement

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 - Aptitude Test 

It was an aptitude test that contains questions from - Work, Clock, Percentage, Speed, Profit Loss, Calendar, Charts, and Reasoning.
English - Active Passive, Word Meanings, Error Spotting.

Round 3 - Coding Test 

Hackerrank: String Manipulation, Prime, Armstong number, Fibonacci
Time: 60Min.

Round 4 - Assignment 

Write HTML code to design the form for given design on the question paper.

Round 5 - Technical 

(1 Question)

  • Q1. It was a technical round where the interviewer asked basic to a deep level questions about DOM Tree, Set Timeout, CSSOM Tree, Form Controls callbacks, AJAX, etc.
Round 6 - HR 

(1 Question)

  • Q1. Why should we hire you. What is your weakness. Have you any offer
Round 7 - One-on-one 

(1 Question)

  • Q1. Some DSA related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the inteviews. Its not easy but also not very hard.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ETL, and can you explain it in a structured manner?
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process used to extract data from various sources, transform it into a consistent format, and load it into a target database or data warehouse.

    • Extract: Involves extracting data from different sources such as databases, files, APIs, etc.

    • Transform: Data is cleaned, validated, and transformed into a consistent format suitable for analysis.

    • Load: The transformed data is loade...

  • Answered by AI
  • Q2. What is the correct structure of a DBMS diagram?
  • Ans. 

    The correct structure of a DBMS diagram includes entities, attributes, relationships, and keys.

    • Entities represent the main objects in the database (e.g. Customer, Product).

    • Attributes are characteristics of entities (e.g. CustomerID, ProductName).

    • Relationships show how entities are related to each other (e.g. one-to-many, many-to-many).

    • Keys uniquely identify each record in a table (e.g. Primary Key, Foreign Key).

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Strengths,weakness,why do we hire you, what are your hobbies
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Role check
  • Q2. Tech stackP
Round 2 - Technical 

(2 Questions)

  • Q1. Project based questions
  • Q2. AWS related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question based on your experience. Mine was mostly design questions on AWS and how to use try and catch
  • Q2. Javascript using async/await with try catch block
  • Ans. 

    Using async/await with try catch block in Javascript

    • Use async keyword before the function declaration to make it asynchronous

    • Use await keyword before the function call to wait for the promise to resolve

    • Wrap the async/await code in a try catch block to handle errors

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Technical with design questions on web technology

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Intermediate DSA questions on strings

Round 2 - Case Study 

It's bit about the case study related to continuos data and need to find the n highest number at any given time .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the questions on LinkedIn list, trees, hashing , string .and be confident.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Some basic inheritance and overloading questions
  • Q2. Prepare for interface with same methods in one base class

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for overloading and inheritance with interface concept for calling method present in both interfaces with same name

Srichid Technologies Interview FAQs

How many rounds are there in Srichid Technologies Software Engineer Trainee interview?
Srichid Technologies interview process usually has 3 rounds. The most common rounds in the Srichid Technologies interview process are Resume Shortlist, Aptitude Test and Group Discussion.
What are the top questions asked in Srichid Technologies Software Engineer Trainee interview?

Some of the top questions asked at the Srichid Technologies Software Engineer Trainee interview -

  1. Why is java called the partial OOP conce...read more
  2. Write a program to print the length of number of permutations if the given inpu...read more
  3. This is divided into 2 sections basically, first part contains java based MCQ ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Srichid Technologies interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Iris Software Interview Questions
4.1
 • 129 Interviews
TO THE NEW Interview Questions
3.8
 • 126 Interviews
Nielsen Interview Questions
3.7
 • 113 Interviews
R.R. Donnelley Interview Questions
4.0
 • 98 Interviews
G4S Interview Questions
4.0
 • 93 Interviews
SGS Interview Questions
3.9
 • 88 Interviews
Epsilon Interview Questions
4.0
 • 86 Interviews
BCD Travel Interview Questions
4.4
 • 84 Interviews
Annalect Interview Questions
3.5
 • 65 Interviews
Publicis Interview Questions
3.7
 • 53 Interviews
View all
Full Stack Developer
7 salaries
unlock blur

₹3.1 L/yr - ₹7.2 L/yr

React Native Developer
5 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Software Engineer
4 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Software Developer
4 salaries
unlock blur

₹4.2 L/yr - ₹4.8 L/yr

Administration Manager
3 salaries
unlock blur

₹1.1 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Srichid Technologies with

G4S

4.0
Compare

SGS

3.9
Compare

R.R. Donnelley

4.0
Compare

Iris Software

4.1
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