Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Akal Information Systems Team. If you also belong to the team, you can get access from here

Akal Information Systems Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 486 Reviews

Filter interviews by

Akal Information Systems Technical Manager Interview Questions and Answers

Updated 1 Mar 2022

Akal Information Systems Technical Manager Interview Experiences

3 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. Asking Project Related question And Rest API Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Complete Project Work Flow

Interview Questionnaire 

2 Questions

  • Q1. Technical interview
  • Q2. Mpls, lease line, Routing, Load balancer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Technical Manager Interview Questions Asked at Other Companies

asked in Xoriant
Q1. How do you deliver a release in Agile Scrum? What is the differen ... read more
Q2. In case you came across database usage how you have designed the ... read more
Q3. How do you maintain Risk Register and manage risk within your pro ... read more
asked in Pingahla
Q4. Design a DWH for a University and explain the relationships betwe ... read more
asked in HCLTech
Q5. What is dependency injection, proc and cons

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Load balancer, Mpls, vpn
  • Q2. Improve the technical skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to project
  • Q2. Explain the project
  • Ans. 

    The project is a software application designed to provide technical support to customers experiencing issues with a product or service.

    • Developed a user-friendly interface for customers to submit support tickets

    • Implemented a ticketing system to track and prioritize customer issues

    • Integrated knowledge base articles to provide self-help resources for common problems

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

(2 Questions)

  • Q1. Related to project
  • Q2. Explain the project
  • Ans. 

    The project is a software application designed to streamline technical support processes and improve customer satisfaction.

    • Developed a user-friendly interface for customers to submit support tickets

    • Implemented a ticketing system to track and prioritize support requests

    • Integrated knowledge base for quick access to troubleshooting guides

    • Utilized automation tools to expedite resolution times

    • Conducted regular analysis of s

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About education
  • Q2. Explain them about my education
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cisco Servers Installation
  • Q2. HPe servers installation

Interview Preparation Tips

Interview preparation tips for other job seekers - For technical persons softenger is best
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your Experience?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Windows technology
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discusssion
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. What are you Aiming for ?
  • Ans. Let them what you feel like clearly.
  • Answered Anonymously
  • Q2. What you have done in Education?
  • Ans. You can't lie about it. It is in your Mark sheet.
  • Answered Anonymously
Round 3 - One-on-one 

(1 Question)

  • Q1. Almost same questions. with your expectation and what you understand about the company.
  • Ans. Being fresher, I did R&D about the company and scope of position I will be entering into.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best its great opportunity. Here you can rarn more and more. Just a draw back you will start hating sun after this.
Round 1 - Technical 

