Worddesign allows you to add formatting such as shapes and colours to text
<span>Landforms that could be created at convergent boundaries would consist of: volcanoes, mountains, trenches, volcanic islands, and even deserts could result from effects of converging boundaries. The landforms are mountains.</span>
The Jenkins tool is often used by DevOps to facilitate the development, testing, and deployment of new software.
<h3>What is software development?</h3>
The practice of conceptualizing, planning, designing, coding, documenting, testing, and bug-fixing that went into building and maintaining applications, platforms, or other software modules is known as software creation.
Jenkins is a Java-based continuous integration/continuous delivery and deployment system that is free and open-source.
Thus, the Jenkins tool is often used by DevOps to facilitate the development, testing, and deployment of new software.
Learn more about software development here:
brainly.com/question/3188992
#SPJ4
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
string in;//string in for taking input...
cout<<"Do you want to continue ?"<<endl;
getline(cin,in);//taking input from the user...
if(in=="y"||in=="Y"||in=="yes"||in=="OK"||in=="Why not?")//conditions..
cout<<"OK"<<endl;
else if(in=="No")
cout<<"terminating"<<endl;
else
cout<<"Bad input"<<endl;
return 0;
}
Explanation:
I have taken a string in.
Then taking input from user.
Checking the conditions using if else if ladder.