Answer:
Companies are combining their online business activities with their existing physical presence in order to lower costs of their operations. When both these things are combined labor costs are reduced because with online presence the company has to have limited number of branches, inventory costs are reduced because additional inventories for every physical outlet is not required and delivery costs are reduced because now company don't have to supply the things to all the outlets on regular basis.
Trust of the people is also improved because mostly people are reluctant to order from the brands that only have their online store and donot have any physical presence. Value added services are provided by a company who have both online and offline presence like home delivery and customized offerings.
Answer:
I would say false but I am not for sure
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Explanation:
Thermodynamics system :
Thermodynamics system is a region or space in which study of matters can be done.The system is separated from surroundings by a boundary this boundary maybe flexible or fixed it depends on situations.The out side the system is called surroundings.
Generally thermodynamics systems are of three types
1.Closed system(control mass system)
Only energy transfer take place ,no mass transfer take place.
2.Open system(control volume system)
Both mass as well as energy transfer take place.
3.Isolated system
Neither mass or nor energy transfer take place.
At steady state ,property is did not changes with respect to time.
Answer:
Velocity component in x-direction
.
Explanation:
v=3xy+
y
We know that for incompressible flow


So 

By integrate with respect to x,we will find
+C
So the velocity component in x-direction
.