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

#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


what is the value of b if a=5; b=++a + ++a

31 Answers   Infosys, TCS, Tech Mahindra,


what is the different between data structure and data type?

1 Answers   Ignou,


Can we change the value of static variable in c?

0 Answers  


for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable

2 Answers  


#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }

1 Answers   Vector India,


Is c easier than java?

0 Answers  


Difference between pass by reference and pass by value?

0 Answers   TCS, TISL,


What are register variables in c?

0 Answers  


Find if a number is power of two or not?

1 Answers  


Which is best book for data structures in c?

0 Answers  


What is the difference between #include and #include 'file' ?

0 Answers  


Categories