Upload Button Icon Add office photos

Filter interviews by

One Convergence Interview Questions, Process, and Tips

Updated 23 Mar 2022

Top One Convergence Interview Questions and Answers

  • Q1. Middle of Linked List Given the head node of the singly linked list, return a pointer pointing to the middle of the linked list. If there are an odd number of elements, r ...read more
    asked in Software Developer interview
  • Q2. Longest Common Subsequence You have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence. A String ‘a ...read more
    asked in Software Developer interview
  • Q3. Flip Bits You are given an array of integers ARR[] of size N consisting of zeros and ones. You have to select a subset and flip bits of that subset. You have to return th ...read more
    asked in Software Developer interview
View all 37 questions

One Convergence Interview Experiences

Popular Designations

6 interviews found

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Dec 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Project And OS Questions

    1. Explain your final year project
    2. What is grey hole attack?
    3. What is semaphore?
    4. What is mutex?
    5. Difference between mutex and semaphore.
    6. What is virtual memory?
    7. Difference...

Round 2 - Face to Face 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. Computer Networks and OS Questions

    What is SSH, SSL, SDN ?
    Difference between TCP and UDP ?
    What is virtual, physical memory?
    What is critical section?

  • Q2. Convert Bst To The Greater Sum Tree

    You have been given a Binary Search Tree of integers. You are supposed to convert it to a greater sum tree such that the value of every node in the given BST is replaced...

  • Ans. Naive Approach

    Our very basic intuition is that we are going to traverse the tree node by node through any order traversal (pre-order, in-order, and post-order), and for each node, we will find all the greater nodes, SUM their values and store it. Then, later we replace each node with its corresponding SUM. The steps are as follows

     

    1. We are going to use a HashMap, in which the key represents the value of a node and t...
  • Answered by CodingNinjas
  • Q3. Middle of Linked List

    Given the head node of the singly linked list, return a pointer pointing to the middle of the linked list.

    If there are an odd number of elements, return the middle element if there...

  • Ans. Count Nodes Approach
    • If we want to know the midpoint of any linked list, it is very easy to do so if we know the number of elements in the linked list.
    • We take a pointer ‘p’ and use it to traverse the linked list and until we find NULL we increment a variable ‘count’ to count the number of elements in the linked list.
    • We then divide the number of elements by 2 to get the position of the middle element of the linked list.
    • F...
  • Answered by CodingNinjas
Round 3 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. OS and DBMS Questions

    What is deadlock?
    What is segmentation fault?
    What is page fault?
    What is exception?
    What will be stored in data section, heap, stack in memory?
    What are application of stacks?
    What is TTL i...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NIT Calicut. Eligibility criteriaAbove 6 CGPAOne Convergence interview preparation:Topics to prepare for the interview - Operating System, Computer Networks, DBMS, Data Structure, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least some project work.
Tip 2 : Practice at least 250 questions.

Application resume tips for other job seekers

Tip 1 : Put some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top One Convergence Software Developer Interview Questions and Answers

Q1. Middle of Linked ListGiven the head node of the singly linked list, return a pointer pointing to the middle of the linked list. If there are an odd number of elements, return the middle element if there are even elements return the one whic... read more
View answer (2)

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 (39)

I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How is the level of interview

Interview Preparation Tips

Interview preparation tips for other job seekers - clear concepts of OS, CN and data structures required {3-4 rounds of technical interview purely}

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 23 Mar 2022

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

