Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Pitangent Analytics & Technology Solutions Team. If you also belong to the team, you can get access from here
4.5

based on 50 Reviews

Filter interviews by

Pitangent Analytics & Technology Solutions Software Engineer Interview Questions, Process, and Tips

Updated 8 Apr 2022

Top Pitangent Analytics & Technology Solutions Software Engineer Interview Questions and Answers

View all 24 questions

Pitangent Analytics & Technology Solutions Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image Sanajit Jana

posted on 30 Mar 2022

I applied via LinkedIn and was interviewed in Mar 2022. There were 5 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 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
  • Q4. Tell me about yourself.
Round 3 - Technical 

(25 Questions)

  • Q1. What is php stands for?
  • Ans. 

    PHP stands for Hypertext Preprocessor.

    • PHP is a server-side scripting language used for web development.

    • It can be embedded into HTML code.

    • PHP code is executed on the server, generating HTML that is sent to the client's browser.

    • PHP can interact with databases, create dynamic content, and handle forms.

    • Popular websites like Facebook and Wikipedia use PHP.

  • Answered by AI
  • Q2. What is migration in Laravel?
  • Ans. 

    Migration in Laravel is a way to manage database schema changes.

    • Migration allows developers to modify database schema using PHP code instead of SQL.

    • It helps in version control of database schema.

    • It provides a way to rollback changes made to the database schema.

    • Laravel provides a command-line interface to create and manage migrations.

    • Example: php artisan make:migration create_users_table --create=users

  • Answered by AI
  • Q3. What is seeder in Laravel?
  • Ans. 

    Seeder is a database seeding tool in Laravel.

    • Seeder is used to populate the database with test data.

    • It is used to insert data into database tables.

    • Seeder classes are stored in the database/seeds directory.

    • Seeder can be run using the 'php artisan db:seed' command.

    • Seeder can also be used to generate fake data using Faker library.

  • Answered by AI
  • Q4. How can you connect database into a Laravel framework?
  • Ans. 

    Database connection in Laravel framework

    • Configure database credentials in .env file

    • Update database configuration in config/database.php

    • Use Eloquent ORM to interact with database

    • Run migrations to create database tables

    • Use database queries to retrieve data

  • Answered by AI
  • Q5. What is artisan in Laravel?
  • Ans. 

    Artisan is the command-line interface included with Laravel.

    • Artisan provides a set of helpful commands for developers.

    • It can be used to generate boilerplate code, run database migrations, and more.

    • Developers can also create their own custom Artisan commands.

    • Artisan commands can be run using the 'php artisan' command in the terminal.

  • Answered by AI
  • Q6. What is Inheritance in php?
  • Ans. 

    Inheritance is a mechanism in PHP that allows a class to inherit properties and methods from another class.

    • A child class can inherit properties and methods from a parent class

    • The keyword 'extends' is used to inherit a class

    • Inherited methods and properties can be overridden in the child class

    • Inheritance promotes code reusability and saves time

    • Example: class ChildClass extends ParentClass {}

  • Answered by AI
  • Q7. What is access modifier?
  • Ans. 

    Access modifier is a keyword that determines the visibility and accessibility of a class, method, or variable.

    • Access modifiers are public, private, protected, and default.

    • Public access modifier allows unrestricted access to the class, method, or variable.

    • Private access modifier restricts access to the class, method, or variable within the same class.

    • Protected access modifier allows access to the class, method, or varia...

  • Answered by AI
  • Q8. What is constructor in php?
  • Ans. 

    Constructor is a special method in PHP classes that is automatically called when an object is created.

    • Constructors have the same name as the class

    • They can accept parameters

    • They are used to initialize object properties

    • If no constructor is defined, a default one is used

    • Constructors can be overloaded

  • Answered by AI
  • Q9. What is model in Laravel?
  • Ans. 

    Model in Laravel is a PHP class that interacts with a database table.

    • Models are used to retrieve and store data in a database.

    • They represent a table in the database and define its structure.

    • Models can have relationships with other models.

    • They can also have methods for performing common database operations.

    • Laravel provides an ORM (Object-Relational Mapping) to work with models.

  • Answered by AI
  • Q10. What is MVC stands for?
  • Ans. 

    MVC stands for Model-View-Controller, a software design pattern used for developing web applications.

    • MVC separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for rendering the user interface.

    • Controller handles user input and updates the model and view accordingly.

    • MVC promotes separation of concerns ...

  • Answered by AI
  • Q11. How MVC works for an application?
  • Ans. 

    MVC is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller handles user input and updates the model and view accordingly

    • MVC promotes separation of concerns and modularity

    • Examples of MVC frameworks include Ruby on Rails, ASP

  • Answered by AI
  • Q12. What is ORM in Laravel?
  • Ans. 

    ORM stands for Object-Relational Mapping. It is a technique used to map database tables to classes in Laravel.

    • ORM simplifies database operations by allowing developers to interact with the database using object-oriented syntax.

    • Laravel's ORM is called Eloquent and it provides a simple and elegant syntax for working with databases.

    • Eloquent allows developers to define relationships between database tables using model clas...

  • Answered by AI
  • Q13. How many relationships in Laravel?
  • Q14. What is many to many relationships? give an example.
  • Ans. 

    Many to many relationships refer to a situation where multiple instances of one entity are related to multiple instances of another entity.

    • It involves three tables: two entities and a junction table

    • Example: A student can enroll in multiple courses and a course can have multiple students enrolled

    • The junction table will have foreign keys from both entities

  • Answered by AI
  • Q15. How can I fetch 1st, 2nd, 3rd rank from student mark table?
  • Ans. 

    To fetch 1st, 2nd, 3rd rank from student mark table, we need to sort the table in descending order and select the top 3 rows.

    • Sort the student mark table in descending order based on the marks column.

    • Select the top 3 rows from the sorted table.

    • The first row will have the highest marks and hence the first rank, second row will have the second highest marks and hence the second rank, and so on.

  • Answered by AI
  • Q16. What is array and tell me the types with example?
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be of different types such as integer, float, character, etc.

    • For example, int arr[5] is an array of 5 integers.

    • Another example is char str[10] which is an array of 10 characters.

    • Arrays can also be multidimensional, such as int arr[3][4] which is a 3x4 matrix of integers.

  • Answered by AI
  • Q17. What is service container?
  • Ans. 

    A service container is a tool that manages the creation and configuration of objects in a software application.

    • It is used to manage dependencies between objects.

    • It allows for easy swapping of implementations.

    • It can be used to configure and manage application settings.

    • Examples include Laravel's service container and Symfony's dependency injection container.

  • Answered by AI
  • Q18. What is service provider?
  • Ans. 

    A service provider is a company or organization that provides a service to customers or clients.

    • Service providers offer a range of services, such as internet, phone, or cable TV.

    • They may also provide professional services, such as legal or accounting services.

    • Service providers may be private companies or government agencies.

    • Examples of service providers include Comcast, Verizon, and Deloitte.

    • Service providers are often...

  • Answered by AI
  • Q19. What is namespace in laravel?
  • Ans. 

    Namespace is a way to organize code and avoid naming conflicts in Laravel.

    • Namespaces are defined using the namespace keyword followed by the namespace name.

    • In Laravel, namespaces are used to organize controllers, models, and other classes.

    • For example, the namespace for a controller named UserController would be App\Http\Controllers.

    • Namespaces can also be used to import classes from other namespaces using the use keywor

  • Answered by AI
  • Q20. What is default view engine in Laravel?
  • Ans. 

    Blade is the default view engine in Laravel.

    • Blade is a templating engine that allows you to write clean and concise templates.

    • It provides features like template inheritance, sections, and layouts.

    • You can also use other view engines like Twig or Smarty in Laravel.

  • Answered by AI
  • Q21. What is api in Laravel?
  • Ans. 

    API in Laravel is a set of routes and controllers that allow external applications to interact with the Laravel application.

    • API stands for Application Programming Interface

    • API in Laravel is used to expose certain functionalities of the application to external applications

    • API routes are defined in the 'routes/api.php' file

    • API controllers are stored in the 'app/Http/Controllers/Api' directory

    • API responses are usually in

  • Answered by AI
  • Q22. How can we use api in Laravel?
  • Ans. 

    APIs can be used in Laravel by creating routes and controllers to handle requests and responses.

    • Create a route in the routes/api.php file

    • Define a controller method to handle the API request

    • Use the appropriate HTTP verb (GET, POST, PUT, DELETE) for the API endpoint

    • Return a JSON response from the controller method

    • Use Laravel's built-in API authentication middleware for secure APIs

  • Answered by AI
  • Q23. What is soft delete in database?
  • Ans. 

    Soft delete is a technique to mark a record as deleted without actually deleting it from the database.

    • Soft delete is used to retain data for future reference or audit purposes.

    • It involves adding a column to the table to indicate the deleted status of a record.

    • The deleted records can be filtered out using a WHERE clause in SQL queries.

    • Soft delete can be undone by updating the deleted status of a record.

    • Examples of soft ...

  • Answered by AI
  • Q24. What is Faker, Factory in Laravel?
  • Ans. 

    Faker is a PHP library used to generate fake data. Factory is a Laravel feature that uses Faker to generate model instances.

    • Faker is used to generate fake data for testing and seeding databases

    • Factory is a Laravel feature that uses Faker to generate model instances

    • Faker can generate various types of data such as names, addresses, phone numbers, and more

    • Factory can be used to create multiple instances of a model with di

  • Answered by AI
  • Q25. What is foreign key, unique key? difference between them.
  • Ans. 

    Foreign key and unique key are both used to enforce data integrity in a database, but they serve different purposes.

    • A foreign key is a field in a table that refers to the primary key of another table, establishing a relationship between the two tables.

    • A unique key is a constraint that ensures that a column or set of columns in a table contains only unique values.

    • A foreign key is used to enforce referential integrity, w...

  • Answered by AI
