Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso BDCOM (China) (Dhâkâ) nel mese di nov 2023
Colloquio
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.
Domande di colloquio [1]
Domanda 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