lab2 Flashcards

1
Q

………………………. examples of costly vendors available online

A

Ifort, pgf90, nagf90, fastf90, f90(fujitsu)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

. Ifort, pgf90, nagf90, fastf90, f90(fujitsu) are examples of costly vendors available online. Those compilers are more suitable for

A

specific uses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

For example the vendor ifort is created by

A

intel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For example the vendor ifort is created by intel and is a suitable compiler for the

A

the processor of intel products

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

. For example the vendor ifort is created by intel and is a suitable compiler for the processor of intel products, which results in

A

a faster compilation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Pgf90 is suitable for

A

EMT processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

nagf90, fastf90 and f90 is suitable for

A

Victorian processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When compiling all of the “compilers” create a file “a.out” which is written in

A

in a binary (machine language).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how to write square root

A

sqrt(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

a to the power2

A

a*a or a**2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

while “Sqrt(u**2+v**2)” requires

A

an algorithm by the machine to process it which takes longer to process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

sine is writen as

A

sin(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

cos is writen as

A

cos(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

tan is writen as

A

tan(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

arctangent is written as

A

atan(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

absolute value is writen as

A

abs(a)

17
Q

exponential is written as

A

exp(a)

18
Q

logarithm is written as

A

log(x)

19
Q

save the value written on the screen

A

read*,a

20
Q

when you ask the user to write a value your program is

A

more dynamic