(9 Questions)

  • Q1. Explain MVC pipe-line.
  • Ans. 

    MVC pipeline is a design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model and view accordingly

    • The pipeline ensures separation of concerns and promotes modularity

    • Example: A user enters data in a form (input), the controller receives the i...

  • Answered by AI
  • Q2. Howrouting works in Asp.Net MVC?
  • Ans. 

    Routing in Asp.Net MVC maps incoming requests to appropriate controller actions.

    • Routing is configured in RouteConfig.cs file.

    • Routes are defined using MapRoute method.

    • Routes can have placeholders for dynamic values.

    • Routes can have constraints to restrict the values of placeholders.

    • Routes can be named for easy reference.

    • Default route is defined as {controller}/{action}/{id}.

    • Attribute routing can also be used to define ro

  • Answered by AI
  • Q3. How to move from one entity framework version to another in a project?
  • Ans. 

    To move from one Entity Framework version to another, update the NuGet package and make necessary code changes.

    • Update the NuGet package to the desired version

    • Make necessary code changes to accommodate any breaking changes

    • Test thoroughly to ensure the application still works as expected

  • Answered by AI
  • Q4. How WCF is different from Asp.Net Web Api?
  • Ans. 

    WCF is a framework for building distributed systems while Asp.Net Web Api is for building HTTP services.

    • WCF supports multiple protocols like TCP, HTTP, Named Pipes, etc. while Web Api only supports HTTP.

    • WCF has more configuration options and is more flexible than Web Api.

    • Web Api is more lightweight and easier to use for building RESTful services.

    • WCF is more suitable for building enterprise-level applications with compl...

  • Answered by AI
  • Q5. How to create a restful service without using Asp.Net Web Api template?
  • Ans. 

    Creating a RESTful service without using Asp.Net Web Api template.

    • Use a lightweight framework like Flask or Express

    • Define routes and HTTP methods for each endpoint

    • Serialize data to JSON format

    • Handle errors and exceptions

    • Test the service using tools like Postman or curl

  • Answered by AI
  • Q6. Difference between drop, truncate and delete.
  • Ans. 

    Difference between drop, truncate and delete.

    • DROP command removes a table from the database

    • TRUNCATE command removes all rows from a table

    • DELETE command removes specific rows from a table

  • Answered by AI
  • Q7. How many types of routings are there in Asp.Net MVC?
  • Ans. 

    There are two types of routings in Asp.Net MVC: convention-based routing and attribute routing.

    • Convention-based routing uses default routing rules to map URLs to controller actions.

    • Attribute routing allows developers to define custom routes using attributes on controller actions or at the controller level.

    • Both types of routing can be used together in the same application.

    • Convention-based routing is the default routing ...

  • Answered by AI
  • Q8. How to go about performancetuning in SQL?
  • Ans. 

    Performance tuning in SQL involves optimizing queries, indexes, and server settings to improve database performance.

    • Identify slow queries using profiling tools

    • Optimize queries by rewriting or adding indexes

    • Adjust server settings such as memory allocation and disk usage

    • Consider partitioning large tables

    • Regularly monitor and analyze performance metrics

  • Answered by AI
  • Q9. Given a project requirement, how to choose between .Net framework and .Net Core?
  • Ans. 

    Choose .Net Core for cross-platform and cloud-based applications, .Net Framework for Windows-only applications.

    • Consider the target platform and deployment environment

    • Choose .Net Core for cross-platform and cloud-based applications

    • Choose .Net Framework for Windows-only applications

    • Check for compatibility with existing libraries and frameworks

    • Consider performance and scalability requirements

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why would to like to change your organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always try to be prepared as best as one can.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed before Jun 2022. 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 - Technical 

(1 Question)

  • Q1. Wat was the last project?
Round 3 - HR 

(1 Question)

  • Q1. How much will be the expectation?

Interview Preparation Tips

Topics to prepare for Foray Software Technical Support Engineer interview:
  • Unix Shell Scripting

Akal Information Systems Interview FAQs

How many rounds are there in Akal Information Systems Technical Manager interview?
Akal Information Systems interview process usually has 1 rounds. The most common rounds in the Akal Information Systems interview process are Technical.
How to prepare for Akal Information Systems Technical Manager 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 Akal Information Systems. The most common topics and skills that interviewers at Akal Information Systems expect are Angularjs, MySQL, PHP, AWS and Codeigniter.
What are the top questions asked in Akal Information Systems Technical Manager interview?

Some of the top questions asked at the Akal Information Systems Technical Manager interview -

  1. Asking Project Related question And Rest API Quest...read more
  2. Mpls, lease line, Routing, Load balan...read more
  3. Load balancer, Mpls, ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Akal Information Systems interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
View all
Akal Information Systems Technical Manager Salary
based on 4 salaries
₹8.4 L/yr - ₹8.6 L/yr
62% less than the average Technical Manager Salary in India
View more details

Akal Information Systems Technical Manager Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

4.5

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
175 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Senior Software Developer
99 salaries
unlock blur

₹3.6 L/yr - ₹10.5 L/yr

Senior Software Engineer
47 salaries
unlock blur

₹4.6 L/yr - ₹9.4 L/yr

Java Developer
33 salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Software Engineer
32 salaries
unlock blur

₹2.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Akal Information Systems with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview