Upload Button Icon Add office photos
Engaged Employer

i

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

ReWise Analytics & Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ReWise Analytics & Technologies Interview Questions and Answers

Updated 4 Sep 2022

ReWise Analytics & Technologies Interview Experiences

Popular Designations

3 interviews found

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 - Assignment 

Machine test to assess the practical knowledge in Adobe tools.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions related to the designed portfolio and printing knowledge. Like trim marks, bleed.
  • Q2. Application tools used in previous company, how'd you work cross functionally with your peers in other domain and work flexibility assessment

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have detailed knowledge of the application tools and relevant previous experience with good coo skills.

Graphic Designer Interview Questions asked at other Companies

Q1. If assignment goes perfect and you are suitable for the job then only you will be able to face this final round and in this round asking about the expected salary but at the end offers their criteria with fix salary only.
View answer (8)

I applied via Approached by Company and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself!
  • Q2. Why did you switch your field?
Round 2 - Technical 

(2 Questions)

  • Q1. Asks to take dummy chats to check skills
  • Q2. Manager will ask some more details about you. Like your hobbies, strengths and weaknesses etc.
Round 3 - Technical 

(1 Question)

  • Q1. Just basic interview questions are good to go!

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your expectations of learning something while working here outside of your head.
You will be working on same jobs again and again.

Support Engineer Interview Questions asked at other Companies

Q1. How to handle escalations/ your approach to solve any issues/ why do you want to join support when already you are working on development
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. All previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - I will never suggest to work this kind of company

Graphic Designer Interview Questions asked at other Companies

Q1. If assignment goes perfect and you are suitable for the job then only you will be able to face this final round and in this round asking about the expected salary but at the end offers their criteria with fix salary only.
View answer (8)

Jobs at ReWise Analytics & Technologies

View all

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Define marker interface
  • Ans. 

    A marker interface is an interface with no methods used to mark a class as having a particular property or behavior.

    • Marker interfaces are used to provide metadata about a class.

    • They are often used in frameworks and libraries to indicate that a class should be treated in a special way.

    • Examples include Serializable, Cloneable, and Remote interfaces in Java.

    • Marker interfaces can also be used to enforce design patterns, su

  • Answered by AI
  • Q2. Define thread concurrency
  • Ans. 

    Thread concurrency refers to multiple threads executing simultaneously in a program.

    • Concurrency allows for efficient use of resources and can improve performance.

    • However, it can also lead to race conditions and other synchronization issues.

    • Synchronization mechanisms like locks and semaphores can be used to manage concurrency.

    • Examples of concurrent programming languages include Java and Python's threading module.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up with your basics on JAVA

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Java mcq
  • Q2. Questions on Oops
Round 2 - Technical 

(1 Question)

  • Q1. Questions based on resume
Round 3 - HR 

(1 Question)

  • Q1. Questions on direction, physics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic java questions along with aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concept, java functionalities, spring framework.
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr questions, when you can join, expected ctc...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

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 and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume

ReWise Analytics & Technologies Interview FAQs

How many rounds are there in ReWise Analytics & Technologies interview?
ReWise Analytics & Technologies interview process usually has 3 rounds. The most common rounds in the ReWise Analytics & Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for ReWise Analytics & Technologies 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 ReWise Analytics & Technologies. The most common topics and skills that interviewers at ReWise Analytics & Technologies expect are Analytics, Photoshop, SQL, Agile and Indesign.
What are the top questions asked in ReWise Analytics & Technologies interview?

Some of the top questions asked at the ReWise Analytics & Technologies interview -

  1. Questions related to the designed portfolio and printing knowledge. Like trim m...read more
  2. Just basic interview questions are good to ...read more
  3. Asks to take dummy chats to check ski...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Pitney Bowes Interview Questions
3.7
 • 21 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
VHS Consulting Interview Questions
3.7
 • 14 Interviews
View all

ReWise Analytics & Technologies Reviews and Ratings

based on 46 reviews

3.5/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.7

Salary

3.2

Job security

3.5

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 46 Reviews and Ratings
Graphics Designer

Pune

1-6 Yrs

Not Disclosed

Prepress Operator

Pune

3-4 Yrs

Not Disclosed

Explore more jobs
Graphic Designer
37 salaries
unlock blur

₹2.4 L/yr - ₹5.9 L/yr

Senior Graphic Designer
29 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Quality Analyst
7 salaries
unlock blur

₹2.3 L/yr - ₹3.5 L/yr

Team Mentor
7 salaries
unlock blur

₹3.5 L/yr - ₹5.4 L/yr

Design Consultant
6 salaries
unlock blur

₹2.8 L/yr - ₹3.2 L/yr

Explore more salaries
Compare ReWise Analytics & Technologies with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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