Upload Button Icon Add office photos

Filter interviews by

Topwise Communications Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Given Python coding challenge related to string processing and second question was matrix processing using python

Round 2 - Technical 

(4 Questions)

  • Q1. Bagging boosting and its difference and uses.
  • Q2. Methods to minimize overfitting and underfitting
  • Q3. Transformer architecture
  • Q4. LLM usecase and explain how to work on it
Round 3 - Technical 

(2 Questions)

  • Q1. Given data, find out what AI project can be discovered and how to progress on implementing it.
  • Q2. Given data and usecase, which model to use to implement solution and how detailed steps.
Round 4 - Behavioral 

(2 Questions)

  • Q1. Discussed each project in my resume in detail and related questions
  • Q2. Discussed team and personal behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics of data science and statistics clear. Also keep only things you worked or know in your resume.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

The assessment consists of a combination of aptitude questions, reasoning questions, business analyst questions, testing questions, and one SQL question; all are multiple-choice questions except for the SQL query. It is an overall easy round administered through the HackerRank platform, with a minimum passing mark of 65%.

Round 2 - Technical 

(4 Questions)

  • Q1. Different bt system testing vs UAT testing
  • Ans. 

    System testing is done by testers to ensure the system meets requirements, while UAT is done by end users to validate the system's functionality.

    • System testing is performed by testers to identify defects and ensure the system meets specified requirements.

    • UAT (User Acceptance Testing) is conducted by end users to validate the system's functionality and ensure it meets business needs.

    • System testing focuses on technical a...

  • Answered by AI
  • Q2. UAT scenario based questions with any website given
  • Q3. Bug life cycle
  • Q4. Easy testing questions nothing critical

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview went well but I don't see any response/feedback from HR, that kind of unprofessional, and better to avoid this kind of unsecured job.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

One question related to object-oriented programming and one question related to data structures and algorithms.

Round 2 - Technical 

(1 Question)

  • Q1. DSA - 2 questions need to solve in 45 min with optimal solution one based on recursion and another is based on 2 pointers.
Round 3 - Technical 

(1 Question)

  • Q1. Can you describe the system design for the checkout feature on Amazon, including the request body, API calls, load balancing, database caching, and content delivery network (CDN) considerations?
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions regarding your resume, previous company project work, and behavioral topics.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Deep dive into java concepts. Max diameter of a tree in java.
Round 2 - One-on-one 

(1 Question)

  • Q1. Lld of loan and borrower design. Design dbs schema. About connection pool, db isolation.
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round, more about previous experience and some hypothetical questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Manual Testing, Functional Testing and Database Testing, SQL query writing(Basic Queries related to Aggregation, Joins and Select queries), API Testing basic questions.
Round 2 - Aptitude Test 

MCQ on Reasoning, Pattern recognition etc..

Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion with Manager on current roles and responsibilities, Scenario related questions on various testing stages, Few basic Mathematics questions to check the logical ability.
Round 4 - HR 

(1 Question)

  • Q1. Discussion on Salary and package.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Finance based questions like Mutual funds, SEBI regulations

Round 2 - Technical 

(2 Questions)

  • Q1. About your Introduction
  • Q2. Mutual Funds, financial markets and Excel macros, and discussion about reaume
Round 3 - HR 

(2 Questions)

  • Q1. Basic Questions based on resume and Introduction
  • Q2. About Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and share honest Answers
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Personal questions they asked?
  • Q2. Package details asking in previous process

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company ever in Hyderabad , they pressure you to put resign within probation period. Recently one person committed suicide but no one knows about it. They managed everything. So better Don't join HighRadius company.
I was very happy when receiving offer from HighRadius, later 4 months scene completely reverse and toxic environment and pressure building on each employees. Uncertainty in work culture un realistic time dead lines extra hours work.
Specially one person I mention " his name Ashish Tiwari" Racist and psycho manager, toxic culture ka baap ,Assigns work on logout time and during weekends too.
Completely corrupted and dirty politics , micro managements , stupid HR policies, leave policy to bad too worst.
My homble request for every one please understand don't join in HighRadius technologies. Every 6 months they imported interns and terminates experience persons. Only worst management, dirty politics, and crucial mentality nature you have then only sustain there.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Soo easy aptitude exam asked questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops in Java,fibo, and sorting
  • Ans. 

    OOPs in Java refers to Object-Oriented Programming concepts, fibo likely refers to Fibonacci sequence, and sorting refers to arranging elements in a specific order.

    • OOPs in Java includes concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • Fibo likely refers to the Fibonacci sequence, where each number is the sum of the two preceding ones (e.g. 0, 1, 1, 2, 3, 5, ...).

    • Sorting involves arranging el...

  • Answered by AI
  • Q2. Why is garbage collector is used in java etc more of java questions
  • Q3. Can main can be overloaded and overrided
  • Ans. 

    Yes, main can be overloaded but not overridden in C++.

    • Main can be overloaded by defining multiple functions with different parameters.

    • Example: int main() and int main(int argc, char* argv[])

    • Main cannot be overridden as it is a static function of the program.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and get your basics right
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. HR will call you and ask your current roles and responsibilities ?
  • Q2. Job designation senior system engineer (IAM, Azure portal, SaaS Applications, API integrations, Vulnerability Management)
