代写CS210 Fall 2024: PS4A代做留学生SQL 程序

CS210 Fall 2024: PS4A

Multiple Choice

1.  (1 point)  An executable created by the C toolchain    ⃝  requires preprocessing before it can be run ⃝  can be run on any operating system

⃝  is composed of C statements ⃝  can be run on any computer

⃝  all of the above     ⃝  none of the above

2.  (1 point)  What must be passed to printf to send bytes to standard output ⃝  a format specifier

⃝  a char pointer to a format string   ⃝  file descriptor of standard output ⃝  size of bytes you want to send

⃝  all of the above     ⃝  none of the above

3.  (1 point)  By the C calling conventions,  if more than 6 arguments are passed into a C function, the remaining ones, that could not be assigned to registers, are pushed onto the stack

⃝  True  ⃝  False

4.  (1 point)  Two’s complement

  is convention that allows positive and negative quantities to be represented using a binary vector

  does not support additive inverses

⃝  defines both a positive and negative zero value using a single binary vector ⃝  defines the same amount of positive and negative values

⃝  all of the above     ⃝  none of the above

5.  (1 point)  When using the C language the only way to send a sequence of ASCII encoded data to stan- dard out is printf.

⃝  True  ⃝  False

6.  (1 point)  The indirection operator, in C,

⃝  provides access to the value that a pointer is pointing to ⃝  provides the address of a value

⃝  provides the type of a value ⃝  provides the size of a value

⃝  all of the above     ⃝  none of the above

7.  (1 point)  On Linux the heap is

  automatically created an added to every process

⃝  is established using an system call ⃝  is of a fixed size

⃝  is used for all initialized data ⃝  all of the above

  none of the above

8.  (1 point)  A function can be defined in many files ⃝  True

⃝  False

9.  (1 point)  In a C function, a local variable

⃝  will be placed in the heap if there are no available registers or space on the stack ⃝  will be assigned to a register or placed on the stack

  must be place on the stack

⃝  must be assigned to a register ⃝  none of the above

10.  Provide the following value of the C expressions as a 32bit hexadecimal value.

DO NOT SKIP LEADING ZEROS:

Eg. a value of 0 should be written as 00000000 and 1 as 00000001.

Assume a 64 bit computer that uses 2’s complement representation, INT MAX and INT MIN are de- fined as the computer’s signed 32 bit integer representation maximum and minimum value respectively, and:

int  x  = INT MIN, y = 0xdecafbad, z  = INT MAX, i = (sizeof(char *)  +  sizeof int   *));

(a)  (1 point)  x : 0x                                                                                         

(b)  (1 point)  y : 0x                                                                                         

(c)  (1 point)  z : 0x                                                                                          

(d)  (1 point)  i : 0x                                                                                         

(e)  (1 point)  z<<3 : 0x                                                                                         

(f)  (1 point)  z<<((i>>1)−1 ) : 0x                                                                                         

(g)  (1 point)  ˜0  == (z  + INT MIN) : 0x                                                                                        

(h)  (1 point)  y  & 0 xffff  : 0x                                                                                         

(i)  (1 point)  y  >> 16 : 0x                                                                                      

(j)  (1 point)  (y>>16) |  0 xffff : 0x                                                                                       

(k)  (1 point)  (˜(0 x10>>2)+1) == −(i>>2) : 0x                                                                                         

(l)  (1 point)   (˜ z+1) + −1 : 0x                                                                                         

(m)  (1 point)   (˜((˜ x)<<1)) & y : 0x                                                                                      

(n)  (1 point)  (( y<<3)+INT MIN) ˆ ((y<<3)+INT MIN) : 0x                                                                                         

11.  (5 points)  Given the  assembly code on the left fill in the blanks in the C code on the right that it corresponds to.

1 . i n t e l s y n t a x n o p r e f i x

2 . t e x t

3 . g l o b l fu n c

4 fu n c :

xor eax , eax

xor r8d , r8d

7 .L2 :

add r8d , DWORD PTR A[0+ r a x *4]

i n c r a x

10 cmp rax , 10

11 jne .L2

12 mov eax , r8d

13 r e t

1

# d e f i n e B

3

# d e f i n e T

5

6 T A[B ] ;

7

8 T fu n c ( )

{

10 i n t i ;

11 T s = 0 ;

12

13 f o r ( ;

14

15 i < B ;

16

17 ) {

18

19

20 s = ;

21 }

22 return s ;

23 }


12.  (6 points)  Given the  assembly code on the left fill in the blanks in the C code on the right that it corresponds to.

1 . i n t e l s y n t a x n o p r e f i x

2 . t e x t

3 . g l o b l fu n c


4 fu n c :

xor rax , r a x

6 .L2 :

t e s t r d i , r d i

j e .L7

mov rcx , DWORD PTR [ r d i +8]

10 mov rdx , DWORD PTR [ r d i +16]

11 cmp r s i , 12

12 jg .L3

13 add rax , DWORD PTR [ r d i ]

14 mov r d i , r c x

15 jmp .L2

16 .L3 :

17 add rax , DWORD PTR [ r d i +4]

18 mov r d i , rdx

19 jmp .L2

20 .L7 :

21 r e t

1 s t r u c t S {

2 i n t x ;

3 i n t y ;

4 s t r u c t S * f ;

5 s t r u c t S *b ;

6 } ;

7

8 i n t

9 fu n c ( s t r u c t S *h ,

10 long long v )

11 {

12 i n t r = 0 ;

13

14 while ( h != ) {

15 i f ( v > ) {

16

17 r = r + ;

18

19 h = ;

20 } e l s e {

21

22 r = r + ;

23

24 h = ;

25 }

26 }

27 return r ;

28 }

13.  (4 points)  Given the  assembly code on the left fill in the blanks in the C code on the right that it corresponds to.


