Upload Button Icon Add office photos

Pegasus InfoCorp

Compare button icon Compare button icon Compare

Filter interviews by

Pegasus InfoCorp Interview Questions, Process, and Tips

Updated 8 Nov 2024

Top Pegasus InfoCorp Interview Questions and Answers

View all 11 questions

Pegasus InfoCorp Interview Experiences

Popular Designations

17 interviews found

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 May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are mutable and immutable objects?
  • Ans. 

    Mutable objects can be changed after creation, while immutable objects cannot be changed.

    • Mutable objects: lists, dictionaries, sets

    • Immutable objects: strings, tuples, numbers

    • Changing a mutable object will modify the original object, while changing an immutable object will create a new object

  • Answered by AI
  • Q2. How do you create a vector database?
  • Ans. 

    A vector database can be created by storing vectors as rows in a table, with each column representing a different dimension.

    • Create a table with columns representing different dimensions of the vectors

    • Store each vector as a row in the table

    • Use indexing and querying techniques to efficiently retrieve vectors

    • Consider using specialized databases like Elasticsearch for handling large-scale vector data

  • Answered by AI
  • Q3. Have you worked on Cors?

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Senior Engineer Interview Questions & Answers

user image Bipin Maurya

posted on 16 Feb 2024

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

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

Round 1 - Group Discussion 

Normal question related to who you are. What they want. better understanding.

Round 2 - Technical 

(1 Question)

  • Q1. Actual question related to Core responsibility & working. Best SQL , Excel , & One programming language.

Interview Preparation Tips

Interview preparation tips for other job seekers - Casual topics related to Core Expertise & Position requirements related.

Ask for Job description & Position details first. Understand prepare & then only ask them to set up call.
You can be direct & ask if there are any doubts.

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)

Sr BDM Interview Questions & Answers

user image Anonymous

posted on 20 Jun 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Everything they want to document on email, even after verbal communication
Round 3 - One-on-one 

(1 Question)

  • Q1. More than 3 hours of interview with the VP, he mentioned it is positive and moving ahead
Round 4 - One-on-one 

(1 Question)

  • Q1. 1 hour with Director/CEO, he mentioned positive and HR will discuss the offer
Round 5 - HR 

(1 Question)

  • Q1. I was told they will give offer the same day which they did not... Even after 15 days of selection the Seniors HR is just asking to submit my original passport so after that only they will give offer and "...

Sr BDM Interview Questions asked at other Companies

Q1. We are currently not planning to incorporate this business model, but you seem pretty convinced with this. What makes you believe this model will be good for us as well?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain the NFS process
  • Ans. 

    NFS process allows remote systems to access shared files over a network.

    • NFS server exports directories to be shared with NFS clients

    • NFS clients mount the shared directories from the NFS server

    • Communication between NFS server and clients is done using RPC (Remote Procedure Call)

    • NFS uses NFS protocol for file sharing over the network

  • Answered by AI

Skills evaluated in this interview

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)

Pegasus InfoCorp interview questions for popular designations

 Software Developer

 (2)

 Business Development Executive

 (1)

 Business Development Manager

 (1)

 Data Scientist

 (1)

 Executive Accountant

 (1)

 Front end Developer

 (1)

 HR Executive

 (1)

 Information Technology Business Development Manager

 (1)

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

I applied via Indeed and was interviewed in Jul 2023. 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 - HR 

(1 Question)

  • Q1. About yourself and family details
Round 3 - Technical 

(1 Question)

  • Q1. GST TDS related questions and why left from past company that's main question they does not matter with your skills but they onl matter with why you left from past company

Interview Preparation Tips

Topics to prepare for Pegasus InfoCorp Executive Accountant interview:
  • Why you left past company
Interview preparation tips for other job seekers - Do not waste your time to go for interview they are not selecting candidate they wasting candidate's time as well as their time for not to select candidate

Executive Accountant Interview Questions asked at other Companies

Q1. What is P2P cycle , 3 way match , and what will you do if Approvals are missing in case of Non PO Invoices.
View answer (4)

Get interview-ready with Top Pegasus InfoCorp Interview Questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. Hoisting in javascript
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable and function declarations, but not to variable assignments

    • Function declarations are hoisted before variable declarations

    • Hoisting can lead to unexpected behavior and should be avoided

  • Answered by AI
  • Q2. Es6 features added in javascript
  • Ans. 

    ES6 added several new features to JavaScript including arrow functions, let and const, and template literals.

    • Arrow functions provide a more concise syntax for writing functions.

    • Let and const are block-scoped variables that replace var.

    • Template literals allow for easier string interpolation and multiline strings.

    • Other features include destructuring, default parameters, and classes.

  • Answered by AI
  • Q3. What is lexical scope in js
  • Ans. 

    Lexical scope in JS determines the accessibility of variables based on their location in the code.

    • Variables declared inside a function are only accessible within that function's scope

    • Variables declared outside of any function have global scope

    • Nested functions have access to variables declared in their parent function's scope

    • Lexical scope is determined at compile time, not runtime

  • Answered by AI
  • Q4. Promises and async await ??

