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.



Blade logic interview question. 1st round is a written tests with 15 multiple questions from ..

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

Post New Answer

More C Interview Questions

Why can't I perform arithmetic on a void* pointer?

0 Answers  


How can I make it pause before closing the program output window?

0 Answers  


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

1 Answers  


when user give a number it multiply with 9 without useing '+' and '*' oprator

4 Answers  


What is keyword in c?

0 Answers  






Why flag is used in c?

0 Answers  


Where are some collections of useful code fragments and examples?

0 Answers   Celstream,


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

0 Answers  


Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?

8 Answers   Mascot, TCS,


What's wrong with "char *p = malloc(10);" ?

4 Answers  


suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan

1 Answers  


What is meaning of tree

0 Answers  


Categories