Upload Button Icon Add office photos

Filter interviews by

Sourcebits Technologies Interview Questions, Process, and Tips

Updated 24 Nov 2015

Top Sourcebits Technologies Interview Questions and Answers

View all 6 questions

Sourcebits Technologies Interview Experiences

Popular Designations

3 interviews found

Interview Questionnaire 

10 Questions

  • Q1. Questions were asked on web based project and mobile based applications
  • Q2. Questions were put up according to subject area of interest . some of OS based questions are as follows-
  • Q3. 1-) Daemon process
  • Q4. 2-) What happens to the child process when parent gets terminated
  • Ans. 

    When a parent process is terminated, the child process becomes an orphan and is adopted by the init process.

    • When a parent process is terminated, the child process is not automatically terminated.

    • The child process becomes an orphan and is adopted by the init process.

    • The init process becomes the new parent of the orphaned child process.

    • The orphaned child process continues to run independently until it completes or is ter

  • Answered by AI
  • Q5. 3-)What are various memory available in OS
  • Ans. 

    Various memory available in an OS include primary memory (RAM), secondary memory (hard disk), cache memory, and virtual memory.

    • Primary memory (RAM) is used to store data and instructions that are currently being used by the CPU.

    • Secondary memory (hard disk) is used for long-term storage of data and programs.

    • Cache memory is a small, high-speed memory that stores frequently accessed data to improve CPU performance.

    • Virtual...

  • Answered by AI
  • Q6. 4-)Define paging
  • Ans. 

    Paging is a memory management technique used in computer systems to divide the physical memory into fixed-size blocks called pages.

    • Paging allows the operating system to allocate memory to processes in a more efficient manner.

    • Each page is a fixed-size block of memory, typically 4KB in size.

    • The logical address space of a process is divided into pages, and the physical memory is divided into frames of the same size.

    • When a...

  • Answered by AI
  • Q7. 5-)What do you mean by incode , deadlock recovery and hierarchical file structure
  • Ans. 

    Incode refers to the code that is embedded within a program. Deadlock recovery is the process of resolving deadlocks in a system. Hierarchical file structure is a way of organizing files in a hierarchical manner.

    • Incode refers to the code that is written within a program.

    • Deadlock recovery involves detecting and resolving deadlocks in a system.

    • Hierarchical file structure organizes files in a tree-like structure with pare...

  • Answered by AI
  • Q8. Question about PHP, APACHE TOMCAT
  • Q9. Questions related to my projects were asked
  • Q10. Had you done any projects outside your Curriculum

Interview Preparation Tips

Round: Test
Experience: Few questions were their based on C program else their were questions on general aptitude based.

Round: HR Interview
Experience: It was a Skype based interview.
Tips: As far as source bit is concerned they are seriously into mobile apps and web.So prepare yourself according to that. Speak about project which best satisfies their expectations.

General Tips: Questions asked to other candidates (ceg and mit) are-
1-) About Data structure.
2-) How to transpose a matrix without extra space.
3-) Prime number generation.
Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Top Sourcebits Technologies Application Developer Interview Questions and Answers

Q1. 2-) What happens to the child process when parent gets terminated
View answer (1)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

Interview Preparation Tips

Round: Test
Experience: "Aptitude test :
Half the questions were for quantitative aptitude, the other half were programming based.



Round: Technical Interview
Experience:

Technical Interview :
Was asked to write a basic sort algorithm code. Wrote it in Python, managed to get through in 15 minutes



Round: HR Interview
Experience:
HR Interview :
Skype interview. Was asked to talk about projects mostly, was questioned about what projects I had done, technical details. Lasted for 20 minutes. Not too taxing. "

Skill Tips: The aptitude test questions posted on online discussion sites REPEATED word for word, so do take a look. They DID NOT change the aptitude test by even one question from what they had used for some other college.
College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Mobile App Developer Interview Questions asked at other Companies

Q1. What is tera flop ? 5. If a 2.8 GHz processor is given, calculate the number of floating point calculations that it can do
View answer (1)

Interview Questionnaire 

