abcD+abcd+aBCd+aBCD then the simplified function is ( Capital letters are copliments of corresponding letters A=compliment of a) [a] a [b] ab [c] abc [d] a(bc)* [e] mone (bc)*=compliment of bc
6 12181My question is ..I have around 1.5 yrs of testing exp and got a call from NDS on Monday, bangalore . Can anybody plz provide me the apptitude questions asked in the written test? I am weak in apptitude :(......plzzzz help...waiting for you reply at the earliest
2462Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
3 8429main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 33715#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 47780fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
17 21939#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
6 11025i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
2215Three boxes labeled as red, blue and mixed.These labels are incorrect.one box contains red balls and another box contains blue balls and remaining one box contains both red and blue balls. Pickup one ball from any box(u should pickup ball only once) and name the correct labels.
7 944951.what is verifacation,validation,how its achieved? 2.What is test techniques& strategy? 3.what is error,fault,failure? 4.what is Reviews,Walkthrough,Inspection & Audit? 5.What is Change management,Configuration management,Version control,Test harness? 6.Importance of Severity,Priority,explain Bug life cycle? 7.Difference between use case & test case with example? 8.When should stop testing? 9.Write a test case for online banking application in the topics user login,security,transaction to other accout,data protection. 10.If the software is tested but all the bugs was not fixed,will you release this software?If yes/No then why?
2070Post New NDS Interview Questions
Is all the memory freed when python exits?
need to join coaching institute in coimbatore tamilnadu ......say me the best coaching for IAS
If hired, what do you believe would be your role and responsibility at Amazon?
what is null hypothesis? why do you consider that?
Is it safe to delete windows setup files?
Which version of python is best?
How to manage the problems occurring in contemporary culture?
How do you check your operating system?
What is a data driven framework?
Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.
Please what do you think i have done wrong when i receive a'No form could be determined in the interest calculation form table for the following arguments' after executing in F.26(Customer Interest Scale) calculating interest.
Why in open-wheel racing cars torsion bars (of suspensions) are removed in case of wet track?
What is the shortcut to copy format in excel?
How python can be used in machine learning?
Plot the pixel histogram( take any image) – count of values versus pixel intensity 0 to 255. You must write this from first principles – do not use the MATLAB hist command (although you may use it for comparison and checking your algorithm’s correctness). Plot the cumulative histogram. Do not use the cumsum function in MATLAB (write your own function to achieve this).