write a c++ code to overload + and - for a stack class such that + provides push and - provides pop operation
1 6110hi i m bhawna ,a student of mca want to know about what type of technical question has been asked in an interview of mnc's like HCL,TCS,WIPRO
1 2522we convert 66kv to 33kv then 33kv to 11kv,11kv to 440v.why not we convert directly from 66kv to440v?
7 20637Post New HCL Interview Questions
Explain what is OpenSpan?
Explain about different departments of an apparel firm.
What is Corporate finance, Corporate governance, Role of SEBI, Ratio analysis in terms of equity and capital structuring? Please post answers as soon as possible. thankyou.
What does the acronym am stands in radio transmission?
Define network programming?
If given the first and last names of bunch of employees how would you store it and what datatype?
explain Garbage collector’s functionality on unmanaged code
What is opsonisation?
Can the nested class access, the containing class. Give an example?
What is object array in c#?
What is the life cycle methods of android activities?
Is windows phone still a thing?
hello, where can i find the 1st sem mba vtu syllabus old question paper. regards, priya
Tell us bitwise shift operators?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }