Upload Button Icon Add office photos

Filter interviews by

GivingForce Technologies SDE Interview Questions and Answers

Updated 4 Mar 2024

GivingForce Technologies SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anonymous

posted on 4 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Can there be multiple index on a table?
  • Ans. 

    Yes, multiple indexes can be created on a table to improve query performance.

    • Multiple indexes can be created on a table to speed up data retrieval for different types of queries.

    • Each index can be created on one or more columns of the table.

    • Indexes can be unique or non-unique, depending on the requirements.

    • Examples: creating separate indexes on 'name' and 'age' columns of a 'users' table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study mysql for this.

Interview questions from similar companies

SDE Interview Questions & Answers

Oracle user image Anonymous

posted on 5 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Leetcode- Climb stairs (medium)
  • Q2. Reverse linkedlist
Round 2 - Technical 

(1 Question)

  • Q1. Leetcode- Rotten oranges matrix
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online coding test with 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. What is storage differnece for files in ram
  • Ans. 

    Files in RAM are stored temporarily for quick access by the CPU.

    • RAM (Random Access Memory) is volatile memory used for temporary storage of data and instructions.

    • Files stored in RAM are accessed much faster than files stored on a hard drive.

    • RAM is cleared when the computer is turned off, so files stored in RAM are not persistent.

    • Examples of files stored in RAM include open applications, running processes, and cached da

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Oracle user image kilari harshavardhan

posted on 13 Oct 2023

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

Basic dp and graph questions

Round 2 - Technical 

(2 Questions)

  • Q1. Left leaf nodes sum in a binary tree
  • Ans. 

    Calculate the sum of all left leaf nodes in a binary tree.

    • Traverse the binary tree using depth-first search (DFS)

    • Check if a node is a leaf node and if it is a left child

    • Add the value of the left leaf node to the sum

    • Recursively traverse the left and right subtrees

  • Answered by AI
  • Q2. About my past projects
Round 3 - HR 

(1 Question)

  • Q1. Discussion about myself and my projects

Interview Preparation Tips

Interview preparation tips for other job seekers - keep grinding on dsa and dbms to crack it.

Skills evaluated in this interview

SDE Interview Questions & Answers

Adobe user image Anonymous

posted on 5 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

DSA,COMPUTER FUNDAMENTALS

Round 3 - One-on-one 

(1 Question)

  • Q1. TELL ABOUT TREE TRAVERSALS
  • Ans. 

    Tree traversals are methods used to visit each node in a tree data structure in a specific order.

    • Inorder traversal: Visit left subtree, then root, then right subtree

    • Preorder traversal: Visit root, then left subtree, then right subtree

    • Postorder traversal: Visit left subtree, then right subtree, then root

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Oracle user image Anonymous

posted on 29 Dec 2022

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

General questions like reasoning and maths

Round 3 - Coding Test 

General DSA questions were asked like Linked list etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont panic and give yr best to achieve a goal in your life

SDE Interview Questions & Answers

Oracle user image Anonymous

posted on 22 Oct 2023

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude and technical questions

Round 3 - Coding Test 

2 coding questions with choice of language

Round 4 - Technical 

(2 Questions)

  • Q1. Technical questions
  • Q2. Programming questions

SDE Interview Questions & Answers

Adobe user image Anonymous

posted on 5 Jun 2015

Interview Questionnaire 

18 Questions

  • Q1. Detail questions on copy constructors were asked
  • Q2. Deep copy, shallow copy (need for explicitly writing copy constructor)
  • Q3. Operating system concepts such as memory Management and semaphores, critical section
  • Q4. Overloading, Overriding(Function and operator both)
  • Q5. Virtual Functions
  • Q6. Resume based interview
  • Q7. Some more discussions on virtual classes and functions, overloading, overriding, copy constructors
  • Q8. Puzzles such as no of 0s in 100!, and water- jug problem
  • Q9. Merge two double linked list. What will be the difference if they are singly linked list
  • Ans. 

    To merge two double linked lists, traverse to the end of the first list and connect it to the head of the second list.

    • Traverse to the end of the first list

    • Connect the last node of the first list to the head of the second list

    • If the lists are singly linked, we need to traverse to the end of the first list and connect it to the head of the second list. But we also need to keep track of the last node of the first list to ...

  • Answered by AI
  • Q10. Make a data structure such that it can store an image dynamically
  • Ans. 

    A dynamic data structure for storing images as arrays of strings.

    • Use a 2D array of strings to represent the image pixels.

    • Implement resizing methods to adjust the size of the image.

    • Include methods for adding, removing, and modifying pixels.

    • Consider using compression techniques to reduce memory usage.

    • Support various image formats such as JPEG, PNG, and BMP.

  • Answered by AI
  • Q11. Copy fixed no of bytes from source to destination and its test cases( ex: copy(source, destination,bytes) so now command copy(a,a+3,8) will not give correct results in some cases and copy(a,a-4,8) will n...
  • Ans. 

    Copying fixed number of bytes from source to destination and its test cases.

    • Ensure source and destination are not overlapping

    • Check if the number of bytes to be copied is greater than the available space in the destination

    • Handle cases where source or destination is NULL

    • Test cases should cover all possible scenarios including edge cases

  • Answered by AI
  • Q12. Some puzzles like weighing problem..N Balls given all of same weight except one..What is the max value of N so that u can figure out the ball with less weight in 2 rounds or 3 rounds
  • Q13. Some HR questions about family and yourself
  • Q14. Detail discussion on virtual functions
  • Q15. Optimized fibonacci program
  • Ans. 

    An optimized Fibonacci program computes Fibonacci numbers efficiently.

    • Use memoization to store previously computed values.

    • Use iterative approach instead of recursive approach.

    • Use bitwise operators to perform arithmetic operations faster.

    • Use matrix exponentiation to compute Fibonacci numbers in logarithmic time.

  • Answered by AI
  • Q16. Solution for solving problems generated by virtual functions
  • Ans. 

    Virtual functions can cause problems due to their dynamic nature, but can be solved using various techniques.

    • Use pure virtual functions to ensure all derived classes implement the function

    • Use interface classes to define a common interface for all derived classes

    • Use smart pointers to manage memory and avoid memory leaks

    • Use virtual destructors to ensure proper destruction of objects

    • Avoid excessive use of virtual function

  • Answered by AI
  • Q17. Some good questions on compile time error check, link time error check and run time error check
  • Q18. One Image puzzle

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

GivingForce Technologies Interview FAQs

How many rounds are there in GivingForce Technologies SDE interview?
GivingForce Technologies interview process usually has 1 rounds. The most common rounds in the GivingForce Technologies interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.5
 • 284 Interviews
Salesforce Interview Questions
4.1
 • 264 Interviews
Adobe Interview Questions
4.0
 • 246 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Freshworks Interview Questions
3.5
 • 152 Interviews
ServiceNow Interview Questions
4.2
 • 115 Interviews
NICE Interview Questions
3.6
 • 74 Interviews
View all
QA Engineer
9 salaries
unlock blur

₹3.5 L/yr - ₹5.5 L/yr

Software Engineer
6 salaries
unlock blur

₹3 L/yr - ₹6.6 L/yr

System Administrator
4 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Technical Product Analyst
4 salaries
unlock blur

₹12 L/yr - ₹19.5 L/yr

Business Analyst
3 salaries
unlock blur

₹10.5 L/yr - ₹12.3 L/yr

Explore more salaries
Compare GivingForce Technologies with

KPIT Technologies

3.5
Compare

Intellect Design Arena

4.1
Compare

Oracle Cerner

3.7
Compare

Oracle Financial Services Software

3.6
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