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 Posted / 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 View All Answers
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Differentiate between null and void pointers.
What is array within structure?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
How can you pass an array to a function by value?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Why is c called a structured programming language?
What is the importance of c in your views?
What is the best way to comment out a section of code that contains comments?
What is the benefit of using #define to declare a constant?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
How can I find out if there are characters available for reading?
Why c language is called c?