Answer:
yes, it is
Explanation:
The sequence: (+4)
23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83
Hope this helps! :)
Answer:
a) 22.5number
b) 22.22 m length
Explanation:
Given data:
Bridge length = 500 m
width of bridge = 12 m
Maximum temperature = 40 degree C
minimum temperature = - 35 degree C
Maximum expansion can be determined as

where , \alpha is expansion coefficient
degree C
SO, 

number of minimum expansion joints is calculated as

b) length of each bridge

Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
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));
}
}
Answer:

Explanation:
given data:
height of tank = 60cm
diameter of tank =40cm
accelration = 4 m/s2
suppose x- axis - direction of motion
z -axis - vertical direction
= water surface angle with horizontal surface
accelration in x direction
accelration in z direction
slope in xz plane is



the maximum height of water surface at mid of inclination is



the maximu height of wwater to avoid spilling is

= 60 - 8.2

the height requird if no spill water is 