ࡱ> KMJg5@ xbjbj22 XX!$($($(8\(T(M)^)pn*n*n*+"!, -,.M0M0M0M0M0M0M$ORQTM95,+"+5,5,TMn*n*oMI1I1I15,n*n*.MI15,.MI1I1Y1NGIn*) 3k)$(.&HJM0M4H^RE0R4IIRIt5,5,I15,5,5,5,5,TMTM"@''1"@'GUESS PAPER-2010 CLASS-XII SUBJECT- Computer Science 1. Write a function in c++ which accepts a 2D array of integers, number of rows and number of columns as arguments and assign the elements which are divisible by 3 or 5 into a one dimensional array of integers. If the 2D array is  EMBED Equation.3  The resultant 1D arrays is 12, 3, 9, 24, 25, 45, 9, 5, 18 2) Write a function in C++ which accepts an integer array and its size as arguments/parameters and assigns the elements into a two dimensional array of integers in the following format. if the array is 9,8,7,6,5,4 if the array is 1, 2, 3 The resultant 2D array is given below The resultant 2D array is given below  EMBED Equation.3   EMBED Equation.3  EMBED Equation.3  3.) Write a function in C++ which accepts a integer array and its size as an arguments and prints the output (using nested loops) in following format : Example: if the array is having 1 2 4 5 9 Then the output should be 1 2 2 4 4 4 4 5 5 5 5 5 9 9 9 9 9 9999 4). Write a function in C++, which accepts the size of an integer array and its elements. which is constituted of single digits and create a two dimensional array that stores the number in the first column, the rest of the columns are filled with < and * characters. < symbols should be repeated depending upon the value of digits in a single dimensional array, rest of the cells in that row have be filled with * symbol. Example: If a single dimensional array consists of 4, 2, 6, 3, 8, 2, 7 then the output will be as follows:  5). Write a function in c++ which accepts a 2-D array of integers and its size as arguments and prints no of even numbers and odd numbers in each row. If the array is 11 12 31 41 52 62 71 82 9 10 11 12 The output will be Row 1: Even numbers : 1 Odd numbers : 3 Row 2: Even numbers : 3 Odd numbers : 1 Row 3: Even numbers : 2 Odd numbers : 2 6). Write a function in c++ which accepts a 2-D array of integers and its size as arguments and prints no of even numbers and odd numbers in each column. If the array is 11 12 31 41 52 62 71 82 9 10 11 12 The output will be Column 1: Even numbers : 1 Odd numbers : 2 Column 2: Even numbers : 3 Odd numbers : 0 Column 3: Even numbers : 0 Odd numbers : 3 Column 4: Even numbers : 2 Odd numbers : 1 7). Write a user-defined function named Lower_half() which takes 2D array A, with size N rows and N columns as argument and prints the lower half of the array. Eg. 2 3 1 5 0 2 7 1 5 3 1 7 1 Input 2 5 7 8 1 the output will be 2 5 7 0 1 5 0 1 0 1 5 0 3 4 9 1 5 3 4 9 1 5 8).Considering the following key set: 42,29,74,11,65,58, use insertion sort to sort the data in ascending order and indicate the sequences of steps required. Solution In this, Suppose an array A with n elements A[1],A[2],A[N] is in memory. The insertion sort algorithm scans A from A[1] to A[N], insertion each element A[K] into its proper position in the previously sorted subarray A[1],A[2],,A[K-1]. This sorting algorithm is frequently used when n is small. The array contains 6 elements as follows: 42,29,74,11,65,58 PassA[0]A[1]A[2]A[3]A[4]A[5]A[6]K=1-32768422974116558K=2-32768422974116558K=3-32768294274116558K=4-32768294274116558K=5-32768112942746558K=6-32768112942657458Sorted-32768112942586574 9). W.A.F in c++ For Bubble Sort. 10). given two arrays of integers X and Y of sizes m and n respectively. Write a function named MERGE() which will third array named Z, such that the following sequence is followed. All odd numbers of X from left to right are copied into Z from left to right. All even numbers of X from left to right are copied into Z from right to left. All odd numbers of Y from left to right are copied into Z from left to right. All even numbers of Y from left to right are copied into Z from right to left. 11). Write a function in C++ called shift( ) to rearrange the matrix as shown . Do not use parallel matrix. Original Matrix Rearranged Matrix 1 2 -3 -2 -3 -2 1 2 0 -1 2 1 -1 0 2 1 -3 9 -4 4 -3 -4 9 4 12).Write a function in C++ which accepts a character array and its size as an arguments and reverse that array without using second array and library function. Example : if the array is having Computer Science Then after reversal it should rearranged as ecneicS retupmoC 13). Write a function in C++ which accepts an integer array and its size as arguments/ parameters and then assigns the elements into a two dimensional array of integers in the following format: If the array is 1, 2, 3, 4, 5, 6 The resultant 2 D array is given belowIf the array is 1, 2, 3 The resultant 2 D array is given below0 0 0 0 0 60 0 0 0 5 50 0 0 4 4 40 0 3 3 3 30 2 2 2 2 21 1 1 1 1 10 0 30 2 21 1 1 14) write a user define function xyz() which takes a two dimensional array with size N rows and N columnsas argument and store all 1).even in one dimensional array 2). All odd in one dimensional array 3). display product of all the number except those which are not divisible by either 5 or 3. 15). write a user define function unitdigit() which takes a two dimensional array with size N rows and M columns as argument and store all i) unit digit ii) except unit digit In two dimensional array. i.e A[2][3] = 200 213 56 657 Resultant array should be i) A[2][3] = 0 3 7 ii) A[2][3] = 20 21 5 65 16). write a user define function convert() which takes a one dimensional array with size N as argument and convert it into two dimensional array. Suppose arr[6]= { 1,2,3,4,5,6} Resultant array should be Arr[6][6] = 2 1 4 3 6 5 1 4 3 6 0 1 4 3 0 0 1 4 0 0 0 1 0 0 0 0 0 0 0 0 0 17). write a user define function repeat() which takes a two dimensional array with size N rows and M columns as argument and convert all repeated element into zero. Eg : Array : 10 , 20 , 30 , 10 , 40 , 20 , 30 Result : 10 , 20 , 30 , 40 , 0 , 0 , 0 18). Write a function BsearchArr that receive an integer array with 20 elements and an element (that is to be searched), as arguments and it will search the element from the array by using binary search method. The function will display a message if the element is found or not found. 19).Write a function in C++ which accepts an integer 2D array, its size and row number as arguments and display the sum of particular row. If 2D array is  EMBED Equation.3  Row Number is 2 Then 3 + 7 + 11 + 15 = 36 Output is Sum = 36 20). Write a user defined function in C++ which intakes one dimensional array and size of array as argument and find sum of elements which are positive. If 1D array is 10 , 2 , "3 , "4 , 5 , "16 , "17 , 23 Then positive numbers in above array is 10, 2, 5, 23 Sum = 10 + 2 + 5 + 23 = 40 Output is 40 21). Write a function in C++ which accepts an integer array and its size as arguments / parameters and arrange all the odd numbers in the first row and even numbers in the second row of a two dimensional array. The unused cells of two dimensional array must be filled with 0. If the array is 1, 2, 3, 4, 5, 6 The resultant 2-D array is given below 1 3 5 0 0 0 2 4 6 0 0 0 22). Write a function in C++, which accepts an integer array and its size as parameters and rearranges the array in reverse. if an array of nine elements initially contains the elements as 4, 2, 5, I, 6, 7, 8, 12, 10 then the function should rearrange the array as 10, p, 8, 7, 6, I, 5, 2, 4 23). Write a user defined function in C++ which accepts a squared integer matrix with odd dimensions (3*3, 5*5 ) & display the square of the elements which lie on both diagonals. For ex.: 2 5 7 3 7 2 5 6 9 The output should be : Diagonal one : 4, 49, 81 Diagonal two : 49, 49, 25 24). Write a function in C++ to find the sum of both left and right diagonal elements from a two dimensional array (matrix). 25). Write a function in C++ to find sum of rows from a two dimensional array. Paper Submitted By : Name : Mr Sandeep Kumar Email : kum.sandeep2007@gmail.com Phone No : 9871501478  HYPERLINK "http://www.cbseguess.com/" http://www.cbseguess.com/ -------------------------------------------------------------------------------------------------------  HYPERLINK "http://www.cbseguess.com" www.cbseguess.com Other Educational Portals $-.4568 ) * = > ? @ i l m o p r s v w z { ~  ľĵĵĵĵĢĕąvmmmmmmmmh$*hbCJjh$*hNKCJEHUj6: h$*hNKCJUVjh$*hNKCJUh$*h+8CJh$*h^5CJh$*h^CJ hbCJh$*hNKCJ$h Oh O5B*OJQJ^Jph$h Oh2?o5B*OJQJ^Jphh Oh2?o5OJQJ)5 D H      - $0*f0*eX0* 0*eX0*eX0*0*0*0*0*0*0*0*0*0*0*0*gd+8gd^`gdb`gdNKgdNK$^`a$gdNK^gdNK $dha$gdNK $dha$gd2?o*x G H          , - NټٛzkbYYJh$*h^CJOJQJ^Jh$*h^CJh$*hNKaJjSh$*hNKCJEHU#j6: h$*hNKCJUVaJjh$*hNKCJEHU#j6: h$*hNKCJUVaJjh$*hNKCJEHUjn6: h$*hNKCJUVjh$*hNKCJUh$*hNKCJh$*hNK5CJh$*hNKCJh$*hNKCJaJ$NPQRST#0Eoi|0*0*0*&0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s0*s$0^`0a$gd^gd+8 0^`0gd^ ^`gd^NOTWornx  '(689EFWZƽƮơypbypTypDh$*h+85CJ&OJQJaJ$h$*h+85CJ&OJQJh$*h+85CJ$OJQJh$*h+8CJh$*h+85CJOJQJh$*h+8CJOJQJh$*h^CJOJQJh$*h^OJQJ^Jh$*h+8CJOJQJ^Jh$*h^CJh$*h^CJOJQJ^Jh$*h^CJh$*h^CJOJQJ^J$jh$*h^CJUmHnHuAnog lnwg0*s0*s0*s0*s0*s0*0*0*0*0*0*0*0*0*0*0*0*0*0*d$If^gd+8l0 d^gd+8 0d`0gd^$0^`0a$gd^ d$If^gd+8l0  kd_$$IfTlִ gM3 t06    44 laT !$'d$If^gd+8l0'(kd $$IfTlִ gM3 t06    44 laT(,369<?BE;d$If^gd+8l0EFkd $$IfTlִ gM3 t06    44 laTFJQTWZ]`c;d$If^gd+8l0Zcdx{s̾󱤚sfUIh$*hQ>*CJ^J h$*hQCJOJQJ^JaJh$*hQCJOJQJh$*h^OJQJ^Jh$*hgnOJQJ^Jh$*h$*CJOJQJhgnCJOJQJh$*h^CJOJQJh$*hgnCJOJQJh$*h+85CJOJQJh$*h+85CJ&OJQJh$*h+85CJ&OJQJaJ$h$*h+8CJh$*h+8CJOJQJcdkdB $$IfTlִ gM3 t06    44 laTdhorux{~;d$If^gd+8l0kd $$IfTlִ gM3 t06    44 laT;d$If^gd+8l0kd $$IfTlִ gM3 t06    44 laT;d$If^gd+8l0kd% $$IfTlִ gM3 t06    44 laTd$If^gd+8l0kd $$IfTlִ gM3 t06    44 laTWs0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*s0*s0*s0*s0*sp^pgdQ 1$7$8$H$gdQdgd+8 & Fd^gd+8 d^gd+8 0d`0gd^35TX}iky|L M!Ǿܠuuuuuuull]h$*hMCJOJQJ^Jh$*hMCJ *h$*hQCJh$*hQCJh$*h^CJh$*h^CJOJQJ^Jh$*h+8CJOJQJ h$*hQCJOJQJ^JaJh$*h$*CJ h$*CJ hQCJh$*hQCJh$*hQCJOJQJh$*hQ>*CJ^Jh$*hQCJ^J! I0*0*0*0*0*0*0*0*0*0*0*0*0*sss$o& #$/IfgdQ 1$7$8$H$gdQ ^`gdQgdQdgd+8IJVbnz-st.st.st.s.st stststsoFf%$o& #$/IfgdQ$o& #$/If[$\$gdQckdg $$Ifk0'P  6 oQ634ap T{0*>0*0*0*0*0*0*0*0*0*`gdQ^gdQ^gdQ ^`gdQp^pgdQgdQ`gdNK$0^`0a$gd^dgd+8  % 2 > K L M N 0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*gdM & F1$7$8$H$gdQ & F1$7$8$H$gdQ & F1$7$8$H$gdQ & F1$7$8$H$gdQ & F1$7$8$H$gdQgdQ@ ^@ gdQ^gdQ & F1$7$8$H$gdQ %!&!M!N!s"t"#;#X###N$P$$.%d%~%%&0*v:0*v:0*v:0*v:0*{ 0*W0*&0* 0*0*0*0*0*0*0*0*$0^`0a$gd L $^a$gd$a$gd$ h1$7$8$H$a$gd$ h1$7$8$H$a$gdp2^gdMM!N!R!S!j"n"t"x"####$#7#8#9#:###%%%G'Զo``QBh$*h LCJOJQJ^Jh$*h LCJOJQJ^Jh$*h LOJQJ^JaJ)j;h$*hEHOJQJU^JaJ+jֻ6: h$*hOJQJUV^JaJ%jh$*hOJQJU^JaJh$*hCJh$*hOJQJ^JaJh$*hp2CJOJQJ^Jh$*hp2CJh$*hp2CJaJh$*hMCJh$*hp2CJOJQJ^J&&'')'+'9'G'H'!(l(m(*)@)L)X)o)))$*%*0*s0*s0*s0*s0*s0*s0*s0*0*0*0*0*I=0*0*0*0*0*0*0*0*gdM$^`a$gd3$^`a$gd3 $ ha$gdp2gd L$a$gd$a$gd LG'H'L'M'R'l(m(q(r(.)/)4)5)?)D)F)G)P)Q)T)X))))#*$*v*w*x*ø|r|r|r|ri_U_iLh$*hMCJh$*hM5CJh$*h[5CJh$*h[CJh$*h3\aJh$*h35\aJh$*h35aJh$*h3aJh$*h3CJaJh$*h3CJ h$*hp2CJ h$*h LCJaJ h$*h LCJOJQJ^JaJ#h$*h L5CJOJQJ^JaJh$*h LCJ h$*h LCJOJQJ^JaJ%*v*w*x*y*z*{********.+/+0*0*0*0*0*0*0*0*RkdQ $$IfTlk0%64 lalT $$Ifa$gdbgd$*gdQgdM 1$7$8$H$gd[x*y*z*{*************+++,+-+/+1+Ҳ奛xeKx;xeh- hu<0J5CJ ^JaJ 3jh- hu<5B*CJ U^JaJ phf$h- hu<5B*CJ ^JaJ phf-jh- hu<5B*CJ U^JaJ phfhu<jhu<Uh$*h$*5CJh$*h$*CJOJQJhu<5B*CJOJQJphhnx5B*CJOJQJph$h$*h$*5B*CJOJQJphh$*h$*CJh$*h$*CJh$*hQCJ/+0+1+xxxxxgdQ$a$gdb1++++++++++++xx x!x2x3x6x7xWxĪךqo^Eq6q^q^hOhu<0JCJ^JaJ0jk!hj nhu<B*CJU^JaJph!hOhu<B*CJ^JaJphU*jhOhu<B*CJU^JaJph$hVhu<>*B*CJ^JaJphhOhu<0J5CJ^JaJ3j hOhu<5B*CJU^JaJph$hOhu<5B*CJ^JaJph-jhOhu<5B*CJU^JaJph!hVhu<B*CJ^JaJph HYPERLINK "www.icseguess.com" www.icseguess.com |  HYPERLINK "www.ignouguess.com" www.ignouguess.com |  HYPERLINK "www.dulife.com" www.dulife.com |  HYPERLINK "http://www.magicsense.com" www.magicsense.com WxXxYxkxlxoxpxxxxxxxxxxxxxxxѱѱѱѱ{rh$*h$*CJhu<0j$hOhu<B*CJU^JaJph0j7#hj nhu<B*CJU^JaJph!hOhu<B*CJ^JaJphhOhu<0JCJ^JaJ*jhOhu<B*CJU^JaJph0jP"hj nhu<B*CJU^JaJph&1h:p$*/ =!"#8$8%nvK wq *PNG  IHDROjDsRGB pHYsod"IDATx^r#) ofYEQvH6a ?.@ %J@v@W!گi)nH*TU":% \jJ]^Qi9[Y-@Zo,/!]@NJ[uݪږhM/m_񗳵*B2[k[|ݜh|@ !fKVAU[xo0k% M MHHt;q:.@SDk{U }˥ԧIH 9l'|>6{;^ЇwSovV;I,CQ9G~|iGsN&Q ϏɱޯqDOi5}"S)ޢ zwNJ䖛ؘ\d:^&]p@%0@>-'kPF@OCD0\'_-}64M}NYOזiYbGۿ>Zi(nM`w5 IIu^3r8SMW}G@v_akK;ۏۻ@rgwkv/";G%H O+GHBWH]:oQ%>վ~Pc$:y1!ՊDkɛ@ D^ }[iSKmw.jO 0>p @<&ףoUxҖwxy@B/J@+X_>HTY#$pO ӟkK2 I Z'|(W' Un-uWlYJ8$:yZmcRHIPV;I,C̕Q9qHg(ȧS;I:B;|wHi5l~D*w:s{+uT9~Եv$0@ G{A;N wn>% ir}[N$ 'ڇ#ՠ%aY=+0 H9W, {{\m7Dլ#`m_.$:$jjVP˅D$PXJ`9} Y ,G@/D@C`5+BCvf%վ\HtHլ#ڗ I"!r~7b BIENDB`Dd b  c $A? ?3"`?2Έ^; 0=*D~`!Έ^; 0=*  yx]JAg.0hapDMge $p!ABb,|o` isgv̱0fg&# s>nLn<R4Ux3 ^GtJ:'Քa;ǡITN/W_G!H|Ul %)J'AjimuFܱη`,/i@.ɯ6 4| ו'kcȯ_ȯa-0D-b7E-T OtG(\nǃa 8}b>Dd H0  # A2Ͼ.r~`!Ͼ.rJ @ \x]JA@gr!b,Dc-4 )TH@Yl S &;sw`y{3aU:76Jщ @bD"L1JE `x5 Yjl R A@2 v*scꁪaM,,He`(`7S?C&0] ZZ]<6b`ka)6PV 1U$z#8o`l7cP& >_\`=o&v0o8+KRs! g5$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55555555#v#v#v:Vl t6555T$$If!vh55#v#v:V k 6 oQ6,5P 534 p)$$If!v h5-5.5.5.5.5 555 #v-#v.#v #v#v :V i 6 oQ6,555 34 pZkd $$Ifi -[ "'  !"#$%&'()*+,-./0123456789:;<=>?@ACDEFGHIYLOPQRSUTVXWdZ[\]^_`abcefijklmnopqrstuvwxyz{|}~Root Entry F()NData B$WordDocumentObjectPool h)()_976658939Fh)h)Ole CompObjfObjInfo !"$%&'()*,-./0123456789:;<=>?A FMicrosoft Equation 3.0 DS Equation Equation.39qڸ(IPI 12391424251631193245271152818[]Equation Native _976654958 Fh)3k)Ole CompObj f FMicrosoft Equation 3.0 DS Equation Equation.39qPmIyI 99999988888077770066600055000040000ObjInfo Equation Native  _976654976 F3k)3k)Ole 0 FMicrosoft Equation 3.0 DS Equation Equation.39qPmIyI  FMicrosoft Equation 3.0 DS EqCompObjfObjInfoEquation Native $_976654984F3k)3k)Ole CompObjfObjInfoEquation Native duation Equation.39qPHtII 111220300 FMicrosoft Equation 3.0 DS Equation Equation.39q_976665558F3k)3k)Ole CompObjfObjInfoEquation Native  1TablehRSummaryInformation(#DocumentSummaryInformation8+ؠ(IPI 15913261014371115481216[]Oh+'0(< HT p | W1) Write a function in c++ which accepts a 2D array of integers, number of rows 3) W* W 6 oQ6$$$$34apZDd Tb  c $A? ?3"`?2.kG/`!.kG/  qx]J@g&IĂ5 b޼M/B@XA< }⡯EzoZlܝ&;Fe'V@rEAʲ#‘PJA%nIONWQn ֔38i/#͜?do5L3 YCDE~ %?<U cmPPJCmp0712HsIDATx^sGo$-bG(4AIcbj6DbkUfئ˟ݽ@Fnauox?nTmEc##F |o fHft"3mY#`t;mցuj(s`8aSJ`kl'鳜Wz B:V3fp%t č9|xEIׇbBNVےVLϒY7YP|:*3G(iG|IF9tL6,TrKR`l=6p(ΣwSՈlc&.-޺ i_i=6Mѿby,{<33C7k9KE۷|h \(M<ȪG3h]M@.ZI't:x9N[M!t!qzjd#DF tݒ%xr՜E~bE#mazΟsMӄo1aFpR&r\ Չnџ'iI(&'̆%8C+T{RzSqM 6,V+ یD>_*L$+R췖ZOL?!UhȬ'HFZ7Yx2KgwBҢeE8#jC._Ep(mqiEoX*[76q}ʃPE29(Lꆑ5w*N{lit3 n poc-<݄>@e,EK n&K'+ C{Wpw%KLV!ӂ3f9sPysZp]^yJۣ"/Xf mj.A,jk' x2Ҳy(9m9^iׄvB5G+3 p+XȶWL+h!‘pdž5]D=.t"Hct+ML+5[͵T\ vhp)!Sa^Ǡ&?@sȼ9zm迉&i-,R3+D[ҩƮ('i.ϋ77oԔ g?bju(J8e~:<-*bv/.J ~=)8Nq~#]E&6 bTiP=ncV{b [d/݆-0͋?P7 jU]◴j*HX`F7pdqmhۑk\#Y)\)U [o,pt ^(o!٠VK#RgL{}}l+gCYYLb:fkLa(%V^j}[SG6!v/'tH'ߏ>B ~ E,iGge4نtGd KmYs3}K6~&9+R+Tt3,Q|^=nc풴W>rH ggodRJ MF70jnB$glY[u q$RXҘ<_r،dF4 L&Y.=7=ccJkf̺4fIENDB`DyK yK 4http://www.cbseguess.com/s$$Ifl!vh55#v#v:V lk6,554alTDyK yK 4http://www.cbseguess.com/DyK yK thttp://www.cbseguess.com/uploads_papers/www.icseguess.comDyK yK vhttp://www.cbseguess.com/uploads_papers/www.ignouguess.comDyK yK nhttp://www.cbseguess.com/uploads_papers/www.dulife.comDyK www.magicsense.comyK 6http://www.magicsense.com/ W W Normal.dotfabc9cMicrosoft Word 10.0@^в@:1'@X)՜.+,D՜.+,@ hp|   /=!A W1) Write a function in c++ which accepts a 2D array of integers, number of rows 3 Title 8@ _PID_HLINKSA8$.:http://www.magicsense.com/C< 7http://www.cbseguess.com/uploads_papers/www.dulife.comY< ;http://www.cbseguess.com/uploads_papers/www.ignouguess.comd :http://www.cbseguess.com/uploads_papers/www.icseguess.comDhttp://www.cbseguess.com/Dhttp://www.cbseguess.com/L@L NKNormal1$7$8$H$CJ_HaJmH sH tH DA@D Default Paragraph FontRi@R  Table Normal4 l4a (k@(No ListfC@f NKBody Text Indent$81$7$8$H$^8a$CJOJQJaJnOn ^List Paragraph#d1$7$8$H$^m$CJOJPJQJaJv@v +8 Table Grid7:V0 OJPJQJ*W@!* QStrong5\V^@2V Q Normal (Web)dd1$7$8$H$[$\$^J_H9r@Br b%Header, Char Char Char Char Char Char  !4 @R4 bFooter  !voav b# Char Char Char Char Char Char CharCJ_HaJmH sH tH 6U`q6 b Hyperlink >*B*ph:o: b CharCJ_HaJmH sH tH #|5 DH -$NPQRST#0Eoi| A n o   g l n w g   !$'(,369<?BEFJQTWZ]`cdhorux{~Ws IJVbnzT{ %2>KLMN%&MNst;X'(a)+9GH!lm* @ L X o $!%!v!w!x!y!z!{!!!!!!!!."/"0"1"####00p0p000000000000000000000000000000000000000000000000000000000000000000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00000 0 0 0 000000000000000000000000000 0 0 0 0 0 0 0 0 0 0 0 0 000000000000 00 0 0 00 0  00 00000 0 0 0 0 0000000000000000000000000p00000000000000 0 00 00 00p00 00 0 00 00 0 @00 @00 @04 @0My00@0@0My0002k 5!!."/"##O900wOy00Oy00  @0t @0T 0~tJJ NZM!G'x*1+Wxx$/579;=$  '(EFcdI &%*/+x !"#%&'()*+,-.0123468:x)=?#79#:::::+E);?atxXXXXXXl,b$vK wq *(|@(  X  C A"`B S  ?N# T _Hlt185051827##@##   !"#$%&'   I Q ij#$-.01789:<=ABDEFGIJdn!!!!!!!##IKHV!"$(S\} % . R [   dj%;Cpw&.:>!%j n z  !!!!!!!!!##3333333333333333333333333333333333333333333568ilmoprsvwz{~? ? %!%!)!v!x!!!1"##!!!##abc |d]wB;# }^fS .uF;[d6 xb p DX2l5\&킨igX'pq$ $ ^$ `o(  ^ `.L^`L.^`.dd^d`.4L4^4`L.^`.^`.L^`L.^`o(() ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.$ $ ^$ `o(  ^ `.L^`L.^`.dd^d`.4L4^4`L.^`.^`.L^`L.0^`0o(()^`. L^ `L. ^ `.x^x`.HL^H`L.^`.^`.L^`L.h ^`hH.0^`0o(()h pLp^p`LhH.h @ @ ^@ `hH.h ^`hH.h L^`LhH.h ^`hH.h ^`hH.h PLP^P`LhH.$ $ ^$ `o(  ^ `.L^`L.^`.dd^d`.4L4^4`L.^`.^`.L^`L.^`.^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.$ $ ^$ `o(h   ^ `OJQJo(L^`L.^`.dd^d`.4L4^4`L.^`.^`.L^`L.$ $ ^$ `o(  ^ `.L^`L.^`.dd^d`.4L4^4`L.^`.^`.L^`L.`^``o(`^``o(HLH^H`L.^`.^`.L^`L.^`.X X ^X `.(#L(#^(#`L. fS D'pqig|;# 6 x5\[]w "s                R6         @       23         +&        tXr        3rC       G}+8NK L ON`ngn2?onx-p2Q^o~[bu<3b$*M<#T   !$'(,369<?BEFJQTWZ]`cdhorux{~ IJVbnz v!!!."/"#!(3@03 ֕@!!pbb!!,"4"#P@P$PL@P@UnknownGz Times New Roman5Symbol3& z Arial7&  Verdana?5 z Courier NewU&{ @CalibriCentury Gothic5Mangal"1h** ==!84!!2qHP ?NKV1) Write a function in c++ which accepts a 2D array of integers, number of rows 3*abc4         CompObj@j  FMicrosoft Word Document MSWordDocWord.Document.89q