Interview Preparation Tips

Interview preparation tips for other job seekers - They will give you good hike , will show they care about you but you won’t last long if you working for their client because their clients drops them

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me something about your self
  • Ans. 

    I am a highly motivated and results-driven professional with a strong background in IT business development.

    • Over 5 years of experience in IT business development

    • Proven track record of exceeding sales targets

    • Strong communication and negotiation skills

    • Expertise in identifying new business opportunities and building client relationships

  • Answered by AI
  • Q2. Salary last drawn

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't spoil your career working here.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 5 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. HR asks basic details about yourself.
Round 2 - One-on-one 

(1 Question)

  • Q1. The interviewer asks about the past experience.
Round 3 - One-on-one 

(1 Question)

  • Q1. Different interviewer asks same questions about past organisations.
Round 4 - One-on-one 

(1 Question)

  • Q1. Another person but same questions.
Round 5 - One-on-one 

(1 Question)

  • Q1. Another person but same questions. Unnecessary process.

Business Development Executive Interview Questions asked at other Companies

Q1. scenario based: if I am a teacher in a government school and my child is getting +90% marks, then why should i buy byjus course
View answer (14)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is Coroutine and Suspend function
  • Ans. 

    Coroutines are a way to perform asynchronous operations in a sequential manner in Kotlin. Suspend functions are functions that can be paused and resumed.

    • Coroutines in Kotlin are used for asynchronous programming without blocking the main thread.

    • Suspend functions are used within coroutines to perform long-running tasks without blocking the thread.

    • Coroutines can be used to handle network requests, database operations, an...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Pegasus InfoCorp Senior Android Developer interview:
  • Java Kotlin

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array SortingA binary array is an array consisting of only 0s and 1s. You are given a binary array "arr" of size ‘N’. Your task is to sort the given array and return this array after sorting. Input Format : The first line of input c... read more
View answer (3)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 22 Nov 2022

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

They are giving you some questions related to HR you have to answer within 20 minutes.
That question related to HR professional

Round 3 - HR 

(2 Questions)

  • Q1. What budget for Dotnet developer with 3 to 4 years
  • Ans. 

    The budget for a Dotnet developer with 3 to 4 years of experience varies based on location and company size.

    • The average salary for a Dotnet developer with 3 to 4 years of experience is around $75,000 to $90,000 per year.

    • The budget may vary based on the location of the company and the cost of living in that area.

    • The budget may also vary based on the size of the company and the demand for Dotnet developers in that partic...

  • Answered by AI
  • Q2. What CTC you will offer for Dotnet developer with 6 to 7 Years
  • Ans. 

    The CTC offered for a Dotnet developer with 6 to 7 years of experience will depend on various factors.

    • The CTC will depend on the location of the job

    • The CTC will depend on the company's budget and policies

    • The CTC will depend on the skills and expertise of the candidate

    • The CTC can range from 8-15 lakhs per annum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with with your knowledge about HR Executive Roles and Responsibilities

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Pegasus InfoCorp Interview FAQs

How many rounds are there in Pegasus InfoCorp interview?
Pegasus InfoCorp interview process usually has 2-3 rounds. The most common rounds in the Pegasus InfoCorp interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Pegasus InfoCorp 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 Pegasus InfoCorp. The most common topics and skills that interviewers at Pegasus InfoCorp expect are Javascript, Java, SQL, Development and senior.
What are the top questions asked in Pegasus InfoCorp interview?

Some of the top questions asked at the Pegasus InfoCorp interview -

  1. What CTC you will offer for Dotnet developer with 6 to 7 Ye...read more
  2. What budget for Dotnet developer with 3 to 4 ye...read more
  3. What are mutable and immutable objec...read more
How long is the Pegasus InfoCorp interview process?

The duration of Pegasus InfoCorp interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Pegasus InfoCorp Interview Process

based on 14 interviews

Interview experience

2.9
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 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.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
View all

Pegasus InfoCorp Reviews and Ratings

based on 146 reviews

3.1/5

Rating in categories

2.7

Skill development

3.0

Work-life balance

3.2

Salary

2.6

Job security

2.7

Company culture

2.9

Promotions

2.8

Work satisfaction

Explore 146 Reviews and Ratings
Senior Software Engineer
222 salaries
unlock blur

₹6 L/yr - ₹24.1 L/yr

Technical Lead
64 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Software Engineer
40 salaries
unlock blur

₹5 L/yr - ₹15.8 L/yr

Senior Software Developer
36 salaries
unlock blur

₹7.8 L/yr - ₹20 L/yr

Senior QA Engineer
34 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Explore more salaries
Compare Pegasus InfoCorp with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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