• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

Sudo Placement [1.5]

Question 11

Which testing technique is used to check if critical functionalities of the program is working fine?
  • Monkey Testing
  • Gorilla Testing
  • Smoke Testing
  • None of the above

Question 12

What will be the output of following code : [sourcecode] #include using namespace std; #define x 5/2.0 #define y 3/2.0 // Function 1 int add(float a, float b){ cout << "Function 1"; return a + b; } // Function 2 int add(double a, double b){ cout << "Function 2"; return a + b; } // Function 3 int add(int a, int b){ cout << "Function 3"; return a + b; } // Driver Function int main() { cout << add(x, y) << endl; return 0; } [/sourcecode]
  • Function 2 4
  • Function 3 4
  • Function 1 4
  • None of these

Question 13

Which of the following are the steps of waterfall model in order?
  • Planning, Communication, Modeling, Construction, Deployment
  • Communication, Planning, Modeling, Construction, Deployment
  • Construction, Planning, Modeling, Communication, Deployment
  • Communication, Construction, Modeling, Planning, Deployment

Question 14

Can struct be inherited in C++ 14 ?
  • Yes
  • No
  • Depends
  • None of these

Question 15

Which of the following testing technique follows the concept of Abstraction?
  • White Box Testing
  • Black Box Testing
  • Alpha Testing
  • Coal Testing

There are 15 questions to complete.

Last Updated :
Take a part in the ongoing discussion