Upload Button Icon Add office photos

Filter interviews by

Shri Krishna Interview Questions and Answers

Updated 8 May 2024

Shri Krishna Interview Experiences

Popular Designations

5 interviews found

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

(1 Question)

  • Q1. Introducing myself

Taxation Executive Interview Questions asked at other Companies

Q1. What was your role and responsibilities, what do you know about GST and indirect taxes in practical, etc
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. There were 9 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 - Coding Test 

Python java c html

Round 3 - Coding Test 

JQuery javascript ajax UI

Round 4 - Coding Test 

Python c++ java c java script

Round 5 - Coding Test 

Java python django javascript

Round 6 - Coding Test 

Python html javascript jQuery ajax

Round 7 - Aptitude Test 

Reasoning math coding

Round 8 - Aptitude Test 

Resoning math coding

Round 9 - Assignment 

Python javascript jQuery ajax

Interview Preparation Tips

Interview preparation tips for other job seekers - Full stack developer

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
4
Good
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 

(2 Questions)

  • Q1. HR ask the question azure admin.
  • Q2. What we have trained in azure afterwards how u solve the problems.after wards the we will talk about package

Azure Administrator Interview Questions asked at other Companies

Q1. What are the linux distributions you are using in customer environment?
View answer (2)

Store Incharge Interview Questions & Answers

user image Anurag Soni

posted on 1 Oct 2023

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

I applied via Walk-in and was interviewed before Oct 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. How's your computer knowledge. What do you know about material management. What do you know about MIS.
  • Ans. 

    I have strong computer knowledge, understand material management principles, and am familiar with Management Information Systems (MIS).

    • Proficient in Microsoft Office Suite and other relevant software

    • Experience in inventory management and procurement processes

    • Knowledge of supply chain management and logistics

    • Understanding of data analysis and reporting in MIS

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions about inventory management.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have Good knowledge of excel and speed plus software then you will get the job.

Store Incharge Interview Questions asked at other Companies

Q1. if material purchase in party but some material in liquid and some has been expiared how would have in this case?
View answer (4)

Shri Krishna interview questions for popular designations

 ANM Nurse

 (1)

 Full Stack Developer

 (1)

 Azure Administrator

 (1)

 Taxation Executive

 (1)

 Store Incharge

 (1)

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Anm basic answer put kiye gaye the

Interview Preparation Tips

Interview preparation tips for other job seekers - Do you homework .Provide Evidence and Data . Ask If they have any hesitations . Say Thank you .

ANM Nurse Interview Questions asked at other Companies

Q1. Who ka full form kya h?
View answer (4)

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is dictionary in python?
  • Ans. 

    Dictionary is a collection of key-value pairs in Python.

    • Keys must be unique and immutable.

    • Values can be of any data type.

    • Access values using keys.

    • Add or modify values using keys.

    • Use dict() constructor or {} to create a dictionary.

    • Example: {'name': 'John', 'age': 30}

    • Example: dict(name='John', age=30)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy one. any language will do the job.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Analyst Interview Questions & Answers

TCS user image Anonymous

posted on 30 Aug 2022

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to join tcs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident enough and convey your answers crisp and clear. Try to match your current role with the position you applied for.

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Logical Reasoning Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Smile in between and be confident. No matter what you will be alive after the interview. People are ready to pay billions but can't afford a second more when it is all over.

Shri Krishna Interview FAQs

How many rounds are there in Shri Krishna interview?
Shri Krishna interview process usually has 3-4 rounds. The most common rounds in the Shri Krishna interview process are Coding Test, Resume Shortlist and HR.
How to prepare for Shri Krishna 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 Shri Krishna. The most common topics and skills that interviewers at Shri Krishna expect are Communication Skills, Sales Development, Sales Executive Activities, B2B Marketing and B2C Marketing.
What are the top questions asked in Shri Krishna interview?

Some of the top questions asked at the Shri Krishna interview -

  1. How's your computer knowledge. What do you know about material management. What...read more
  2. What we have trained in azure afterwards how u solve the problems.after wards t...read more
  3. Anm basic answer put kiye gaye ...read more

Tell us how to improve this page.

Shri Krishna Interview Process

based on 6 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Dabur Interview Questions
4.0
 • 272 Interviews
Himalaya Wellness Interview Questions
4.1
 • 111 Interviews
Patanjali Ayurved Interview Questions
4.0
 • 109 Interviews
Emami Interview Questions
3.9
 • 86 Interviews
Hamdard Interview Questions
4.1
 • 27 Interviews
Sri Sri Tattva Interview Questions
3.5
 • 13 Interviews
Charak Pharma Interview Questions
3.7
 • 10 Interviews
View all

Shri Krishna Reviews and Ratings

based on 14 reviews

4.5/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.4

Salary

4.4

Job security

4.4

Company culture

4.3

Promotions

4.6

Work satisfaction

Explore 14 Reviews and Ratings
Sales Executive And Telecaller

Mathura

0-3 Yrs

₹ 1.2-3 LPA

Explore more jobs
Accountant
7 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Sales Executive
5 salaries
unlock blur

₹2.6 L/yr - ₹3.1 L/yr

Analyst
4 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Staff Nurse
4 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

Account Assistant
4 salaries
unlock blur

₹1.4 L/yr - ₹1.9 L/yr

Explore more salaries
Compare Shri Krishna with

Patanjali Ayurved

4.0
Compare

Dabur

4.0
Compare

Himalaya Wellness

4.1
Compare

Emami

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