After written test , only 4 from Mca and 4 from Mtech were selected for next round.
It was also pure technical round. Interview started just after result was declared. Since there was only two panels, It was taking time.

  • Q1. Flip Bits

    You are given an array of integers ARR[] of size N consisting of zeros and ones. You have to select a subset and flip bits of that subset. You have to return the count of maximum one’s that you c...

  • Ans. 

    Property of XOR can be used to solve this problem. 1^0 = 1 and 1^1 = 0
    First, we calculate the number of digits in the given number using log. 
    Next, generate a number with digits equal to the digits in the given number and all bits set to 1.
    The last step is to take the xor of the given number with the generated number. 
    The time complexity of this solution is O(log n).

  • Answered by CodingNinjas
  • Q2. Count Set Bits

    You are given a positive integer ‘N’. Your task is to find the total number of ‘1’ in the binary representation of all the numbers from 1 to N.

    Since the count of ‘1’ can be huge, you are ...

  • Ans. 

    The direct approach would be to loop through all bits in an integer, check if a bit is set and if it is, then increment the set bit count.
    Time Complexity: Θ(logn) (Theta of logn)
    Auxiliary Space: O(1)

    Brian Kernighan’s Algorithm can also be used here. 
    This algorithm is based on the idea that subtracting 1 from a decimal number flips all the bits after the rightmost set bit(which is 1) including the rightmost set bit...

  • Answered by CodingNinjas
  • Q3. Networking Question

    What is NAT and what are its functions?

  • Ans. 

    NAT stands for network address translation. It’s a way to map multiple local private addresses to a public one before transferring the information. Organizations that want multiple devices to employ a single IP address use NAT, as do most home routers.

    The functions of NAT are −

    Address translation for data transfer
    The border router is configured for NAT. The border router has two parts
    Local interface
    Global interface.
    Whe...

  • Answered by CodingNinjas
  • Q4. Networking Question

    What is VLAN?

  • Ans. 

    VLAN is a custom network which is created from one or more local area networks. It enables a group of devices available in multiple networks to be combined into one logical network. The result becomes a virtual LAN that is administered like a physical LAN. The full form of VLAN is defined as Virtual Local Area Network.

  • Answered by CodingNinjas
  • Q5. Networking Question

    What is socket buffer?

  • Ans. 

    Socket buffers are the short queues of packets the kernel holds on behalf of your app, as it's shuffling data between the NIC and your app's memory space.

  • Answered by CodingNinjas
  • Q6. Networking Question

    What is the function of a bridge?

  • Ans. 

    The Bridges connect two or more different LANs that have similar protocols and provide communications between the devices.
    Bridges are connected between two LANs in which some devices are connected in LAN A and LAN B.
    Bridges have the capability to take the Mac address of the devices which are connected in both the LANs.
    If any device sends data to the other device then it first goes to the bridge later it reads the Mac a...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round with questions based on DSA/OS etc.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. 

    This can be done by iterative swapping using two pointers. The first pointer points to the beginning of the string, whereas the second pointer points to the end. Both pointers keep swapping their elements and go towards each other. Essentially, the algorithm simulates the rotation of a string with respect to its midpoint.
    Time Complexity : O(n)

  • Answered by CodingNinjas
  • Q2. Longest Common Subsequence

    You have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence.

    A String ‘a’ is a subsequence of a String ‘b...

  • Ans. 

    This problem can be solved using recursion. In this approach, we will start form last element of both the strings. If elements at the last matches then we will decrement length of both the string else we will decrement the length of either of the string.
    lcs(s1, s2, n, m):
    if n == 0 or m == 0:
    return 0
    if s1[n-1] == s2[m - 1]:
    return 1 + lcs(s1, s2, n-1, m-1)
    else:
    return max(lcs(s1, s2, n-1, m), lcs(s1, s2, n, m-1))

    But this ...

  • Answered by CodingNinjas
  • Q3. OS Question

    Difference between Zombie, Orphan and Daemon Processes

  • Ans. 

    1. A Zombie is a process that has completed its task but still, it shows an entry in a process table. A child process that remains running even after its parent process is terminated or completed without waiting for the child process execution is called an orphan. A daemon process is a system-related process always running in the background.
    2. Zombie process states always indicated by Z . The orphan process was created...

  • Answered by CodingNinjas
  • Q4. OS Question

    What is little endian and big endian?

  • Ans. 

    Little and big endian are two ways of storing multibyte data-types ( int, float, etc). In little endian machines, last byte of binary representation of the multibyte data-type is stored first. On the other hand, in big endian machines, first byte of binary representation of the multibyte data-type is stored first.

  • Answered by CodingNinjas
  • Q5. OS Question

    What is linking?

  • Ans. 

    Linking is the process of collecting and combining various pieces of code and data into a single file that can be loaded (copied) into memory and executed. Linking can be performed at compile time, when the source code is translated into machine code, at load time, when the program is loaded into memory and executed by the loader, and even at run time, by application programs. On early computer systems, linking was per...

  • Answered by CodingNinjas
  • Q6. OS Question

    Explain the memory layout of a C program.

  • Ans. 

    1. Text Segment: 
    A text segment, also known as a code segment or simply as text, is one of the sections of a program in an object file or in memory, which contains executable instructions.
    As a memory region, a text segment may be placed below the heap or stack in order to prevent heaps and stack overflows from overwriting it. 

    2. Initialized Data Segment: 
    Initialized data segment, usually called simply th...

  • Answered by CodingNinjas
  • Q7. Compiler Design Question

    What is symbol table?

  • Ans. 

    Symbol Table is an important data structure created and maintained by the compiler in order to keep track of semantics of variables i.e. it stores information about the scope and binding information about names, information about instances of various entities such as variable and function names, classes, objects, etc. 
    It is built-in lexical and syntax analysis phases.
    The information is collected by the analysis ph...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAOne Convergence interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Networking, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top One Convergence Software Developer Interview Questions and Answers