6 Questions

  • Q1. Explain final year project in a detailed manner
  • Q2.  Questions realted to inodes, debugs and filesystem were asked
  • Q3. Questions on OS like what is a class and asked me to write a class for a particular roomspray
  • Q4. Generate a program for finding the prime numbers
  • Ans. 

    Program to find prime numbers

    • Start with a loop to iterate through numbers

    • Check if each number is divisible by any number less than itself

    • If not divisible, it is a prime number

  • Answered by AI
  • Q5. Define web server
  • Ans. 

    A web server is a computer program that serves requested HTML pages or files to clients over the internet.

    • A web server is responsible for hosting websites and delivering web content to users.

    • It receives requests from clients (web browsers) and responds with the requested files or data.

    • Web servers use protocols like HTTP or HTTPS to communicate with clients.

    • Examples of web servers include Apache HTTP Server, Nginx, and

  • Answered by AI
  • Q6. Tell me something about yourself( weakness, strength, hobbies)

Interview Preparation Tips

Round: Test
Experience: The written test was easy and had both technical and aptitude questions( problems based on factorials, average , power , arithmetic progression) were asked.
Tips: Aptitude based questions -
1-) A times ath term of an AP is equal to b times bth term, then what is the (a+b)th term.
2-) Question based on the total number of coins and the denomination of each coin .
Technical question-
void change(char *ch)
{
ch=”helloworld”;
}
int main()
{
char *ch=”msgtoall”;
change(ch);
cout<}


Round: Technical Interview
Tips: Apart from technical stuff questions can be put on about your college preference and about you.

Round: HR Interview
Experience: HR interview was skype based.


Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Top Sourcebits Technologies Application Developer Interview Questions and Answers

Q1. 2-) What happens to the child process when parent gets terminated
View answer (1)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • Q2. Are you willing to relocate
  • Q3. Are you aware of TCS 2 years bond
  • Q4. Getch() in C
  • Ans. 

    getch() is a function in C that reads a single character from the keyboard without echoing it.

    • getch() is defined in the header file.

    • It is commonly used to read single characters for menu selection or password input.

    • The character read by getch() is not displayed on the screen.

    • getch() is a blocking function, meaning it waits for user input before proceeding.

    • Example: char ch = getch();

  • Answered by AI
  • Q5. Polymorphism in java
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. In Java, it is achieved through method overriding and interfaces.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.

    • Interfaces allow for polymorphism by defining a set of methods that a clas...

  • Answered by AI
  • Q6. Difference between post and get methods of php
  • Ans. 

    POST and GET are HTTP methods used to send data to a server. POST is used to send data in the request body while GET sends data in the URL.

    • POST is more secure as it doesn't expose data in the URL

    • GET has a limit on the amount of data that can be sent

    • POST is used for submitting forms, uploading files, etc.

    • GET is used for fetching data from the server

    • Examples: POST - submitting a login form, GET - fetching search results

  • Answered by AI
  • Q7. Basic networking questions

Interview Preparation Tips

Round: HR Interview
Experience: ve done self analysis well
Tips: Be calm and composed

Round: Technical Interview
Experience: overall technical interview was fine.They dont go in deep and stick only to the basics.Make sure you know well the stuff you mention in your resume
Tips: Be absolutely confident of your basics