Round 4 - Coding Test 

They give me a short project with 3 hours time to complete this.

Question -

Register, Login, go to dashboard, list of products (name, image), make 100 products using seeder, factory, faker, and also view products with comments and sub-comment functionality, use front-end validation.

Round 5 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. Rules and regulations for their company!
  • Q3. Notice period and Bond sign discussion
  • Q4. Then, from which date I can join?
  • Q5. And another documentation and onboarding related documents submission.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good experience for me. Also before attempting this interview, I was preparing myself as per based on the question I have got from others interview.

Please be confident, if you don't know any answers please say sorry, I'm not aware of this question, pleas don't create any hesitation, or confusion in front of them.

And at last I want to say, don't give up, if you get rejection, do not sad or regret this. Please note down why this happen? Make sure be prepared this things before attempting next. If you re-create yourself, motivate yourself, prepare yourself self, no one can beat you.

All the best for your upcoming days. Go ahead.

And also thank you Naukri for such kind of opportunity to tell about my journey in front of them. Thank you so much.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 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 

(1 Question)

  • Q1. Basic php functions, array, MySQL related question ex- join
Round 3 - HR 

(1 Question)

  • Q1. Generally regarding job role and salary structure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic concepts first then you go andvanced.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was a Basic Aptitude Test

Round 2 - Coding Test 

