HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I
NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
Answer Posted / pbraju
I am a person of immence dedication and innovation. for me
it gives satisfaction in implementing the innovative ideas
and do things in way which not only finishes the task but
also help the organisation to save time and cost. I like to
take up challenges and win over them. for me it excites me
to explore areas of unknown teritories. it gives me
pleasure to share my ideas and learnings with team.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is type qualifiers?
What are the 5 data types?
What are the 4 types of programming language?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is fortran still used in 2018?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Explain the advantages of using macro in c language?
Explain how can I pad a string to a known length?
How is pointer initialized in c?
How does sizeof know array size?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
Can we use any name in place of argv and argc as command line arguments?
Linked lists -- can you tell me how to check whether a linked list is circular?