AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

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

JK Tech Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 488 Reviews

Play video Play video Video summary
  • About
  • Reviews
    488
  • Salaries
    3.5k
  • Interviews
    36
  • Jobs
    7
  • Benefits
    33
  • Photos
    4

Filter interviews by

JK Tech Interview Questions and Answers

Updated 12 Dec 2024
Popular Designations

16 Interview questions

A Data Engineer was asked 6mo ago
Q. What are some SQL queries that utilize joins and window functions?
Ans. 

SQL queries using joins and window functions

  • Use INNER JOIN to combine rows from two or more tables based on a related column

  • Use WINDOW functions like ROW_NUMBER() to assign a unique sequential integer to each row within a partition

  • Example: SELECT column1, column2, ROW_NUMBER() OVER(PARTITION BY column1 ORDER BY column2) AS row_num FROM table_name

View all Data Engineer interview questions
A Plsql Developer was asked 6mo ago
Q. Write an SQL query to fetch records starting with the letter 's'.
Ans. 

This SQL query retrieves records from a table where a specified column starts with the letter 'S'.

  • Use the SQL 'LIKE' operator to filter records.

  • Example: SELECT * FROM table_name WHERE column_name LIKE 'S%';

  • The '%' wildcard represents any sequence of characters following 'S'.

  • Ensure the column is case-sensitive if needed, depending on the database settings.

View all Plsql Developer interview questions
A Business Analyst was asked 6mo ago
Q. Tell me about yourself.
Ans. 

I am a detail-oriented Business Analyst with a passion for data-driven decision-making and a strong background in project management.

  • Over 5 years of experience in business analysis across various industries, including finance and healthcare.

  • Skilled in gathering and documenting requirements through stakeholder interviews and workshops.

  • Proficient in data analysis tools like Excel and SQL, which I used to identify tr...

View all Business Analyst interview questions
A Business Analyst was asked 6mo ago
Q. What do you know about this company?
Ans. 

This company is a leading provider of innovative solutions in the tech industry, focusing on enhancing user experience and efficiency.

  • Founded in 2005, the company has grown rapidly, expanding its services globally.

  • They specialize in software development, offering products that streamline business processes.

  • The company has received multiple awards for its commitment to sustainability and corporate social responsibi...

View all Business Analyst interview questions
A Software Engineer was asked 7mo ago
Q. What are the basic OOP concepts in .NET?
Ans. 

OOP in .NET focuses on encapsulation, inheritance, and polymorphism to create modular and reusable code.

  • Encapsulation: Bundling data and methods that operate on the data within a class. Example: A 'Car' class with properties like 'Speed' and methods like 'Accelerate()'.

  • Inheritance: Creating a new class based on an existing class to promote code reuse. Example: 'ElectricCar' inherits from 'Car'.

  • Polymorphism: Allowi...

View all Software Engineer interview questions
A Consultant was asked 9mo ago
Q. Are you familiar with queries?
Ans. 

Yes, I am familiar with queries in databases.

  • Queries are used to retrieve specific data from a database.

  • They can be written in SQL (Structured Query Language).

  • Examples of queries include SELECT, INSERT, UPDATE, and DELETE.

View all Consultant interview questions
A Business Development Manager and Team Lead was asked 10mo ago
Q. What is your strategy to increase business?
Ans. 

Implementing a targeted marketing campaign, improving customer service, and expanding product offerings.

  • Develop a targeted marketing campaign to reach potential customers

  • Improve customer service to retain existing customers and attract new ones

  • Expand product offerings to appeal to a wider range of customers

View all Business Development Manager and Team Lead interview questions
Are these interview questions helpful?
A Business Development Manager and Team Lead was asked 10mo ago
Q. How do you plan for repeat business?
Ans. 

To plan repeat business, focus on building strong relationships, providing excellent service, offering incentives, and staying in touch.

  • Build strong relationships with clients to encourage loyalty

  • Provide excellent service to exceed customer expectations

  • Offer incentives such as discounts or rewards for repeat business

  • Stay in touch with clients through regular communication and follow-ups

View all Business Development Manager and Team Lead interview questions
A Site Engineer was asked
Q. What is a base course?
Ans. 

