Answer:
The correct option is np.array
Explanation:
Numpy is a library to perform numerical calculation in python. It allows us to create and modify vectors, and make operations on them easily. Numpy arrays are an excellent alternative to python lists. Some of the key advantages of numpy arrays are that they are fast, easy to work with, and offer users the opportunity to perform calculations through full arrays.
To start using numpy, the library must be imported:
import numpy as np
The most common way to create a vector or matrix already initialized is with the np.array function, which takes a list (or list of lists) as a parameter and returns a numpy matrix. The numpy arrays are static and homogeneous typing. They are more efficient in the use of memory.
Example:
list = [25,12,15,66,12.5]
v = np.array (list)
print (v)
Answer:
Written in C++
#include<iostream>
using namespace std;
int main()
{
int N;
cout<<"Length of Array: ";
cin>>N;
int A[N], B[N];
for(int i =0;i<N;i++) {
cin>>A[i];
}
for(int i =0;i<N;i++) {
B[i] = A[i];
}
for(int i =0;i<N;i++) {
cout<<B[i]<<" ";
}
return 0;
}
Explanation:
This line declares the length of the Array; N
int N;
This line prompts user for length of array
cout<<"Length of Array: ";
This line gets user input for length of array
cin>>N;
This line declares array A and B
int A[N], B[N];
The following iteration gets input for Array A
for(int i =0;i<N;i++) {
cin>>A[i];
}
The following iteration gets copies element of Array A to Array B
for(int i =0;i<N;i++) {
B[i] = A[i];
}
The following iteration prints elements of Array B
for(int i =0;i<N;i++) {
cout<<B[i]<<" ";
}
Answer:
Physical / Data link layer
Explanation:
If two computers (A & B) are directly connected through Ethernet cable. A is sending data to B, the data would be transmitted if the network is clear but if the network is not clear, the transmission would wait until the network is clear.
The Open Systems Interconnection model (OSI model) has seven layers each with its own function.
The physical layer is the first layer responsible for data transmission over a physical link. The data packets are converted to signals over a transmission media like ethernet cable.
The data link layer is the second layer in the OSI layer responsible for transmission of data packets between nodes in a network. It also provides a way of detecting errors and correcting this errors produced as a result of data transmission.
missing DLL files
installation issues
configuration issues
applications running slowly
kernel panic
power cords not being plugged in
The common problems experienced with software applications will be missing DLL files, installation issues, configuration issues, applications running slowly, and kernel panic. Then the correct options are B, C, D, E, and F.
Today's world depends heavily on technology. Technology now controls not just how businesses run but also how quickly many different sectors across the world are developing. The pace of technical development dictates the rate of development and company growth, leaving human progress and economic expansion at the whim of technology.
Some of the common problems are as follows:
The normal issues experienced with programming applications will be missing DLL documents, establishment issues, arrangement issues, applications running gradually, and part alarms. Then the right choices are B, C, D, E, and F.
More about the common problems with software applications link is given below.
#SPJ12
Answer:
All but the top and bottom on edge 2020
Explanation:
Answer:
'='
Explanation:
The equal ('=') is the character that is used to assign the value in the programming.
In the programming, there is a lot of character which has different meaning and uses for a different purpose.
like '==' it is used for checking equality between the Boolean.
'+' is a character that is used for adding.
'-' is a character that is used for subtraction.
similarly, '=' used for assigning.
for example:
a = a + b;
In the programming, the program evaluates the (a + b) first and then the result assigns to the variable.
Answer:
The answer is "in the form of design, color and graphic".
Explanation:
The wireframe is also recognized as 'skeleton', it is a static, low-fidelity description of various layouts, which provides shapes to the component. It is indeed a visualization of even an interface using only basic shapes.
It is a 2D illustration of a site user interface, which primarily focuses on capacity planning and priority of information, features available, and role expectations like, storyboards which do usually not include design, color, or graphics.
Answer:
box
Explanation:
i just took the quiz and that's the correct answer they're looking for :)