Upload Button Icon Add office photos

Filter interviews by

Psiog Digital Interview Questions and Answers

Updated 9 Jan 2025

Psiog Digital Interview Experiences

Popular Designations

5 interviews found

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. It was one on one round they just simply ask about your skills and Ur work experience and questions on that.
Round 2 - One-on-one 

(1 Question)

  • Q1. This is another person who is head of the Data department asks simple question based on your resume no technical rounds asks about buisness scenario
Round 3 - HR 

(1 Question)

  • Q1. Basic question about us

Interview Preparation Tips

Topics to prepare for Psiog Digital Business Intelligence Analyst and Tableau Developer interview:
  • SQL
Interview preparation tips for other job seekers - Please don't attend this company they call u and they ll select u in second round they just get to know and they say they will call they won't just for fun they interview and mock you and also the job description for the same work has been changed after I got interviewed and to five years if Ur not sure about that then why give hope to candidates and break them???. I don't recommend this company or u will be shattered.

Business Intelligence Analyst and Tableau Developer Interview Questions asked at other Companies

Q1. Find Top 5 and Botton 5 sales in same sheet
View answer (1)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a selenium automation code broken link
  • Ans. 

    Selenium automation code to find broken links on a webpage

    • Use Selenium WebDriver to navigate to the webpage

    • Find all the links on the webpage using findElements method

    • Iterate through each link and check for response code using HttpURLConnection or HttpClient

    • Identify links with response code other than 200 as broken links

  • Answered by AI
  • Q2. TestNg Concepts
Round 2 - Technical 

(2 Questions)

  • Q1. Java Concepts and Programming
  • Q2. Maven Project and its structure
  • Ans. 

    Maven is a build automation tool used primarily for Java projects. It follows a specific project structure.

    • Maven project structure includes src/main/java for main source code, src/test/java for test code, and pom.xml for project configuration

    • Maven uses conventions over configurations, making it easier to manage dependencies and build processes

    • Maven project structure can be customized using plugins and profiles

    • Example: ...

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 10 May 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. About company and tech questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be consistent with preparation

IT Analyst Interview Questions asked at other Companies

Q1. 1. What is interface how to use? 2. Tell me a small example for interface? 3. How to managing the Error Logging system at your application 4. How you implement Security at your application 5. What are the Joins why we use joins in sql serve... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good round with analytics and aptitude only

Round 2 - One-on-one 

(1 Question)

  • Q1. With manager, again general and interests and skills
Round 3 - HR 

(1 Question)

  • Q1. This is not exactly hr but the technical recruitment head who will ask a lot of questions but is very supportive

Interview Preparation Tips

Interview preparation tips for other job seekers - aptitude, cloud basics and sql and c# should be focus

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Psiog Digital interview questions for popular designations

 Business Intelligence Analyst and Tableau Developer

 (1)

 Engineer Trainee

 (1)

 Graduate Engineer Trainee (Get)

 (1)

 IT Analyst

 (1)

 QA Engineer

 (1)

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. It is situation based questions like how will you improve your company and some puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all, don't lie. Tell whatever u know and don't show off. They are focussed on your attitude. Be confident and communicate well. Don't be afraid to say your thoughts.. Though right or wrong, say it. Don't do any malpractices in case of online interview.

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)

Interview questions from similar companies

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

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Spark code optimization
  • Q2. Data formats in big Data, why each format.
  • Ans. 

    Different data formats in big data are used for various purposes like storage efficiency, data processing speed, and compatibility with different systems.

    • JSON: Lightweight, human-readable, and widely supported for web applications.

    • Parquet: Columnar storage format for efficient querying and processing of large datasets.

    • Avro: Schema-based serialization format with support for complex data types.

    • ORC: Optimized Row Columna...

  • Answered by AI
  • Q3. Leet code - Most freq elem in a list
  • Ans. 

    Find the most frequent element in a list of strings.

    • Iterate through the list and count the frequency of each element using a dictionary.

    • Track the element with the highest frequency as you iterate.

    • Return the element with the highest frequency.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had three rounds, each round of one hour each.

