Answer:
The capacity of the drive in Gigabytes equals 1.0737 Gbs
Explanation:
Given there are 1024 tracks per surface.
Number of surfaces = 8
Hence number of tracks in 8 surfaces equals
tracks
Now it is given that there are 256 sectors per track thus the number of sectors in 8192 tracks equals
sectors
Now it is given that there are 512 bytes per sector thus the number of bytes in 2097152 equals
bytes
Converting to gigabytes the capacity of the drive in gigabytes equals 1.0737Gbs
Answer:
50 %
Explanation:
Alleles in dark red kernels: ++ and +-
Alleles in light red kernels: +- and --
genetic cross will result in off springs: +++- ; ++--, +-++, +-+-
Hence 50% offspring will have phenotypes different from parental colors
Using our normal decimal numbering system, the base of a number system, for example 8, tells us two things
1. Each
digit is an integer that uses numbers from 0 to 7. There are 8 possible values
for a digit
2. We
multiply each digit by a power of 8 depending on the position of the digit.
If we use number 112 to (base 8), then;
<span>(1 x 8 to the power of 2)
+ (1 x 10 to the power of 1) + (2 x 8 to the power of 0). </span>
Answer:
The C code is below.
Explanation:
#define amplitude 1
02 #define b 1
03 #define c 200
04 class Sinewave
05 {
06 protected:
07
08 double freq;
09 int y;
10
11 public:
12 Sinewave()
13 {
14
15 }
16 void generateSinewave()
17 {
18 COLORREF yellow = RGB(255,255,0);
19 COLORREF lightblue = RGB(173,216,230);
20
21 // make sure the names match
22 SetConsoleTitle(L"ConGraphics");
23 HWND hWnd = FindWindow(NULL, L"ConGraphics");
24 HDC hDC = GetDC(hWnd);
25
26 //for(int x = 0; x < freq; x++)
27 for(int x = 0;; x++)
28 {
29 // center at y = 200 pixels
30
31 y = amplitude*(int)(sin(x/100.0)*100 + 150);
32 SetPixel(hDC, x, y, lightblue);
33
34
35 }
36
37 }
38 };