What do you mean by team??
Answers were Sorted based on User's Feedback
Answer / sarma
as every one knows tteam is a literal word that word
meaning group of persons working together for attaing their
common goal.
| Is This Answer Correct ? | 12 Yes | 5 No |
Answer / raju thapa
TEAM -
T - Together
E - Everyone
A - Achieves
M - More
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shaili kaur
A team is a group of people working together towards a common goal.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kratikagoel
when people perform a task together is called team.
| Is This Answer Correct ? | 1 Yes | 3 No |
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
code for selection sort?
Find greatest number out of 10 number without using loop.
progrem to generate the following series 1 12 123 1234 12345
What are 3 types of structures?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How does #define work?
how to find the given number is prime or not?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Can a pointer be null?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word