The IT giant Tirnop has recently crossed a head count of
150000 and earnings of $7 billion. As one of the forerunners
in the technology front, Tirnop continues to lead the way in
products and services in India. At Tirnop, all programmers
are equal in every respect. They receive identical salaries
and also write code at the same rate. Suppose 14 such
programmers take 14 minutes to write 14 lines of code in
total. How long will in take 5 programmers to write 5 lines
of code in total ?

Answer Posted / palash kumar saha

14

Is This Answer Correct ?    6 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can static class have constructor?

589


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2172


Can enum be null?

590


I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

1632


State what is encapsulation and friend function?

703






Please send ford technologies placement paper 2 my mail id

1660


What is polymorphism in oop example?

521


What does and I oop mean?

620


What is pure oop?

600


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

1673


What is the difference between abstraction and polymorphism?

620


What do you mean by abstraction?

623


What is multilevel inheritance explain with example?

630


What are the three main types of variables?

606


What is the importance of oop?

618