Q1. Middle of Linked ListGiven the head node of the singly linked list, return a pointer pointing to the middle of the linked list. If there are an odd number of elements, return the middle element if there are even elements return the one whic... read more
View answer (2)

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 (39)

Interview Questions & Answers

user image Anonymous

posted on 20 May 2015

Interview Questionnaire 

22 Questions

  • Q1. Tell me about yourself in brief
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in project management and team leadership.

    • Over 10 years of experience in managing complex projects and leading cross-functional teams

    • Proven track record of delivering projects on time and within budget

    • Expertise in strategic planning, risk management, and stakeholder communication

    • Strong problem-solving and decision-making skills

    • Excellent commu...

  • Answered by AI
  • Q2. Write program to reverse string
  • Ans. 

    Program to reverse a string

    • Use a loop to iterate through the characters of the string

    • Create a new string and append each character in reverse order

    • Return the reversed string

  • Answered by AI
  • Q3. Write program to reverse bits of number
  • Ans. 

    Program to reverse the bits of a number

    • Convert the number to binary representation

    • Reverse the binary representation

    • Convert the reversed binary back to decimal

  • Answered by AI
  • Q4. Write program to check common sequence in two string
  • Ans. 

    Program to check common sequence in two strings

    • Iterate through each character of the first string

    • Check if the current character is present in the second string

    • If yes, add it to the common sequence array

    • Return the common sequence array

  • Answered by AI
  • Q5. Write program to the bits which is set
  • Ans. 

    This program finds and prints the bits that are set in a given number.

    • Use bitwise AND operator (&) to check if a bit is set.

    • Iterate through each bit of the number and print the position of the set bits.

  • Answered by AI
  • Q6. Describe switch in n/w and how will you implement its s/w
  • Ans. 

    A switch in a network is a device that connects multiple devices together and forwards data packets between them.

    • A switch operates at the data link layer of the OSI model.

    • It uses MAC addresses to determine the destination of data packets.

    • Switches improve network performance by reducing collisions and providing dedicated bandwidth to each connected device.

    • Switches can be implemented using software-defined networking (SD...

  • Answered by AI
  • Q7. What is NAT and its functions ?
  • Ans. 

    NAT stands for Network Address Translation. It is a process of translating IP addresses between different networks.

    • NAT allows multiple devices in a private network to share a single public IP address.

    • It provides security by hiding the internal IP addresses from external networks.

    • NAT enables the conservation of public IP addresses by allowing multiple devices to use a single IP.

    • It facilitates the routing of traffic betw...

  • Answered by AI
  • Q8. What is VLAN ?
  • Ans. 

    VLAN stands for Virtual Local Area Network. It is a technology that allows the creation of multiple virtual networks within a single physical network.

    • VLANs provide segmentation and isolation of network traffic.

    • They improve network performance and security.

    • VLANs can be used to group devices based on department, function, or security requirements.

    • They enable easier network management and troubleshooting.

    • VLANs are commonl...

  • Answered by AI
  • Q9. How client and server establish their communication. How to create socket , explain step by step?
  • Ans. 

    Client and server establish communication through sockets. Creating a socket involves several steps.

    • Client and server each create a socket object.

    • Server socket binds to a specific port number on the server machine.

    • Server socket listens for incoming client connections.

    • Client socket connects to the server socket using the server's IP address and port number.

    • Once the connection is established, client and server can exchan

  • Answered by AI
  • Q10. What is socket buffer?
  • Ans. 

    A socket buffer is a data structure used by the operating system to store data being sent or received over a network socket.

    • Socket buffers are typically implemented as circular buffers.

    • They are used to temporarily hold data until it can be processed by the application.

    • Socket buffers have a fixed size and can be filled or emptied by the operating system or the application.

    • They help in managing the flow of data between t...

  • Answered by AI
  • Q11. What is function of bridge?
  • Ans. 

    A bridge is a structure that connects two separate areas, allowing for the passage of people, vehicles, or other forms of transportation.

    • Bridges provide a means of crossing obstacles such as rivers, valleys, or roads.

    • They facilitate the movement of people, vehicles, and goods from one place to another.

    • Bridges can be made of various materials such as concrete, steel, or wood.

    • They can be designed in different styles and ...

  • Answered by AI
  • Q12. What is IPC(inter process communication) and ITC(inter thread communication) and how it happens and how to implement it
  • Ans. 

    IPC is a mechanism for communication between processes, while ITC is for communication between threads within a process.

    • IPC allows processes to exchange data and synchronize their actions.

    • ITC allows threads to share data and coordinate their activities.

    • IPC can be implemented using various techniques such as pipes, sockets, shared memory, and message queues.

    • ITC can be achieved through shared variables, message passing, ...

  • Answered by AI
  • Q13. Tell me about yourself and your achievement briefly and your family background
  • Ans. 

    I come from a diverse family background and have achieved success in my career through hard work and dedication.

    • I come from a family with a mix of different cultures and traditions.

    • I have excelled in my career by consistently delivering results and taking on new challenges.

    • I have received several awards and recognition for my contributions to my field.

    • My family has always been supportive of my ambitions and encouraged

  • Answered by AI
  • Q14. What is linking? Explain in detail
  • Ans. 

    Linking is the process of connecting different web pages or resources together through hyperlinks.

    • Linking is an essential aspect of the World Wide Web.

    • It allows users to navigate between different web pages by clicking on hyperlinks.

    • Hyperlinks can be text, images, or other elements that when clicked, direct the user to another web page or resource.

    • Linking helps in organizing and structuring information on the web.

    • It en...

  • Answered by AI
  • Q15. What is little endian ,big endian. How to implement it’s code?
  • Ans. 

    Little endian and big endian are byte ordering formats. Little endian stores the least significant byte first, while big endian stores the most significant byte first.

    • Little endian and big endian refer to the order in which bytes are stored in memory.

    • In little endian, the least significant byte is stored first, followed by the more significant bytes.

    • In big endian, the most significant byte is stored first, followed by ...

  • Answered by AI
  • Q16. What are different types of memory segment and tell about different parts of program and where they are stored?
  • Ans. 

    Different types of memory segments include code segment, data segment, stack segment, and heap segment.

    • Code segment stores the executable code of the program.

    • Data segment stores global and static variables.

    • Stack segment stores local variables and function call information.

    • Heap segment stores dynamically allocated memory.

    • Example: In C programming, global variables are stored in the data segment.

  • Answered by AI
  • Q17. Explain zombie, daemon and orphan processes and how they are different?
  • Ans. 

    Zombie, daemon, and orphan processes are different types of processes in operating systems.

    • Zombie processes are dead processes that have completed execution but still have an entry in the process table.

    • Daemon processes are background processes that run continuously and perform specific tasks.

    • Orphan processes are child processes that continue to run even after their parent process has terminated.

    • Zombie processes consume...

  • Answered by AI
  • Q18. How to create parent and child process and different threads?
  • Ans. 

    To create parent and child processes, use fork() system call. To create threads, use pthread_create() function.

    • To create a child process, use fork() system call. The child process is an exact copy of the parent process.

    • To create threads, use pthread_create() function from pthread library.

    • Parent and child processes can communicate using inter-process communication mechanisms like pipes or shared memory.

    • Threads share the...

  • Answered by AI
  • Q19. What are common segment used by parent and child processes?
  • Ans. 

    The common segments used by parent and child processes are code segment, data segment, and stack segment.

    • Code segment: Contains the executable code of the program.

    • Data segment: Stores global and static variables.

    • Stack segment: Used for local variables and function calls.

  • Answered by AI
  • Q20. What are common segment used by threads?
  • Ans. 

    The common segments used by threads are code segment, data segment, and stack segment.

    • Code segment: Contains the executable code of the program.

    • Data segment: Stores global and static variables.

    • Stack segment: Used for local variables and function call information.

  • Answered by AI
  • Q21. What is symbol table and what is it used for?
  • Ans. 

    A symbol table is a data structure used by compilers and interpreters to store information about the variables, functions, and other symbols in a program.

    • It maps each symbol to its attributes, such as its data type, memory location, and scope.

    • Symbol tables are used during the compilation or interpretation process to resolve references to symbols and perform semantic analysis.

    • They enable efficient lookup and retrieval o...

  • Answered by AI
  • Q22. How to use gcc to compile program and what are different options available?
  • Ans. 

    gcc is a command-line compiler used to compile programs written in C or C++.

    • To compile a program using gcc, use the command 'gcc -o '.

    • The '-o' option is used to specify the name of the output file.

    • By default, gcc compiles C programs. To compile C++ programs, use the '-x' option followed by 'c++'.

    • To enable warnings during compilation, use the '-Wall' option.

    • To optimize the compiled code, use the '-O' opt...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There was only one written round after ppt presentation. It was pure technical based paper consisting of c, java, datastucture, network and operating system.
There were around 60 questions to be done in one hour. All questions were easy but conceptual and little bit tricky.
    1. In C.
    Most of the questions were based on bits manipulation and string and union.    2. In Data structure.
    Questions on tree , heap, red black tree and balanced tree and complexity.    3. In Operating System
    It was really conceptual. Most of the questions were on virtual memory concept and scheduling and semaphore.    4. Network
    Questions on layers and their protocols. Numerical that needed transmission ,propagation and bandwidth formula. Some general conceptual question including switch, hub and gateway.I attempted every section since sectional cutoff was there. I didn’t attempt any question that I was not sure for, since there was negative marking. I also didn’t attempt any numerical.
So, attempt each section such that you can clear cut off. No need to attempt all questions of each section.

Round: Technical Interview
Experience: After written test , only 4 from Mca and 4 from Mtech were selected for next round.
It was also pure technical round.
Interview started just after result was declared. Since there was only two panels, It was taking time.

College Name: NA

Skills evaluated in this interview

One Convergence interview questions for popular designations

 Software Developer

 (2)

 Software Engineer

 (2)

Interview Questions & Answers

user image Anonymous

posted on 20 May 2015

Interview Questionnaire 

22 Questions

  • Q1. Tell me about yourself in brief
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in project management and team leadership.

    • Over 10 years of experience in managing complex projects and leading cross-functional teams

    • Proven track record of delivering projects on time and within budget

    • Expertise in strategic planning, risk management, and stakeholder communication

    • Strong problem-solving and decision-making skills

    • Excellent commu...

  • Answered by AI
  • Q2. Write program to reverse string
  • Q3. Write program to reverse bits of number
  • Q4. Write program to check common sequence in two string
  • Q5. Write program to the bits which is set
  • Q6. Describe switch in n/w and how will you implement its s/w
  • Q7. What is NAT and its functions ?
  • Q8. What is VLAN ?
  • Q9. How client and server establish their communication. How to create socket , explain step by step?
  • Q10. What is socket buffer?
  • Q11. What is function of bridge?
  • Q12. What is IPC(inter process communication) and ITC(inter thread communication) and how it happens and how to implement it
  • Q13. Tell me about yourself and your achievement briefly and your family background
  • Q14. What is linking? Explain in detail
  • Q15. What is little endian ,big endian. How to implement it’s code?
  • Q16. What are different types of memory segment and tell about different parts of program and where they are stored?
  • Q17. Explain zombie, daemon and orphan processes and how they are different?
  • Q18. How to create parent and child process and different threads?
  • Q19. What are common segment used by parent and child processes?
  • Q20. What are common segment used by threads?
  • Ans. 

    The common segments used by threads are code segment, data segment, and stack segment.

    • Code segment: Contains the executable code of the program.

    • Data segment: Stores global and static variables.

    • Stack segment: Used for local variables and function call information.

  • Answered by AI
  • Q21. What is symbol table and what is it used for?
  • Q22. How to use gcc to compile program and what are different options available?
  • Ans. 

    gcc is a command-line compiler used to compile programs written in C or C++.

    • To compile a program using gcc, use the command 'gcc -o '.

    • The '-o' option is used to specify the name of the output file.

    • By default, gcc compiles C programs. To compile C++ programs, use the '-x' option with 'c++' argument.

    • To enable warnings during compilation, use the '-Wall' option.

    • To optimize the compiled code, use the '-O' o...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There was only one written round after ppt presentation. It was pure technical based paper consisting of c, java, datastucture, network and operating system.There were around 60 questions to be done in one hour. All questions were easy but conceptual and little bit tricky.    1. In C.    Most of the questions were based on bits manipulation and string and union.
    2. In Data structure.    Questions on tree , heap, red black tree and balanced tree and complexity.
    3. In Operating System    It was really conceptual. Most of the questions were on virtual memory concept and scheduling and semaphore.
    4. Network    Questions on layers and their protocols. Numerical that needed transmission ,propagation and bandwidth formula. Some general conceptual question including switch, hub and gateway.
I attempted every section since sectional cutoff was there. I didn’t attempt any question that I was not sure for, since there was negative marking. I also didn’t attempt any numerical.So, attempt each section such that you can clear cut off. No need to attempt all questions of each section.

Round: Technical Interview
Experience: After written test , only 4 from Mca and 4 from Mtech were selected for next round.It was also pure technical round.Interview started just after result was declared. Since there was only two panels, It was taking time.

College Name: NA

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Written test was held. Shortlisted 23 students from written test.

Round: Technical Interview
Experience: 2 rounds of technical interviews were there. Technical rounds started with basic questions and moved on till programming. They covered all the subjects such as OS,CN, DBMS,C, C++, Data Structures.

Round: HR Interview
Experience: One HR round was there.

General Tips: My journey for placements started with attending my first interview at Oracle (in Aug). Different companies focus on different subject in your interviews. While some of them stress on your coding part, others might be interested only on your project. I have seen few of my friends, were only project was asked in depth for 1hr, and they were also asked to write few code lines of your project.Famous puzzles were common in many of my interviews, while few new questions were also heard. Be strong in coding, and confidence is all that matters."Confuse or convince", I would say!
Skill Tips: Be confident. Do not neglect practicing aptitude problems. They look to be simple and everyone can solve it, but speed matters when you are writing your written test. Try to know at least basic info about the company before attending your interview. Practice the famous puzzles/quiz problems and also your role in your major project.
College Name: NIT SURATHKAL

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

They will send you a link for aptitude test

Round 2 - HR 

(4 Questions)

  • Q1. Are you comfortable with night shifts?
  • Ans. 

    Yes, I am comfortable with night shifts as I am able to adapt to different schedules and prioritize work efficiently.

    • I have previous experience working night shifts and have been able to perform well during those hours.

    • I am a night owl and find that I am more productive during the night.

    • I understand the importance of maintaining a healthy work-life balance and am willing to adjust my schedule to accommodate night shift

  • Answered by AI
  • Q2. How much time does it take for you to reach the office from your current location?
  • Ans. 

    It takes me approximately 30 minutes to reach the office from my current location.

    • I live about 10 miles away from the office.

    • I usually drive to work, taking the highway to avoid traffic.

    • On average, it takes me half an hour to commute to the office.

  • Answered by AI
  • Q3. Current salary?
  • Ans. 

    I prefer to discuss salary expectations based on the responsibilities and requirements of the position.

    • Focus on discussing salary expectations based on the job role and industry standards.

    • Avoid disclosing current salary to ensure fair compensation.

    • Highlight relevant experience and skills that justify desired salary.

    • Discuss potential for growth and additional benefits instead of current salary.

  • Answered by AI
  • Q4. Salary expectations are not asked 😂
Round 3 - One-on-one 

(3 Questions)

  • Q1. What was your previous job role?
  • Ans. 

    I was a marketing manager at a tech company.

    • Managed marketing campaigns and strategies

    • Collaborated with cross-functional teams to drive brand awareness

    • Analyzed market trends and competitor activities

    • Implemented digital marketing initiatives

    • Organized events and promotions

  • Answered by AI
  • Q2. Why you left previous organisation ?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Lack of growth opportunities in previous organization

    • Seeking new challenges and learning experiences

  • Answered by AI
  • Q3. What do you know about IDfy
  • Ans. 

    IDfy is a leading identity verification and fraud prevention platform.

    • IDfy offers solutions for KYC verification, customer onboarding, and fraud detection.

    • Their platform uses AI and machine learning algorithms to verify identities in real-time.

    • IDfy serves a wide range of industries including finance, e-commerce, and healthcare.

  • Answered by AI
Round 4 - Case Study 

The case study involves asking you about the documents and how will you verify fraud with the given documents like offer letter , and others. And the second

2 case study was
How will you teach the blind man colour blue
The answer was this was given by me hence it was out of the book

Interview Preparation Tips

Topics to prepare for Idfy Business Executive interview:
  • Case Studies
Interview preparation tips for other job seekers - So this is KYC company a business consulting firm as well and here you will be treated respectfully by HR and Assistant managers But however the 3rd case study round will be tricky because the manager taking 3 round is no manager but a damaged and his name is Max when you will be interviewed he will certainly give you case study and keep interrupting and adding more and more questions to the case study and when you have given him the resolution he will then ask you the question that how will you make the blind man learn colour blue the second person coming out from the interview his hands were shivering the manager for the 3rd round was a big time a cooperate player and would not let anyone come in the organisation so be careful while going for interview on this place as you can face a 🧟‍♂️

And it’s at least 12-13 minutes walking from Marol metro station

Member of Technical Staff -3 Interview Questions & Answers

Exotel user image Anonymous

posted on 7 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Find length of substring with longest distinct characters(non-repeating characters) eg - input "abcdab" result - "4(abcd)"
  • Q2. Interviewer was not clear on the question herself, here is what i deduced, If you want to build a scheduler service which takes in jobs to run at certain intervals and you cannot use things like cronjob, e...
  • Q3. Current project and roles and responsibilities. what is the most difficult technical problem you solved, again i think interviewer was lost on the problem i explained.
  • Ans. 

    I worked on a project involving developing a new algorithm for optimizing network traffic. My role was to design and implement the algorithm, as well as test and debug it.

    • Researched existing algorithms and identified their limitations

    • Designed a new algorithm that addressed the limitations and improved network performance

    • Implemented the algorithm in code and tested it in a simulated network environment

    • Debugged issues an...

  • Answered by AI
  • Q4. Scalability question on one of the project i was explaining

Interview Preparation Tips

Interview preparation tips for other job seekers - Ideally avoid the recruitment process if you are paired with a junior developer interviewing for very senior roles. On inquiring about the team that i would be paired with, she told me that she is part of a different team, there were no people available to take interview for the team that was actually hiring.

Skills evaluated in this interview

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Basic details 

(2 Questions)

  • Q1. Location and work area
  • Q2. Basic details in general
Round 2 - HR 

(2 Questions)

  • Q1. Current and previous work experience and relevance
  • Q2. Territories covered
Round 3 - Behavioral 

(2 Questions)

  • Q1. Work experience, relevant experience
  • Q2. How can I expand their market
  • Ans. 

    Expanding the market can be achieved through market research, identifying new target demographics, developing new products or services, and implementing effective marketing strategies.

    • Conduct market research to identify potential new markets or untapped segments within the current market.

    • Analyze competitors to understand their strategies and identify opportunities for differentiation.

    • Develop new products or services th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Found their job ad on Naukri where the salary is mentioned as 8.4-10.8 LPA.
Initially the HR mentioned the salary to be the same as on the ad; but after the interviews, the HR said that the max they can offer is 10-15% hike over current CTC; which is even lower than the minimum salary they had mentioned in the JD.

If the HR is duping the candidates with just the salary itself then how can a future employee expect the employers to be transparent with him/her later on.

Also, they wanted me to sign a declaration that I will find a channel partner/distributor within 15 days of joining.

One Convergence Interview FAQs

What are the top questions asked in One Convergence interview?

Some of the top questions asked at the One Convergence interview -

  1. What is IPC(inter process communication) and ITC(inter thread communication) an...read more
  2. What are different types of memory segment and tell about different parts of pr...read more
  3. What is little endian ,big endian. How to implement it’s co...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 One Convergence interview
Campus Placement
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

IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 883 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
Dell Interview Questions
4.1
 • 386 Interviews
VMware Software Interview Questions
4.4
 • 155 Interviews
NetApp Interview Questions
3.9
 • 61 Interviews
Citrix Interview Questions
3.6
 • 54 Interviews
View all

One Convergence Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

3.6

Skill development

4.5

Work-Life balance

4.0

Salary & Benefits

4.2

Job Security

4.3

Company culture

3.8

Promotions/Appraisal

3.7

Work Satisfaction

Explore 6 Reviews and Ratings
Software Engineer
7 salaries
unlock blur

₹8.5 L/yr - ₹14 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹17 L/yr - ₹26.5 L/yr

Software Developer
3 salaries
unlock blur

₹1.5 L/yr - ₹11 L/yr

Explore more salaries
Compare One Convergence with

VMware Software

4.4
Compare

Citrix

3.6
Compare

NetApp

3.9
Compare

Juniper Networks

4.2
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