Skip to content
Placement Preparation
FACE Prep Campus
For Colleges
For Companies
Placement Preparation
Face Prep Campus
For Colleges
For Companies
ABB Placement Papers(Technical Test Questions)
ABB Placement Papers(Technical Test Questions)
Home > ABB Placement Papers(Technical Test Questions)
Welcome to your ABB Placement Papers(Technical Test Questions)
Name
Phone number
Email
Department
Year of passing
2025
2026
2027
2028
Others
State
What is the output of the following C program? #include int main() { int x = 5; printf("%d %d %d", x++, x++, x++); return 0;
A) 5 5 5
B) 5 6 7
C) Undefined behavior
D) 7 6 5
None
Which of the following sorting algorithms has the best average-case time complexity?
A) Bubble Sort
B) Insertion Sort
C) Merge Sort
D) Selection Sort
None
In electrical circuits, what is the function of a capacitor?
A) Store electrical energy
B) Convert AC to DC
C) Amplify signals
D) Reduce resistance
None
What will be the output of the following Python code? def func(a, b=[]): b.append(a) return b print(func(1)) print(func(2))
A) [1], [2]
B) [1], [1, 2]
C) [1], [1, 2, 3]
D) Syntax Error
None
In a three-phase AC system, the standard phase difference between any two phases is
A) 90°
B) 60°
C) 120°
D) 180°
None
Time's up