General Tips: Be confident and rest assured
Skills: Areas Of Interest, Basic C/C++
College Name: Vidyalankar Institute Of Technology
Motivation: Plethora of opportunities for freshers

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Explain software development life cycle
  • Ans. 

    Software development life cycle is a process of planning, designing, developing, testing, and deploying software.

    • SDLC is a framework that guides the development of software.

    • It involves several stages such as planning, designing, coding, testing, and deployment.

    • Each stage has its own set of activities and deliverables.

    • The stages are often iterative, meaning they may be repeated until the desired outcome is achieved.

    • Exam...

  • Answered by AI
  • Q2. Explain some DBMS queries(select,delete,insert,update,drop)
  • Ans. 

    DBMS queries are used to interact with a database. Common queries include select, delete, insert, update, and drop.

    • SELECT: Retrieves data from a database table

    • DELETE: Removes data from a database table

    • INSERT: Adds new data into a database table

    • UPDATE: Modifies existing data in a database table

    • DROP: Deletes an entire database table

  • Answered by AI
  • Q3. Simple questions on C programming ( what is Studio.h, preprocessor)
  • Ans. 

    Studio.h is a header file in C programming used for input/output operations.

    • Studio.h contains functions like printf() and scanf() for input/output operations.

    • Preprocessor directives like #define and #include are used to include the header file.

    • Studio.h is part of the standard C library and is included in most C compilers.

    • It is important to include the header file in your program if you plan to use input/output function

  • Answered by AI
  • Q4. Tell  something about yourself
  • Q5. Why TCS
  • Ans. 

    TCS is a leading global IT services company with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality IT solutions to clients worldwide.

    • TCS offers a wide range of services and solutions, including consulting, digital transformation, and business process outsourcing.

    • TCS has a strong focus on innovation and invests heavily in research and development.

    • TCS has ...

  • Answered by AI
  • Q6. What is your long term goal

Interview Preparation Tips

Round: HR Interview
Tips: At the they might ask to ask something from them , so i will suggest to better ask them any question.This will leave a good impression.

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Write a code for arranging numbers in sorted order
  • Ans. 

    Code for arranging numbers in sorted order

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort

    • Determine if the numbers are integers or floating point numbers

    • Consider the size of the input array and the time complexity of the algorithm

    • Check for edge cases like empty array or array with only one element

  • Answered by AI
  • Q2. What is Data Mining
  • Ans. 

    Data mining is the process of discovering patterns and insights from large datasets.

    • It involves using statistical and machine learning techniques to analyze data

    • The goal is to extract useful information and knowledge from the data

    • Examples include identifying customer buying patterns or predicting stock prices

    • Data mining can also be used in fields such as healthcare to identify disease risk factors

  • Answered by AI
  • Q3. What is a need of compiler
  • Ans. 

    Compiler is needed to translate high-level programming language code into machine code.

    • Compilers are used to convert human-readable code into machine-readable code.

    • They help in detecting errors and bugs in the code before execution.

    • Compilers optimize the code for better performance and efficiency.

    • Examples of compilers include GCC, Clang, and Visual C++.

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

I was interviewed in Aug 2016.

Interview Questionnaire 

2 Questions

  • Q1. What is an SMPS?
  • Ans. 

    SMPS stands for Switched-Mode Power Supply.

    • It is an electronic power supply that uses a switching regulator to convert electrical power efficiently.

    • It is commonly used in computers, TVs, and other electronic devices.

    • It is smaller and lighter than traditional linear power supplies.

    • It can operate at high frequencies, reducing the size of transformers and capacitors.

    • It is more energy-efficient than linear power supplies.

    • E...

  • Answered by AI
  • Q2. Ready for relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I have experience moving for previous jobs

    • I am open to exploring new locations and cultures

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Interrviewers scanned my resume, asked questions on my final year project, asked what is an smps.
Tips: Study about your final year BE project in detail

Round: HR Interview
Tips: Prepare lightly for this round

Skills: Communication And Confidence
College Name: Fr. Conceicao Rodrigues College of Engineering

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. What is the difference between window os and ubuntu
  • Ans. 

    Windows OS is a proprietary operating system developed by Microsoft while Ubuntu is a free and open-source operating system based on Linux.

    • Windows OS is more widely used in desktops and laptops while Ubuntu is popular among developers and servers.

    • Windows OS has a graphical user interface (GUI) while Ubuntu can be used with or without a GUI.

    • Windows OS has a larger selection of software and games available while Ubuntu h...

  • Answered by AI
  • Q2. What are the  advantages and disadvantages of open source software
  • Q3.  The use of 64 bit architecture
  • Ans. 

    64-bit architecture allows for larger memory addressing and faster processing speeds.

    • 64-bit architecture can address more memory than 32-bit architecture

    • 64-bit architecture can perform more calculations per clock cycle

    • 64-bit architecture is required for certain software applications, such as video editing or scientific simulations

  • Answered by AI
  • Q4. Different questions were asked on the basis of resume

