Answer:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
int n;
cout<< "Enter the row and column length: ";
cin>> n;
int array_one[n][n];
int array_transpose[n][n];
for (int i = 0; i < n; i++){
for (int j= 0; j < n; j++){
srand((unsigned) time(0));
array_one[i][j] = (rand() % 4000)
array_transpose[j][i] = array_one[i][j];
}
}
}
Explanation:
The C source code has three variables, 'array_one', array_transpose' (both of which are square 2-dimensional arrays), and 'n' which is the row and column length.
The program loops n time for each nth number of the n size to assign value to the two-dimensional array_one. the assign values to the array_transpose, reverse the 'i' and 'j' values to the two for statements for array_one to 'j' and 'i'.
MS Excel is a spreadsheet programme developed by Microsoft in 1985, with the sole purpose of helping businesses compile all their financial data, yearly credit, and yearly debit sheets. Fast forward to the future after 31 years, it is now the most commonly used program for creating graphs and pivot tables.
Answer:
Option (A) is the right answer for factors.
Option (B) is the right answer for factor levels.
Explanation:
As per the scenario, the company wants to see the effect of their new website design on their customers, for which the factor of time spent on the new website is right because it gives the company to acknowledge the data of time spent by a customer on the new website.
To reach the result of the factor, we have to work on the factor level, in which we will compare the time spent on the old website and the new website because it gives the company an idea of customers preferring which website design.
Answer:
c) 2^32 times as many values can be represented.
Explanation:
It's funny, this problem comes from a real-life situation, except it wasn't really foreseen :-) And we will encounter a similar problem in less than 20 years.
The difference in terms of storage capacity from 32-bit integers and 64-bits integers is huge.
A 32-bit integer can store (signed) numbers up to 2,147,483,647. (so over 2 BILLIONS)
A 64-bit integer can store (signed) numbers up to 9,223,372,036,854,775,807 (9 BILLIONS of BILLONS)
The code segment that assigns value to the variable named timer is:
timer = 7.3
<h3>How to write the code</h3>
To assign a value to a variable, we make use of the following syntax:
variable = value
In this case;
The variable is timer and the value is 7.3
Hence, the required code segment is: timer = 7.3
Read more about code segments at:
brainly.com/question/18430675