Base course is a layer of material laid on the subgrade to provide a stable foundation for pavement construction.

  • Base course is typically made of crushed stone, gravel, or recycled concrete.

  • It is placed on top of the subgrade and compacted to provide a solid base for the pavement.

  • The thickness and type of base course used depend on the specific project requirements.

  • Base course helps to distribute the load of the p...

View all Site Engineer interview questions
A SQL and MSBI Developer was asked
Q. What is the difference between truncate and delete?
Ans. 

Truncate is a DDL command that removes all rows from a table, while delete is a DML command that removes specific rows.

  • Truncate is faster than delete as it does not log individual row deletions.

  • Truncate resets identity columns, while delete does not.

  • Truncate cannot be rolled back, while delete can be rolled back using a transaction.

  • Truncate does not fire triggers, while delete does.

  • Truncate is used to quickly remo...

View all SQL and MSBI Developer interview questions
1 2

JK Tech Interview Experiences

36 interviews found

Plsql Developer Interview Questions & Answers

user image Ponkarthick kumar

posted on 30 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write SQL query fetch record start letter s
  • Ans. 

    This SQL query retrieves records from a table where a specified column starts with the letter 'S'.

    • Use the SQL 'LIKE' operator to filter records.

    • Example: SELECT * FROM table_name WHERE column_name LIKE 'S%';

    • The '%' wildcard represents any sequence of characters following 'S'.

    • Ensure the column is case-sensitive if needed, depending on the database settings.

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Plsql Developer Interview Questions asked at other Companies

Q1. What is temp table and temp variable in plsql?
View answer (6)
Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about this company?
  • Ans. 

    This company is a leading provider of innovative solutions in the tech industry, focusing on enhancing user experience and efficiency.

    • Founded in 2005, the company has grown rapidly, expanding its services globally.

    • They specialize in software development, offering products that streamline business processes.

    • The company has received multiple awards for its commitment to sustainability and corporate social responsibility.

    • ...

  • Answered by AI
    Add your answer
  • Q2. Tell about yourself
  • Ans. 

    I am a detail-oriented Business Analyst with a passion for data-driven decision-making and a strong background in project management.

    • Over 5 years of experience in business analysis across various industries, including finance and healthcare.

    • Skilled in gathering and documenting requirements through stakeholder interviews and workshops.

    • Proficient in data analysis tools like Excel and SQL, which I used to identify trends ...

  • Answered by AI
    Add your answer

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly 10 gm) with one box containing defective balls (each one of the defective balls weighs 9 gm). You are given an electronic weighing machine and only one chance to use it. How will you fi... read more
View answer (9)
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2024

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

(2 Questions)

  • Q1. How much experience you have in progress
  • Ans. 

    I have over 10 years of experience in making progress in various consulting projects.

    • Over 10 years of experience in consulting projects

    • Successfully led multiple projects to completion

    • Implemented strategies that resulted in significant progress

    • Collaborated with teams to achieve project milestones

  • Answered by AI
    Add your answer
  • Q2. Do you know queries
  • Ans. 

    Yes, I am familiar with queries in databases.

    • Queries are used to retrieve specific data from a database.

    • They can be written in SQL (Structured Query Language).

    • Examples of queries include SELECT, INSERT, UPDATE, and DELETE.

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Consultant Interview Questions asked at other Companies

Q1. An international bank (US based) has been operating in Asia for the past 10 years. Recently, it has noticed that many customers are leaving the bank and using services of other local/regional banks. Why might this be the case?
View answer (4)
Anonymous

Software Engineer Interview Questions & Answers

user image 59_SONAM GUPTA

posted on 11 Nov 2024

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

(2 Questions)

  • Q1. Basic opps concept of .net
  • Ans. 

    OOP in .NET focuses on encapsulation, inheritance, and polymorphism to create modular and reusable code.

    • Encapsulation: Bundling data and methods that operate on the data within a class. Example: A 'Car' class with properties like 'Speed' and methods like 'Accelerate()'.

    • Inheritance: Creating a new class based on an existing class to promote code reuse. Example: 'ElectricCar' inherits from 'Car'.

    • Polymorphism: Allowing me...

  • Answered by AI
    Add your answer
  • Q2. SQL and angular questions
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