Round 2 - Technical 

(7 Questions)

  • Q1. Do you anything related vulnerability management?
  • Q2. How do you support application for sso enablement?
  • Ans. 

    Supporting application for SSO enablement involves configuring authentication settings, integrating with identity providers, and testing functionality.

    • Configure authentication settings within the application to enable SSO

    • Integrate the application with identity providers such as Okta, Azure AD, or PingFederate

    • Test the SSO functionality to ensure seamless user experience

    • Provide documentation and training for users on how

  • Answered by AI
  • Q3. Haw you handle outages and any regular task you performed?
  • Ans. 

    I handle outages by following established procedures and prioritize tasks based on impact.

    • Immediately assess the situation to determine the root cause of the outage

    • Communicate with stakeholders to keep them informed of the issue and expected resolution time

    • Work with cross-functional teams to troubleshoot and resolve the outage as quickly as possible

    • Document the outage incident and steps taken for future reference and i...

  • Answered by AI
  • Q4. How you deal with change management?
  • Ans. 

    I handle change management by implementing structured processes, communication, and stakeholder involvement.

    • Implementing a change management process to track and document changes

    • Communicating changes effectively to all stakeholders

    • Involving key stakeholders in decision-making and planning

    • Ensuring proper testing and validation of changes before implementation

  • Answered by AI
  • Q5. How do you enable sso for applications for saas?
  • Ans. 

    Enable SSO for SaaS applications by integrating with identity providers and configuring authentication protocols.

    • Integrate with identity providers such as Okta, Azure AD, or Google Workspace

    • Configure authentication protocols like SAML, OAuth, or OpenID Connect

    • Implement single sign-on functionality in the application code

    • Ensure secure communication between the application and the identity provider

  • Answered by AI
  • Q6. What is RTO in disaster recovery?
  • Ans. 

    RTO stands for Recovery Time Objective in disaster recovery, representing the targeted duration of time within which a business process must be restored after a disaster.

    • RTO is a crucial metric in disaster recovery planning, indicating the maximum acceptable downtime for a system or process.

    • It helps organizations determine the resources and strategies needed to recover from a disaster within a specific timeframe.

    • For ex...

  • Answered by AI
  • Q7. Which application you are using to connect servers?
  • Ans. 

    I primarily use SSH (Secure Shell) to connect servers.

    • SSH (Secure Shell) is a widely used application for securely connecting to servers

    • Other applications like PuTTY, OpenSSH, and WinSCP can also be used for server connections

  • Answered by AI
Round 3 - Behavioral 

(4 Questions)

  • Q1. Hiring manager will brief about jd and ask questions based on related job and you are working
  • Q2. Do you vulnerability management?
  • Ans. 

    Yes, I am experienced in vulnerability management.

    • I have experience in identifying, prioritizing, and mitigating vulnerabilities in systems and networks.

    • I am proficient in using vulnerability scanning tools such as Nessus, Qualys, and OpenVAS.

    • I have implemented patch management processes to address vulnerabilities in a timely manner.

    • I have conducted vulnerability assessments and penetration testing to identify weakness...

  • Answered by AI
  • Q3. You worked applications were connected or disconnected one?
  • Ans. 

    I have experience working with both connected and disconnected applications.

    • I have experience developing applications that can function both online and offline.

    • I have worked on projects where data synchronization is crucial for seamless user experience.

    • Examples include mobile apps that can work offline and sync data when connected to the internet.

  • Answered by AI
  • Q4. Have you taken care of Authorization part?
  • Ans. 

    Yes, I have experience in taking care of the Authorization part in various projects.

    • Implemented role-based access control (RBAC) to manage user permissions

    • Configured and managed authentication protocols such as OAuth and SAML

    • Worked on setting up access control lists (ACLs) for network security

    • Experience with managing user roles and permissions in Active Directory

    • Utilized single sign-on (SSO) solutions for seamless user

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well be confident do some research on the jd

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.

Tell us how to improve this page.

Interview Questions from Similar Companies

PayPal Interview Questions
3.9
 • 211 Interviews
HighRadius Interview Questions
2.9
 • 181 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
3.9
 • 135 Interviews
PayU Payments Interview Questions
3.5
 • 54 Interviews
Western Union Interview Questions
3.7
 • 28 Interviews
FNZ Interview Questions
2.3
 • 28 Interviews
Verifone Interview Questions
3.3
 • 23 Interviews
View all

Topwise Communications Reviews and Ratings

based on 14 reviews

2.0/5

Rating in categories

2.1

Skill development

1.8

Work-life balance

1.7

Salary

1.4

Job security

1.9

Company culture

1.5

Promotions

1.8

Work satisfaction

Explore 14 Reviews and Ratings
Assistant Manager
5 salaries
unlock blur

₹4.5 L/yr - ₹6.8 L/yr

Deputy Manager
5 salaries
unlock blur

₹5.8 L/yr - ₹7.2 L/yr

Regional Sales Manager
3 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Senior Executive
3 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Assistant General Manager
3 salaries
unlock blur

₹17 L/yr - ₹27 L/yr

Explore more salaries
Compare Topwise Communications with

FIS

3.9
Compare

HighRadius

2.9
Compare

Broadridge Financial Solutions

3.9
Compare

PayPal

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