Upload Button Icon Add office photos

Filter interviews by

Edgefx Technologies Interview Questions and Answers

Updated 26 Sep 2024

Edgefx Technologies Interview Experiences

Popular Designations

3 interviews found

Interview Questionnaire 

3 Questions

  • Q1. Description of microcontrol
  • Ans. 

    A microcontroller is a small computer on a single integrated circuit that contains a processor, memory, and input/output peripherals.

    • Microcontrollers are used in a wide range of applications, from simple consumer electronics to complex industrial control systems.

    • They are often programmed using low-level languages such as C or assembly.

    • Some popular microcontroller families include the Atmel AVR, PIC, and ARM Cortex-M.

    • Mi...

  • Answered by AI
  • Q2. Have you worked on Proteus
  • Q3. Description of timers and interprets
  • Ans. 

    Timers are devices that measure time intervals and can be used for various purposes.

    • Timers can be digital or analog

    • They can be used in industrial automation to control processes

    • Interprets are used to convert the timer output into a readable format

    • Examples of interprets include binary-coded decimal (BCD) and hexadecimal

    • Timers can also be used in sports to measure the duration of events

  • Answered by AI

Production Engineer Interview Questions asked at other Companies

Q1. How to solve the problem in robot means how to detect fault?
View answer (9)

Intern Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2024

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

General quant,verbal

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They asked about my coding projects
Round 2 - HR 

(1 Question)

  • Q1. General asessment questions

Interview Preparation Tips

Interview preparation tips for other job seekers - just generalize your top projects well

Student Intern Interview Questions asked at other Companies

Q1. Have you finished the database and data structures courses in you study program?
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was simple.

Round 2 - Technical 

(1 Question)

  • Q1. Asked 2 questions from recursion.
Round 3 - HR 

(1 Question)

  • Q1. Simple HR round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Had assignment for ror and react basic crud

Round 2 - Technical 

(2 Questions)

  • Q1. Elevator problem in java
  • Ans. 

    Elevator problem in Java

    • Create an Elevator class with methods for moving up and down

    • Use a Queue to keep track of the floors that need to be visited

    • Implement a scheduling algorithm to determine the order of floor visits

  • Answered by AI
  • Q2. Horse race puzzle solution

Interview Preparation Tips

Interview preparation tips for other job seekers - keep ur code well defined and structured to get distinguished

Skills evaluated in this interview

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

I applied via Campus Placement 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 - Coding Test 

3 Coding question medium level

Round 3 - Technical 

(1 Question)

  • Q1. Asked 3 coding queston and some basis CS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

45 mins, Basic aptitude , comprehension and decision making questions

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to databases, DSA - medium, SQL Queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic java questions along with aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concept, java functionalities, spring framework.
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr questions, when you can join, expected ctc...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

Edgefx Technologies Interview FAQs

How many rounds are there in Edgefx Technologies interview?
Edgefx Technologies interview process usually has 1-2 rounds. The most common rounds in the Edgefx Technologies interview process are Technical, HR and Aptitude Test.
What are the top questions asked in Edgefx Technologies interview?

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

  1. Description of timers and interpr...read more
  2. Description of microcontr...read more
  3. they asked about my coding proje...read more

Tell us how to improve this page.

Edgefx Technologies Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 140 Interviews
Data Entry Interview Questions
4.1
 • 97 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
UTL Solar Interview Questions
3.5
 • 43 Interviews
View all

Edgefx Technologies Reviews and Ratings

based on 4 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.8

Job security

4.9

Company culture

4.8

Promotions

4.9

Work satisfaction

Explore 4 Reviews and Ratings
Compare Edgefx Technologies with

Robolab Technologies

4.2
Compare

Tenet Technetronics

3.4
Compare

Electrobot

5.0
Compare

Vigyan Ashram

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