Upload Button Icon Add office photos

Filter interviews by

3K Softech Interview Questions and Answers

Updated 14 Feb 2024

3K Softech Interview Experiences

Popular Designations

2 interviews found

Senior Software Developer Interview Questions & Answers

user image Vijaya Sree Badam

posted on 14 Feb 2024

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

(2 Questions)

  • Q1. Tell me about CDC stage
  • Q2. Write the sql query for 3rd highest salary
  • Ans. 

    To find the 3rd highest salary, we can use the SQL query with the 'LIMIT' and 'OFFSET' clauses.

    • Use the 'ORDER BY' clause to sort the salaries in descending order.

    • Use the 'LIMIT' clause to limit the result to 1 row.

    • Use the 'OFFSET' clause to skip the first two highest salaries.

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked ListYou are given two Singly Linked List of integers, which are merging at some node of a third linked list. Your task is to find the data of the node at which merging starts. If there is no merging, return -1. For ex... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant 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 - HR 

(1 Question)

  • Q1. Related to profile Experience Salary
Round 3 - One-on-one 

(1 Question)

  • Q1. Related to Functionality of ERP Modules

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

Interview questions from similar companies

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

(2 Questions)

  • Q1. Are you familiar with Object-Oriented Programming (OOP)?
  • Q2. What is the definition of a constant in PHP?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is scatter gather?
  • Q2. What is RAML? What are traits?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. How Angular application works?
  • Ans. 

    Angular applications work by utilizing TypeScript to create components, services, and modules that interact with the DOM.

    • Angular applications are built using TypeScript, a superset of JavaScript.

    • Components are the building blocks of Angular applications, representing different parts of the UI.

    • Services are used to share data and functionality across components.

    • Modules help organize the application into cohesive blocks o...

  • Answered by AI
  • Q2. What are components and directives?
  • Ans. 

    Components and directives are key concepts in Angular framework for building dynamic web applications.

    • Components are the basic building blocks of Angular applications, representing a part of the user interface.

    • Directives are markers on a DOM element that tell Angular to attach a specific behavior to that element or transform it.

    • Components are directives with a template.

    • Examples: ngIf, ngFor, ngStyle, ngClass

  • Answered by AI
  • Q3. What are dependency injection in angular
  • Ans. 

    Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.

    • In Angular, dependencies are injected into a component's constructor using TypeScript.

    • This allows for better modularity, reusability, and testability of code.

    • Dependencies can be provided at the module level or at the component level.

    • Example: constructor(private userService: UserService) {}

  • Answered by AI
  • Q4. How do you call an api in angular
  • Ans. 

    To call an API in Angular, you can use the HttpClient module to make HTTP requests.

    • Import the HttpClientModule in your app module

    • Inject the HttpClient service in your component/service

    • Use HttpClient's methods like get(), post(), put(), delete() to make API calls

    • Subscribe to the Observable returned by the HTTP request to get the response data

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. Why do you want to get placed in Accenture?
  • Q2. What are ur strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong communication. My weakness is that I can be overly critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Strengths: strong communication

    • Weakness: overly critical of my own work

  • Answered by AI
  • Q3. If there is a task and someone comes for your help what will be your approach?

Interview Preparation Tips

Interview preparation tips for other job seekers - Well it depends on interviewer how easy or tough he/she wants to take, but prepare well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Gayatri Vidya Parishad College of Engineering, Visakhapatnam and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most of the questions on verbal,logical,numerical aptitude

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Could you explain the project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the resume and do background work on company
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy round anyone with basic maths can clear the round.

Round 2 - Group Discussion 

The topic given to us is online education system,and the round was easy to clear.

Round 3 - One-on-one 

(1 Question)

  • Q1. Call by value vs call by reference
  • Ans. 

    Call by value passes a copy of the variable, while call by reference passes the actual variable.

    • Call by value: changes to the parameter inside the function do not affect the original variable.

    • Call by reference: changes to the parameter inside the function affect the original variable.

    • Example: Call by value - int x = 5; func(x); // x remains 5. Call by reference - int x = 5; func(&x); // x changes to the value set i

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Linux Question

Round 2 - Technical 

(3 Questions)

  • Q1. What is ftp port number?
  • Ans. 

    FTP port number is 21.

    • FTP port number is used for transferring files over a network.

    • It is a default port number for FTP protocol.

    • FTP clients connect to port 21 on the server to initiate a file transfer.

    • FTP servers listen on port 21 for incoming connections.

  • Answered by AI
  • Q2. What is DHCP and how its working?
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol. It is a network protocol that automatically assigns IP addresses to devices on a network.

    • DHCP server assigns IP addresses to devices on a network

    • It also provides other network configuration information such as subnet mask and default gateway

    • DHCP uses a lease mechanism to manage IP address assignments

    • DHCP operates on the client-server model

    • Example: When a device conne...

  • Answered by AI
  • Q3. What is Domain name System?
  • Ans. 

    Domain Name System (DNS) is a system that translates domain names to IP addresses, allowing users to access websites using human-readable names.

    • DNS is like a phone book for the internet, translating domain names (like google.com) to IP addresses (like 172.217.3.206).

    • DNS servers store records of domain names and their corresponding IP addresses.

    • DNS helps users access websites by resolving domain names to IP addresses in...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. How much do you know about inspection and what would you refer for doing inspection work
  • Ans. 

    I have a strong understanding of inspection processes and recommend thorough documentation, attention to detail, and adherence to regulations.

    • Understanding of inspection procedures and protocols

    • Attention to detail in identifying issues and discrepancies

    • Thorough documentation of findings and recommendations

    • Adherence to regulations and standards

    • Utilization of appropriate tools and equipment for inspections

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic HR questions, understand basic terminology that goes in inspection duties and be confident in showing your learning ability and communication skills
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 May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Digital marketing strategy for social media
  • Ans. 

    A digital marketing strategy for social media involves creating engaging content, utilizing various platforms, analyzing data, and interacting with followers.

    • Identify target audience and choose appropriate social media platforms

    • Create a content calendar with a mix of promotional and engaging posts

    • Utilize paid advertising to reach a larger audience

    • Analyze data and adjust strategy based on performance metrics

    • Engage with ...

  • Answered by AI
  • Q2. Social media used? And how?
  • Ans. 

    Social media platforms like Facebook, Instagram, Twitter, LinkedIn, and TikTok are used to engage with the audience, share content, run ads, and build brand presence.

    • Facebook is used for sharing updates, creating events, and running targeted ads.

    • Instagram is used for visual content sharing, influencer partnerships, and Instagram Stories.

    • Twitter is used for real-time updates, customer service, and engaging with industry...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You prepare social media platforms knowledge for digital Marketing

Skills evaluated in this interview

3K Softech Interview FAQs

How many rounds are there in 3K Softech interview?
3K Softech interview process usually has 2 rounds. The most common rounds in the 3K Softech interview process are Resume Shortlist, HR and One-on-one Round.
What are the top questions asked in 3K Softech interview?

Some of the top questions asked at the 3K Softech interview -

  1. Write the sql query for 3rd highest sal...read more
  2. Tell me about CDC st...read more
  3. Related to Functionality of ERP Modu...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
View all

3K Softech Reviews and Ratings

based on 14 reviews

3.6/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.5

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 14 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹2.4 L/yr - ₹8.7 L/yr

Test Engineer
7 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Data Engineer
6 salaries
unlock blur

₹12.5 L/yr - ₹15.5 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Project Trainee
5 salaries
unlock blur

₹2.4 L/yr - ₹3 L/yr

Explore more salaries
Compare 3K Softech with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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