if int1 has the value 12, int has the value 18, and int3 has
the value 21, what is the result:
int1 < int2 && int2 < int 3
Answers were Sorted based on User's Feedback
Answer / arikuntha varathan
since 12<18 and also 18<21 the codition becomes true
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / murad shaikh
here int1=12
int2=18 (int=18, is given as int2)
int3=21
so
int1 < int2 && int2 < int3
12 < 18 && 18 < 21
ans = 21;
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / tarun
int1 = 12
int = 18 (not int 2)
int 3 = 21
then 1nt1 <int2, int2 value is not known
also int2< int3 , int2 value is not known
| Is This Answer Correct ? | 0 Yes | 3 No |
Describe the advantages of operator overloading?
How do you establish a has-a relationship?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
Describe the advantage of an external iterator.
can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is <location>somewhere</location> #include <iostream> #include <fstream> #include <string> using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<<location << endl; cout << "Temperature: " << temperature << endl; system("pause"); } string find_field(string myPage,string find_string){ int temp=myPage.find(find_string); if(temp!=string::npos) { cout << "Match found at " << temp << endl; } return "found?"; } ///
Differentiate between realloc() and free().
What is the difference between object-oriented programming and procedural programming?
What are protected members in c++?
What is the error in the code below and how should it be corrected?
Should you pass exceptions by value or by reference?
Why do we use vector in c++?
Write about the retrieval of n number of objects during the process of delete[]p?