CA fresher Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2024

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Technical question
  • Add your answer
  • Q2. For data filling
  • Add your answer
  • Q3. Data type based
  • Add your answer
  • Q4. For data filling duifficulties
  • Add your answer
  • Q5. Data filling form
  • Add your answer

CA fresher Interview Questions asked at other Companies

Q1. Define IRR Define MIRR What is deferred revenue Define Npv and formula Deffered tax asset and liability
View answer (1)
Anonymous

Business Development Manager and Team Lead Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2024

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Strategy to increase bussiness
  • Ans. 

    Implementing a targeted marketing campaign, improving customer service, and expanding product offerings.

    • Develop a targeted marketing campaign to reach potential customers

    • Improve customer service to retain existing customers and attract new ones

    • Expand product offerings to appeal to a wider range of customers

  • Answered by AI
    Add your answer
  • Q2. How to plan repeat businees
  • Ans. 

    To plan repeat business, focus on building strong relationships, providing excellent service, offering incentives, and staying in touch.

    • Build strong relationships with clients to encourage loyalty

    • Provide excellent service to exceed customer expectations

    • Offer incentives such as discounts or rewards for repeat business

    • Stay in touch with clients through regular communication and follow-ups

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be real, speak your heart out.

Business Development Manager and Team Lead Interview Questions asked at other Companies

Q1. What was the sales target you achieved last time?
View answer (1)
Anonymous

Software Tester Interview Questions & Answers

user image Anonymous

posted on 2 Aug 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 Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding skil is speed important

Round 2 - Aptitude Test 

Mathematics skils and seed pf calculation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good study and bold for interview all the best everyone ✨

Software Tester Interview Questions asked at other Companies

Q1. You are given test scenarios and have to execute all test cases, but you only have 15 days to complete the testing and need more time. What do you do?
View answer (2)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

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

Good coding test of 2 hour medium questions

Round 2 - HR 

(2 Questions)

  • Q1. About your self
  • Add your answer
  • Q2. About project and typical hr Questions
  • Add your answer

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

AIX Administrator Interview Questions & Answers

user image Anonymous

posted on 24 Sep 2023

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

(2 Questions)

  • Q1. System monitoring related question User management related question like to change password of user, create a user , if user not able to login what is the troubleshoot . Lvm activity like create vg To cre...
  • Add your answer
  • Q2. If the size of fs doesn't increase by command chfs what will do we have storage space , but after also we are not able to increase the size of file system What is nfs ,how will configure nfs
  • Ans. 

    If the size of fs doesn't increase by chfs command, check for available storage space and ensure proper permissions. If issue persists, consider unmounting the filesystem before resizing.

    • Check available storage space using commands like df or du

    • Ensure proper permissions to modify the filesystem

    • If still unable to increase size, consider unmounting the filesystem before resizing

    • Example: df -h to check available storage s...

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Vios cluster related question were added in 2 nd with first round question.
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Discussion about location and salary
  • Add your answer
  • Q2. Comfortable with this location
  • Ans. 

    Yes, I am comfortable with the location.

    • I am familiar with the area and have no issues commuting to work.

    • I have researched the neighborhood and feel safe and comfortable there.

    • I have visited the office location and found it convenient for me.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just say what you have done.
It's the game of backup and file. Do focus on that .

Skills evaluated in this interview

AIX Administrator Interview Questions asked at other Companies

Q1. How do you manage networking, set an IP address on an LPAR, set a subnet mask, and create the interface on which the IP address is set?
View answer (1)
Anonymous

Data Entry Operator Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
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 - Other 

(1 Question)

  • Q1. General knowledge
  • Add your answer
Round 3 - One-on-one 

(5 Questions)

  • Q1. One on one round
  • Add your answer
  • Q2. My interview around me
  • Add your answer
  • Q3. My name my qualifications
  • Add your answer
  • Q4. My passion my hobby
  • Add your answer
  • Q5. Education and other qualifications
  • Add your answer

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (47)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about JK Tech?
Ask anonymously on communities.
More about working at JK Tech
  • HQ - Noida, Uttar Pradesh, India
  • IT Services & Consulting
  • 501-1k Employees (India)
  • Public
  • Software Product