Interview Preparation Tips

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1.  What is sorting
  • Ans. 

    Sorting is the process of arranging data in a particular order.

    • Sorting is used to organize data for easier access and retrieval.

    • There are various sorting algorithms such as bubble sort, insertion sort, quicksort, etc.

    • Sorting can be done in ascending or descending order.

    • Examples of sorting include sorting a list of names alphabetically or sorting a list of numbers in numerical order.

  • Answered by AI
  • Q2. What is the difference between heap sorting and insertion sorting
  • Ans. 

    Heap sorting is a comparison-based sorting algorithm that divides the input into a sorted and an unsorted region, while insertion sorting builds the final sorted array one item at a time.

    • Heap sorting has a worst-case time complexity of O(n log n), while insertion sorting has a worst-case time complexity of O(n^2)

    • Heap sorting is not an in-place sorting algorithm, while insertion sorting is

    • Heap sorting is more efficient ...

  • Answered by AI
  • Q3.  What is type casting
  • Ans. 

    Type casting is the process of converting a variable from one data type to another.

    • It is also known as type conversion.

    • It can be done implicitly or explicitly.

    • Explicit type casting involves the use of casting operators.

    • Examples include converting an integer to a string or a float to an integer.

    • Type casting can lead to loss of data or precision.

  • Answered by AI
  • Q4. Describe types of inheritance
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • Single Inheritance: A derived class inherits from a single base class.

    • Multiple Inheritance: A derived class inherits from multiple base classes.

    • Multilevel Inheritance: A derived class is created from another derived class.

    • Hierarchical Inheritance: Multiple derived classes inherit from a single base class.

    • Hybrid Inheritance: Combinatio

  • Answered by AI
  • Q5. What is the  source code for doubly linked list
  • Ans. 

    The source code for doubly linked list is a data structure that contains nodes with pointers to the previous and next nodes.

    • Declare a node struct with data, prev, and next pointers

    • Create a head and tail pointer to the first and last nodes

    • Implement functions to add, remove, and traverse nodes

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience:  

General Tips: One should be well prepared with their final year project, and the extra curricular activities in which one was/ is involved in.
Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. What is the difference between different kind of linux OS?
  • Ans. 

    Different Linux OS have different features, package managers, and user interfaces.

    • Linux distributions have different package managers, such as apt, yum, and pacman.

    • Some distributions are designed for specific purposes, such as Kali Linux for penetration testing.

    • User interfaces can vary greatly, with some distributions using GNOME, KDE, or Xfce.

    • Some distributions are more lightweight and optimized for older hardware, su

  • Answered by AI
  • Q2. What is cloud computing
  • Ans. 

    Cloud computing is the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It eliminates the need for physical servers and hardware, reducing costs and increasing scalability.

    • Examples include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI
  • Q3. Few questions based on final year project

Interview Preparation Tips

Round: Technical Interview
Experience: They didn't asked much questions, only my real time projects was targeted.

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Sourcebits Technologies Interview FAQs

What are the top questions asked in Sourcebits Technologies interview?

Some of the top questions asked at the Sourcebits Technologies interview -

  1. 2-) What happens to the child process when parent gets termina...read more
  2. 5-)What do you mean by incode , deadlock recovery and hierarchical file structu...read more
  3. 3-)What are various memory available in...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Qburst Interview Questions
4.4
 • 18 Interviews
View all

Sourcebits Technologies Reviews and Ratings

based on 17 reviews

2.9/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

2.8

Salary

2.3

Job security

2.6

Company culture

2.7

Promotions

2.6

Work satisfaction

Explore 17 Reviews and Ratings
Senior Software Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Leader
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sourcebits Technologies with

Robosoft Technologies

3.4
Compare

Indus Net Technologies

3.5
Compare

LTIMindtree

3.8
Compare

Happiest Minds Technologies

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