We were asked to do Sorting, SQL queries (join)

Round 3 - HR 

(1 Question)

  • Q1. Can you tell me about yourself?
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies such as Java, JavaScript, and SQL

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Storage types, structures, padding
  • Q2. Bit operations in C language
  • Ans. 

    Bit operations in C language involve manipulating individual bits within a data structure.

    • Bitwise AND (&) - sets a bit to 1 only if both input bits are 1

    • Bitwise OR (|) - sets a bit to 1 if either input bit is 1

    • Bitwise XOR (^) - sets a bit to 1 if the input bits are different

    • Bitwise NOT (~) - inverts all bits in a number

    • Left shift (<<) - shifts bits to the left by a specified number of positions

    • Right shift (>>) - shifts

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at PSG College of Arts & Science, Coimbatore and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are Question based on data strcuture ,they cover all the topic in ds

Round 2 - Coding Test 

In coding code they gave internet access to solve the problem after 30 they told us to make some changes in it and we should ready to explain the entire code

Interview Preparation Tips

Interview preparation tips for other job seekers - To clear 1 st round ,revise all the data structure concepts ,in second round make sure to be strong in fundamentals of programming and good in logical thinking
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

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

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online Basic aptitude questions test.

Round 2 - Technical 

(1 Question)

  • Q1. OOP concepts Write a class.
  • Ans. 

    A class representing a car with properties and methods.

    • Create a class named Car

    • Add properties like make, model, year, color

    • Include methods like start(), stop(), accelerate(speed), brake()

    • Example: class Car { constructor(make, model, year, color) { this.make = make; this.model = model; this.year = year; this.color = color; } start() { console.log('Car started'); } stop() { console.log('Car stopped'); } accelerate(speed)...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General discussions Background, education
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. 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 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.

I applied via Campus Placement and was interviewed in Sep 2018. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Second round was f2f interview, he asked about c concepts, data structures pointers concepts , and final year projects concepts
  • Q2. HR round : He asked about introduction of me, and bond, and joining date

Interview Preparation Tips

Round: Test
Experience: First Round was technical aptitude which contains objective questions from c, c++, data structures java , difficulty ranging from medium to hard.

Duration: <1 week
College Name: S D M Institute Of Technology, Ujire

Pitangent Analytics & Technology Solutions Interview FAQs

How many rounds are there in Pitangent Analytics & Technology Solutions Software Engineer interview?
Pitangent Analytics & Technology Solutions interview process usually has 4 rounds. The most common rounds in the Pitangent Analytics & Technology Solutions interview process are HR, Resume Shortlist and Technical.
What are the top questions asked in Pitangent Analytics & Technology Solutions Software Engineer interview?

Some of the top questions asked at the Pitangent Analytics & Technology Solutions Software Engineer interview -

  1. How can I fetch 1st, 2nd, 3rd rank from student mark tab...read more
  2. what is many to many relationships? give an examp...read more
  3. How can you connect database into a Laravel framewo...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Pitangent Analytics & Technology Solutions interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Pitangent Analytics & Technology Solutions Software Engineer Salary
based on 13 salaries
₹1.2 L/yr - ₹4.2 L/yr
78% less than the average Software Engineer Salary in India
View more details

Pitangent Analytics & Technology Solutions Software Engineer Reviews and Ratings

based on 5 reviews

4.3/5

Rating in categories

4.5

Skill development

4.5

Work-Life balance

2.6

Salary & Benefits

4.3

Job Security

4.8

Company culture

2.7

Promotions/Appraisal

4.6

Work Satisfaction

Explore 5 Reviews and Ratings
Software Engineer
13 salaries
unlock blur

₹1.2 L/yr - ₹4.2 L/yr

Jr. Data Scientist
11 salaries
unlock blur

₹1 L/yr - ₹7 L/yr

Web Developer
7 salaries
unlock blur

₹1 L/yr - ₹2.5 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹3.4 L/yr - ₹6 L/yr

Front end Developer
6 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Explore more salaries
Compare Pitangent Analytics & Technology Solutions with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

3.7
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