JK Tech Interview FAQs

How many rounds are there in JK Tech interview?
JK Tech interview process usually has 1-2 rounds. The most common rounds in the JK Tech interview process are Technical, Resume Shortlist and HR.
How to prepare for JK Tech 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 JK Tech. The most common topics and skills that interviewers at JK Tech expect are Javascript, Agile, SQL, Progress 4GL and GIT.
What are the top questions asked in JK Tech interview?

Some of the top questions asked at the JK Tech interview -

  1. How to use Basic SQL query such as delete, join,select e...read more
  2. If the size of fs doesn't increase by command chfs what will do we have storage...read more
  3. What are some SQL queries that utilize joins and window functio...read more
How long is the JK Tech interview process?

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

Tell us how to improve this page.

JK Tech Interviews By Designations

  • JK Tech Software Engineer Interview Questions
  • JK Tech Associate Consultant Interview Questions
  • JK Tech Consultant Interview Questions
  • JK Tech Trainee Interview Questions
  • JK Tech Technical Lead Interview Questions
  • JK Tech Senior Consultant Interview Questions
  • JK Tech Senior Business Analyst Interview Questions
  • JK Tech Business Analyst Interview Questions
  • Show more
  • JK Tech Software Tester Interview Questions
  • JK Tech Java Developer Interview Questions

Interview Questions for Popular Designations

  • Team Lead Interview Questions
  • Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Business Analyst Interview Questions
  • Senior Engineer Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Associate Software Engineer Interview Questions
  • Accountant Interview Questions
  • Show more
  • System Engineer Interview Questions
  • HR Executive Interview Questions

Overall Interview Experience Rating

4/5

based on 30 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 55%
2-4 weeks 27%
4-6 weeks 9%
More than 8 weeks 9%
View more

Interview Questions from Similar Companies

Webkul Software
Webkul Software Interview Questions
4.0
 • 70 Interviews
MindGate Solutions
MindGate Solutions Interview Questions
3.4
 • 67 Interviews
Softenger
Softenger Interview Questions
4.0
 • 56 Interviews
Incture Technologies
Incture Technologies Interview Questions
2.7
 • 54 Interviews
Winjit Technologies
Winjit Technologies Interview Questions
3.6
 • 43 Interviews
DesignTech Systems
DesignTech Systems Interview Questions
3.3
 • 40 Interviews
Capital Numbers Infotech
Capital Numbers Infotech Interview Questions
4.4
 • 39 Interviews
Amantya Technologies
Amantya Technologies Interview Questions
3.6
 • 38 Interviews
Anunta Technology Management Services
Anunta Technology Management Services Interview Questions
3.4
 • 33 Interviews
Mobiloitte Technologies
Mobiloitte Technologies Interview Questions
3.2
 • 30 Interviews
View all

JK Tech Reviews and Ratings

based on 488 reviews

3.6/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.4

Salary

3.2

Job security

3.4

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 488 Reviews and Ratings
Jobs at JK Tech
JK Tech
Senior Test Automation Engineer

Noida,

Bangalore / Bengaluru

7-11 Yrs

₹ 22.5-27.5 LPA

JK Tech
Fullstack Lead

Delhi/Ncr

7-12 Yrs

Not Disclosed

JK Tech
.NET Software Developer

Noida,

Bangalore / Bengaluru

4-7 Yrs

₹ 20-25 LPA

Explore more jobs
JK Tech Salaries in India
Software Engineer
284 salaries
unlock blur

₹2.6 L/yr - ₹11.9 L/yr

Senior Consultant
235 salaries
unlock blur

₹6.7 L/yr - ₹28 L/yr

Senior Software Engineer
211 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Technical Lead
150 salaries
unlock blur

₹11 L/yr - ₹31 L/yr

Consultant
131 salaries
unlock blur

₹3.8 L/yr - ₹10 L/yr

Explore more salaries
Compare JK Tech with
Softenger

Softenger

4.0
Compare
Capital Numbers Infotech

Capital Numbers Infotech

4.4
Compare
DesignTech Systems

DesignTech Systems

3.3
Compare
SISL Infotech

SISL Infotech

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • JK Tech Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter