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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

In the coding test, there were 2 problems based on arrays and hashing (easy to medium level leetcode)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Several OOP questions were asked.... like, Can we have a class inside an interface? Can we have a static constructor? Can we have multiple main methods?
  • Q2. DBMS question: Normalization questions and keys concepts.
Round 3 - One-on-one 

(2 Questions)

  • Q1. DSA question (stack based) You have a stack full of numbers, you have to arrange them in ascending order in the same stack without using any other data structure.
  • Q2. OS and DBMS questions(sharding, semaphores, etc.)
Round 4 - HR 

(1 Question)

  • Q1. Questions based on Consultadd principles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Review data structures and algorithms (DSA) once before the interview, as Consultadd interviews primarily focus on DSA. Additionally, revisit technical subjects such as Operating Systems (OS), Database Management Systems (DBMS), Computer Networks (CN), DSA, Algorithm Design and Analysis (ADA), and Object-Oriented Programming (OOP).
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Pivot columns in sql
  • Ans. 

    Pivoting columns in SQL involves transforming rows into columns to display data in a different format.

    • Use the PIVOT keyword in SQL to pivot columns

    • Specify the columns to pivot on and the values to display in the new columns

    • Aggregate functions like SUM, AVG, COUNT can be used with PIVOT

    • Example: SELECT * FROM table_name PIVOT (SUM(value_column) FOR pivot_column IN ('value1', 'value2', 'value3'))

  • Answered by AI
  • Q2. Slow changing dimensions
  • Q3. Dynamic rankx top 3
  • Q4. Field parameters
  • Q5. Stored procedures

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't have proper interviewer they were rude and show bad attitude to the candidates.

Better avoid this company

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI
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.

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