What is information technology.



What is information technology. ..

Answer / hari

request to responce(communcation)

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More C Interview Questions

2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist

0 Answers  


Why do we use null pointer?

0 Answers  


How do you write a program which produces its own source code as its output?

4 Answers  


Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!

1 Answers  


How can I call fortran?

0 Answers  






What are the advantages of using new operator as compared to the function malloc ()?

0 Answers   NIIT,


the operator for exponencation is a.** b.^ c.% d.not available

5 Answers   TCS,


What is the time and space complexities of merge sort and when is it preferred over quick sort?

0 Answers   Amazon,


What is 'bus error'?

0 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


What is a string?

0 Answers  


write a c program in such a way that if we enter the today date the output should be next day's date.

0 Answers  


Categories