Questions from Past Work Experience
Coding
Data Engineering, cloud.
Leet code.

Cleared all the rounds and HR verbally committed the offer and disappeared (stopped responding), without any updates.

Even if you get an offer from Extreme Networks better keep a backup offer, their decisions are dynamic so there is a high chance of offer getting revoked.

Skills evaluated in this interview

Strategic Sourcing Analyst III Interview Questions & Answers

Cradlepoint user image Anonymous

posted on 28 Sep 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
6-8 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Na not applicable
  • Q2. Na not applicable right now

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a very bad experience with HR recruiter - Priya Mukund and Talent head- Prafula Deoria.
It took around 1 month , 3 rounds of interview with panels. I have cleared all the interview rounds . I had received call from HR head as a general discussion , it is not related to salary negotiation nothing. Straight away he confirmed i have cleared all the rounds, then I asked when will I receive final feedback and offer letter then he said by tomorrow. Afterwards I called my recruiter Priya Mukund and tell that I got call for HR round. She confirmed that you got 4/4 ratings. You are only selected for this role. Make sure not to decline the offer.
Afterwards every one went silent and I was the one who was chasing then after multiple follow ups Prafula was only giving timelines and then he said my profile is putted on HOLD.
This is very bad behaviour of HR to the person who is already suffering with Job loss.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were around 60 questions and negative marking was also there

Round 2 - Technical 

(4 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Full Stack Developer with experience in front-end and back-end technologies.

    • Proficient in HTML, CSS, JavaScript for front-end development

    • Skilled in Node.js, Express, MongoDB for back-end development

    • Experience with React.js and Angular for building interactive web applications

  • Answered by AI
  • Q2. What is diamond problem
  • Ans. 

    Diamond problem is a common issue in multiple inheritance where a class inherits from two classes that have a common ancestor.

    • Occurs in languages that support multiple inheritance like C++

    • Results in ambiguity when calling methods or accessing attributes from the common ancestor class

    • Can be resolved using virtual inheritance or interfaces

  • Answered by AI
  • Q3. Run length encoding dsa problem
  • Ans. 

    Run length encoding is a data compression technique that replaces repeated characters with a count and single character.

    • Iterate through the input array of strings

    • Count the number of consecutive characters in each string

    • Replace consecutive characters with count and character

  • Answered by AI
  • Q4. Rotate an array by d times
  • Ans. 

    Rotate an array of strings by d times

    • Create a new array and copy elements from original array based on rotation index

    • Use modulo operator to handle cases where d is greater than array length

    • Handle edge cases like empty array or d being negative

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Based on Projects on Resume
  • Q2. Frequency Divider code

Interview Preparation Tips

Topics to prepare for Avantel Fpga Engineer interview:
  • DSP
  • Digital ommunication

Psiog Digital Interview FAQs

How many rounds are there in Psiog Digital interview?
Psiog Digital interview process usually has 2-3 rounds. The most common rounds in the Psiog Digital interview process are One-on-one Round, HR and Technical.
How to prepare for Psiog Digital 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 Psiog Digital. The most common topics and skills that interviewers at Psiog Digital expect are SQL, Javascript, Power Bi, Hyperion and SSIS.
What are the top questions asked in Psiog Digital interview?

Some of the top questions asked at the Psiog Digital interview -

  1. Write a selenium automation code broken l...read more
  2. Maven Project and its struct...read more
  3. This is another person who is head of the Data department asks simple question ...read more

Tell us how to improve this page.

Psiog Digital Interview Process

based on 4 interviews in last 1 year

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 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.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
View all

Psiog Digital Reviews and Ratings

based on 24 reviews

3.9/5

Rating in categories

4.1

Skill development

3.3

Work-life balance

3.6

Salary

4.2

Job security

3.4

Company culture

3.6

Promotions

3.3

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer
66 salaries
unlock blur

₹4.7 L/yr - ₹8.5 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Quality Analyst
15 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Technical Lead
9 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Senior Quality Analyst
9 salaries
unlock blur

₹7.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Psiog Digital with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview