In CMM or CMMI certified organizations,we assess only the
standard software processes of the organization. We do not
assess the organizations other functional departments like
HR or Admin. Then how can we certify the entire
organization as CMM level company?? We have assessed only
software related activities. Right. There is no relation
with other departments like Accounts, HR or Admin.
Then how can we claim that the whole company is a CMM
certified company?
Answer / praso1
rwrewrwersew streftr frererwawreaewresw eftrseftrsew
seftsewftr eteswt eswtgewtew teetetetgsfgfds
sgsdgdfsgdfgdfgdfgfdgdfgfdg dsgdfzgdfgdfgdfg
| Is This Answer Correct ? | 0 Yes | 1 No |
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
how to swap two integers 1 and 32767 without using third variable
Which command is more efficient? *(ptr+1) or ptr[1]
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
Is it fine to write void main () or main () in c?
What are dangling pointers in c?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Describe dynamic data structure in c programming language?
Compare interpreters and compilers.
how can make variable not in registers
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?