About Partian Technologies
Partian technologies is a private company working in the field of IT product development. This company is the technology partner to one of the leading health care company that is “access healthcare LLC”.
Eligibility Criteria for Partian Technologies
Below are the points for the eligibility criteria for partian technologies recruitment. So make sure you read them carefully before proceeding further.
- If you have done any of these courses then you are eligible to apply (B.Tech/B.E., M.Sc., M.Sc. (Tech.), M.Sc.(Hons.), M.Tech./M.E., MCA, P.G.D.C.A)
- You must have 60% or above in your complete academics.
- You must have excellent communication skills
- You must have good coding and aptitude skills.
Interview Process
In partian technologies interview process you will have three rounds. The details of which are given below.
- In first-round – code analysis will be done and for passing on to next round you need to require at least 65% or above in this round.
- In the second round – this round will be coding round in which you can select any programming language of your choice.
- In the third round – this round is an HR round through which your communication skills will be tested along with other things.
Partian Technologies Interview Questions
We have given some important questions below which will be very helpful for you to prepare for partian technologies interview process.
Question 1. Define Data Access Modifier.
Answer. Access Modifiers or Access specifiers provide a class, a variable or a function with accessibility. It means that they govern who can access them.
– These are the keywords in object-oriented languages that sets the accessibility of classes, methods, member function, member variables etc.
– Access modifiers defines the accessibility of the specific type, for example: class, structure, data member etc.
There are five types of access modifiers:
- Public
- Private
- Protected
- Internal
- Protected Internal
Question 2. What is PRINTF()?
Answer. printf() is an inbuilt library function in C which is available in C library by default. This function is declared and related macros are defined in “stdio.h” header file.
printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen.
Question 3. What are design patterns? Define basic classification of patterns – Creational, Structural and Behavioral patterns.
Answer. A design pattern in Software is used to solve similar problems that occur in different scenarios. A design pattern is not a design that can be converted to a chunk of code. It can be considered as a solution that can be reused. A relation between classes and object is a design pattern in OOPL.
Creational design pattern: Helps in creation of objects and controlling any design issues. Abstract factory, factory, builder pattern are the examples.
Structural design pattern: Helps in defining relationships between entities. Adapter pattern, aggregate, Proxy pattern are the examples.
Behavioral design pattern: helps in realizing communication patterns between objects. Iterator pattern, strategy pattern, and state pattern are the examples.
Question 4. what is meant by protocol?
Answer. Protocol is nothing but a set of rules to be followed by a programmer.
Question 5. How can we implement singleton pattern in .NET?
Answer. Singleton pattern restricts only one instance running for an object.
Singleton pattern is commonly used in print spoolers.
Following are the three steps needed to implement singleton pattern in .NET:-
– A class with static members needs to be created.
Public class SampleStaticClass
Private shared objemployee as clsemployee
End class
– A private constructor to the class above should be defined.
– A static method can be used to access the singleton object.
Question 6. what are all the sections that a C program may/must have?
Answer. There are many sections in a C program structure. They are,
Documentation section
Link Section
Definition Section
Global declaration section
Function prototype declaration section
Main function
User defined function section
main() function section is the important section in a C program as program execution starts from main() function only in C language. A C program may not have all other sections except main() function.
Question 7. What is aspect oriented programming?
Answer. When A computer program is broken into distinct features that overlap in functionality is called as Separation of concerns. Aspect oriented programming (AOP) aims to improve the process of Separation of concerns thereby increasing modularity. Data logging is a common example of such separation of concern by crosscutting the logged classes and methods. Any AOP implementation encapsulates each concern in one place.
Question 8. list out some of C compilers.
Answer. There are so many compilers available in market for Windows operating system and UNIX. We are listing some of them here for your reference.
AMPC
CCS C Compiler
ch
clang
Cygwin
Digital mars
GCC compiler
MikroC Compiler
Portable C Compiler, Power C, QuickC, Ritchie C Compiler, Small-C
Question 9. What is Windows DNA architecture?
Answer. Windows Distributed Internet Applications architecture provides a robust, efficient solution to enable windows platform and Internet to work together using certain technologies like DHTML and COM.
– It also makes the application manageable and easier to update.
The three tiers of Windows DNA are:
- Presentation or User Interface
- Business Logic
- Data Storage
– These three tiers are separations within the application.
– It provides the benefit of accessing the application at any time or any place.
Question 10. Is C language case sensitive?
Answer. Yes. C language instructions/commands/functions and everything used in C program are case sensitive.
Question 11. What is three tier architecture?
Answer. Three tier architecture typically consists of a client, server and “agent” between them. The agent is responsible for gathering the results and returning a single response to the agent. Such architecture increases performance, reusability and scalability of the application.
The three layers include :
Presentation layer : This is the topmost layer used to display the information to the user (client). Information is retrieved by communicating with the other layers depending on user events.
Application layer : This is where the logic resides. Processing on the business logic is done thereby controlling applications functionality.
Data layer : This is where the data resides. Typically consists of the database servers. The data here is independent of the business logic.
Question 12. what is data type in C?
Answer. Data types in C language are defined as the data storage format that a variable can store a data to perform a specific operation.
Data types are used to define a variable before to use in a program.
Size of variable, constant and array are determined by data types.
We have given some very important interview questions above. If you have still any queries then you can comment below. We here at Alpigni are always happy to help you.