14.  Present the output for each line from the below program. Assuming that it is compiled and executed on

a 64 bit, little endian computer that uses 2’s complement representation.

#include  <stdio .h>

typedef  unsigned  char  *byte_pointer ;

void  show_bytes (byte_pointer  start ,  int  len)  { int  i ;

for (i=0;  i<len;  i++)

printf ( "  % .2x " ,  start [i]);

printf ("\n " ); }

int  main (void) {

unsigned  int  ux  =  0xfffffff8; int  x  =  ux ;

long  long  unsigned  uy  =  ux ; long  long  y  =  x ;

ux  =  ux  >>  1; x    =  x  >>  1;

printf ( "%lu  %lu\n " ,  sizeof (ux),  sizeof (uy )); show_bytes ((byte_pointer)&uy ,  sizeof (uy ));

printf ( " 0x%x  0x%llx\n " ,  x ,  y ); printf ( "%d  %lld\n " ,  x ,  y );

return  0; }

(a)  (2 points)                                                                                                                                               

(b)  (2 points)                                                                                                                                               

(c)  (2 points)                                                                                                                                               

(d)  (2 points)                                                                                                                                               

15.  Assume that the code below is compiled for and executed on a 64-bit little endian computer.  Please

provide the hex byte value and name of the variable that each address indicated corresponds to.  For addresses that correspond to arrays please indicate the array name and index the address belongs to.  Eg.  str[4].  If an address does not correspond to a variable leave the name blank empty. For char variables the value should be provide as an ASCII character. Eg.  ’a’  . For all other variables the values should be provide as a two digit hex value.

char    foo []  =  "DEADBEEF " ; int       j    =  0xDEADBEEF;

short  s    =  0xDEED;

short  *  sp  =  &s ;

char    *  cp  =  &(foo [12]);

void  func () {

*cp  =  ’D ’ ;

cp  =   (char  *)&s ; cp  =  cp  -  2;

*cp  =  0xea ;

*sp  =  0x4224; }

Variable

Address of Variable

foo

0x0000555555558010

j

0x000055555555801c

s

0x0000555555558020

sp

0x0000555555558028

cp

0x0000555555558030

Given the above fill in the following

(1)  0x0000555555558010: Value:                            Name:                          

(2)  0x0000555555558011: Value:                            Name:                          

(3)  0x0000555555558012: Value:                            Name:                          

(4)  0x0000555555558013: Value:                            Name:                          

(5)  0x0000555555558014: Value:                            Name:                          

(6)  0x0000555555558015: Value:                            Name:                          

(7)  0x0000555555558016: Value:                            Name:                          

(8)  0x0000555555558017: Value:                            Name:                          

(9)  0x0000555555558018: Value:                            Name:                          

(10)  0x0000555555558019: Value:                            Name:                          

(11)  0x000055555555801a: Value:                            Name:                          

(12)  0x000055555555801b: Value:                            Name:                          

(13)  0x000055555555801c: Value:                            Name:                          

(14)  0x000055555555801d: Value:                            Name:                          

(15)  0x000055555555801e: Value:                            Name:                          

(20)  0x0000555555558023: Value:                            Name:                          

(21)  0x0000555555558024: Value:                            Name:                          

(22)  0x0000555555558025: Value:                            Name:                          

(23)  0x0000555555558026: Value:                            Name:                          

(24)  0x0000555555558027: Value:                            Name:                          

(25)  0x0000555555558028: Value:                            Name:                          

(26)  0x0000555555558029: Value:                            Name:                          

(27)  0x000055555555802a: Value:                            Name:                          

(28)  0x000055555555802b: Value:                            Name:                          

(29)  0x000055555555802c: Value:                            Name:                          

(30)  0x000055555555802d: Value:                            Name:                          

(31)  0x000055555555802e: Value:                            Name:                          

(32)  0x000055555555802f: Value:                          Name:                          

(33)  0x0000555555558030: Value:                            Name:                          

(34)  0x0000555555558031: Value:                            Name:                          

16.  (12 points)  Given the following code complete the diagram on the next page assuming main runs to completion. Fill in all blank boxes, either with an arrow or value as needed. A

# in c lud e  < s t d lib . h>

s tru c t   my Struct   {

s tru c t   my Struct   *p0 ; s tru c t   my Struct   *p1 ; s tru c t   my Struct   *p2 ; ch ar                              *cp ;

in t                                    v al ; } ;

s tru c t   my Struct   *  new ( ) {

s tru c t   my Struct   * sp   =   mall oc ( s iz e o f ( s tru c t   my Struct ) ) ; sp −>p0  =   0 ;   sp −>p1 = 0 ;   sp −>p2 = 0 ;   sp −>cp = 0 ;   sp −>v al = 0 ;

r e turn   s p ;

}

s tru c t   my Struct   * r ; s tru c t   my Struct   * s ; s tru c t   my Struct   * t ;

in t   main ( in t   ar gc ,   ch ar   ** arg v ) {

s   =  new ( ) ;

s −>p0  =  new ( ) ;

s −>p0−>p2  =  new ( ) ;

s −>p0−>p2−>p1  =  new ( ) ; s −>p0−>p2−>p0  =   s −>p0 ;

r =s −>p0−>p2−>p1 ; s −>p1  =  new ( ) ;

>p0  =  new ( ) ;

>p0−>p2  =  new ( ) ;

r −>p0−>p2−>p2  =  new ( ) ; t   =  new ( ) ;

s −>p0−>p2−>p1−>p0−>p2−>v al   =   2 1 ; t −>v al   =   4 2 ;

s −>p2  =   t ;

s −>p0−>p2−>p0−>p2−>p1−>p0−>p2−>v al   =   3 ; r e turn   0 ;

}

 

 

 

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图