Answer:
Joint Application Development (JAD)
Explanation:
Joint Application Development is a method of application development that lay emphasis on the up-front aspect of the application development cycle whereby steady communication between the designers and the intended users of the application under development by coming together in collaborative workshop styled discussions known as JAD sessions involving the mediators, facilitator, observers, end users, experts, and developers. As such with JAD process application development result in fewer errors high quality and is completed in lesser time.
Answer:
In reality, a diluted type of acetone that dissolves plastics and coating is Nail polish removers.
Explanation:
The chemical composition of the material has permanently changed, nothing else than if you had shot it. No repair but replacement is available.
Acetone does not get along with plastics.
This classic timelapse video shows just how cheap plastic acetone is.
When it's out, I have my new AirPods Pro. I got a odd smell when I opened the box when I received it. The little one is solid and chemical. It's new, I guess, and after days it will be gone.
But after ten days of use it doesn't. And the smell remains strong. It won't go quickly, I believe.
Instead I noticed that the smell is often shaping the silicone tips.
About 8 hours a day I use this AirPods Pro. Is it possible for a long time to use this smelling tip?
Actually, I must say they are soft and work well for noise cancelation, I love this silicone tip. If the strange smell doesn't hurt. To me, that's good.
Answer:
False
Explanation:
The private member of a class is not accessible by using the Dot notation ,however the private member are those which are not accessible inside the class they are accessible outside the class .The public member are accessible inside the class so they are accessible by using the dot operator .
<u>Following are the example is given below in C++ Language </u>
#include<iostream> // header file
using namespace std;
class Rectangle
{
private:
double r; // private member
public:
double area()
{ return 3.14*r*r;
}
};
int main()
{
Rectangle r1;// creating the object
r1.r = 3.5;
double t= r1.area(); // calling
cout<<" Area is:"<<t;
return 0;
}
Output:
compile time error is generated
<u>The correct program to access the private member of class is given below </u>
#include<iostream> // header file
using namespace std;
class Rectangle
{
private:
double r; // private member
public:
double area()
{
r1=r;
double t2=3.14*r2*r2;
return(t2); // return the value
}
};
int main()
{
Rectangle r1;// creating the object
r1.r = 1.5;
double t= r1.area(); // calling
cout<<" Area is:"<<t;
return 0;
}
Therefore the given statement is False
Answer:
Following are the program in the Java Programming Language.
public class Main // declared class
{
public void hopscotch(int x) // function definition
{
int count=0; // variable declaration
for (int j=0; j<x; j++) // iterating over the loop
{
System.out.println(" " + (++count)); // print the value of count
System.out.println((++count) + " " + (++count));
}
System.out.println(" " + (++count));
}
public static void main(String[] args) // main method
{
Main ob=new Main(); // creating object
ob.hopscotch(3); // calling hopscotch method
}
}
<u>Output</u>:
1
2 3
4
5 6
7
8 9
10
Explanation:
Here, we define a class "Main" and inside the class, we define a function "hopscotch()" and pass an integer type argument in its parentheses and inside the function.
- We set an integer variable "count" and assign value to 0.
- Set the for loop which starts from 0 and end at "x" then, print space and value inside the loop, again print value then space then value, then repeat the 1st print space then value.
- Finally, set the main function "main()" and inside the main function, we create the object of the class "ob" then, call the function " hopscotch()" through the object and pass the value 3 in its parentheses.