Blade logic interview question.
1st round is a written tests with 15 multiple questions
from c and c++. All are simple basic question.
Like int main ()
{
Int i=65;
Return printf(ā%cā, i);
}
2nd and 3rd round is technical interview.
The position for which I was interview was core UNIX and c.
Yes it is for system programming.
The company has product name blade server. For their server
they are creating their own command for their purpose.
Example cd command.
We can implement it in a c program by using the chdir()
function.
So the question asks related to PID, fork, pipe, shared
memory, signal.
Write a program in c which will act as cp command.
Answer / sb1234
Blade logic interview question.
1st round is a written tests with 15 multiple questions
from c and c++. All are simple basic question.
Like int main ()
{
Int i=65;
Return printf(ā%cā, i);
}
2nd and 3rd round is technical interview.
The position for which I was interview was core UNIX and c.
Yes it is for system programming.
The company has product name blade server. For their server
they are creating their own command for their purpose.
Example cd command.
We can implement it in a c program by using the chdir()
function.
So the question asks related to PID, fork, pipe, shared
memory, signal.
Write a program in c which will act as cp command.
Is This Answer Correct ? | 11 Yes | 7 No |
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
i have a written test in tomorrow
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Explain what are multibyte characters?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the purpose of #pragma directives in C?
sir, i cannot find the way how to write aprogram by using array on queue
What is scope and lifetime of a variable in c?
Explain what is the purpose of "extern" keyword in a function declaration?
How can I make sure that my program is the only one accessing a file?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the size of array float a(10)?