I applied through university. I interviewed at BDCOM (China) (Dhaka) in Nov 2023
Interview
At first phase they took a written exam. This written exam includes coding skill mainly focus on C language. Majority of the question focus core knowledge of programming like string, pointer. Predict the output.
Interview questions [1]
Question 1
void fun(int x)
{
x = 30;
}
int main()
{
int y = 20;
fun(y);
printf("%d", y);
return 0;
}
A 30
B 20
C Compiler Error
D Runtime Error