{"id":9751,"date":"2022-09-15T08:37:23","date_gmt":"2022-09-15T08:37:23","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=9751"},"modified":"2022-10-03T03:30:04","modified_gmt":"2022-10-03T03:30:04","slug":"capgemini-pseudocode-questions-set-3","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/","title":{"rendered":"Capgemini Pseudocode Questions | Set 3"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\" alt=\"\" \/><\/p>\n<p>In this article, we will be discussing the Capgemini <a href=\"https:\/\/prepbytes.com\/blog\/company-placement-process\/capgemini-exam-pattern-syllabus-selection-process-placement-guides\/\" title=\"Pseudocode\">Pseudocode<\/a> Questions and Answers. Capgemini doesn&#8217;t care if you&#8217;re a non-CS\/IT student, they will anyways ask you about Data Structures. According to them, if you&#8217;re applying to an IT company, you must know coding.<\/p>\n<table>\n<thead>\n<tr>\n<th>Topics<\/th>\n<th>No. of questions (approx)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Pseudo Code on C<\/td>\n<td>16 Questions<\/td>\n<\/tr>\n<tr>\n<td>Pseudo Code on C++<\/td>\n<td>4<\/td>\n<\/tr>\n<tr>\n<td>Pseudo Code on DSA<\/td>\n<td>10 Questions<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Capgemini Pseudocode Questions<\/h3>\n<p><strong>1. Find the output of the following code.<\/strong><\/p>\n<pre><code>main() {\n    int a = 10;      \n    if ((fork ( ) == 0))      \n    a++;      \n    printf (&quot;%dn&quot;, a ); \n}<\/code><\/pre>\n<ol>\n<li>10 and 11<\/li>\n<li>10<\/li>\n<li>11<\/li>\n<li>11 and 11<br \/>\n<strong>Answer: 10<\/strong><\/li>\n<\/ol>\n<p><strong>2. Find the output of the following code.<\/strong><\/p>\n<pre><code>#include &lt;stdio.h&gt; \nmain( ) {\n    int i; \n    for ( i=0; i &lt; 5; i++ ) {\n        int i = 10;\n        printf ( &quot; % d &quot;, i );      \n        i++; \n    } \n    return 0; \n}<\/code><\/pre>\n<ol>\n<li>10 11 12 13 14<\/li>\n<li>10 10 10 10 10<\/li>\n<li>0 1 2 3 4<\/li>\n<li>Compilation error<br \/>\n<strong>Answer<\/strong>: 10 10 10 10 10<\/li>\n<\/ol>\n<p><strong>3. Guess the output of the pseudo-code.<\/strong><\/p>\n<pre><code>struct\n{\n  int si;\n  double d;\n  float cp;\n} s;\nvoid\nmain ()\n{\n  printf (&quot;%d, %d, %d&quot;,  sizeof (s.si), sizeof (s.d), sizeof (s.cp));\n}<\/code><\/pre>\n<ol>\n<li>6,10,8<\/li>\n<li>4,8,4<\/li>\n<li>2,8,8<\/li>\n<li>2,4,4<br \/>\n<strong>Answer<\/strong>: 4,8,4<\/li>\n<\/ol>\n<p><strong>4. Find the output of the following code.<\/strong><\/p>\n<pre><code>int main ()\n{\n  int a, b;\n  a = b = 4;\n  b = a++;\n  printf (&quot;%d %d %d %d&quot;, a++, --b, ++a, b--);\n}<\/code><\/pre>\n<ol>\n<li>5 3 7 3<\/li>\n<li>5 4 5 3<\/li>\n<li>6 2 6 4<\/li>\n<li>Syntax Error<br \/>\n<strong>Answer<\/strong>: 6 2 6 4<\/li>\n<\/ol>\n<p><strong>5. Guess the output of the following code.<\/strong><\/p>\n<pre><code>int main ()\n{\n  int a[4] = { 25, 16 };\n  printf (&quot;%d %d&quot;, a[0] &amp; a[1], a[1] | a[2]);\n}<\/code><\/pre>\n<ol>\n<li>Syntax error because of invalid operator symbol<\/li>\n<li>25 16<\/li>\n<li>16 16<\/li>\n<li>Syntax error because of invalid array initialization<br \/>\n<strong>Answer<\/strong>: 16 16<\/li>\n<\/ol>\n<p><strong>6. Find the output of the following pseudocode.<\/strong><\/p>\n<pre><code>int main ()\n{\n  static int num = 8;\n  printf (&quot;%d&quot;, num = num - 2);\n  if (num != 0)\n    main ();\n}<\/code><\/pre>\n<ol>\n<li>8 6 4 2<\/li>\n<li>Infinite output<\/li>\n<li>Invalid because the main function can&#8217;t call itself.<\/li>\n<li>6 4 2 0<br \/>\n<strong>Answer<\/strong>: 6 4 2 0<\/li>\n<\/ol>\n<p><strong>7. Find the output of the following code.<\/strong><\/p>\n<pre><code>int main ()\n{\n  int check = 2;\n  switch (check)\n    {\n    case 1:\n      printf (&quot;D.W.Steyn&quot;);\n    case 2:\n      printf (&quot; M.G.Johnson&quot;);\n    case 3:\n      printf (&quot; Mohammad Asif&quot;);\n    default:\n      printf (&quot; M.Muralidaran&quot;);\n    }\n  return 0;\n}<\/code><\/pre>\n<ol>\n<li>D.W.Steyn<\/li>\n<li>D.W.Steyn M.G.Johnson<\/li>\n<li>M.G.Johnson<\/li>\n<li>M.G.Johnson Mohammad Asif M.Muralidaran<br \/>\n<strong>Answer<\/strong>: M.G.Johnson Mohammad Asif M.Muralidaran<\/li>\n<\/ol>\n<p><strong>8. Guess the output of the following code.<\/strong><\/p>\n<pre><code>int main() {\n  int m = -10, n = 20;\n  n = (m &lt; 0) ? 0 : 1;\n  printf(&quot;%d %d&quot;, m, n);\n}<\/code><\/pre>\n<ol>\n<li>-10 0<\/li>\n<li>10 20<\/li>\n<li>20 -10<\/li>\n<li>0 1<br \/>\n<strong>Answer<\/strong>: -10 0<\/li>\n<\/ol>\n<p><strong>9. Predict the output of the given pseudo code.<\/strong><\/p>\n<pre><code>int main() {\n  char c = &#039;f&#039;;\n  switch (c) {\n    default: printf(&quot;unknown colour &quot;);\n    case &#039;r&#039;: case &#039;R&#039;: printf(&quot;Red &quot;);\n    case &#039;g&#039;: case &#039;G&#039;: printf(&quot;Green &quot;); break;\n    case &#039;b&#039;: case &#039;B&#039;: printf(&quot;Blue&quot;);\n  }\n}<\/code><\/pre>\n<ol>\n<li>Red Green Blue<\/li>\n<li>Error<\/li>\n<li>Green unknown colour Red<\/li>\n<li>unknown colour Red Green<br \/>\n<strong>Answer<\/strong>: unknown colour Red Green<\/li>\n<\/ol>\n<p><strong>10. Guess the output of the given code below.<\/strong><\/p>\n<pre><code> int main() {\n  int a = 100, b = 74;\n  if (a++ &gt; 100 &amp;&amp; b++ &gt; 200)\n    printf(&quot;High values with a = %d b = %dn&quot;, a, b);\n  if (a++ &lt; 100 || b++ &lt; 200)\n    printf(&quot;Low values with a = %d b = %dn&quot;, a, b);\n }<\/code><\/pre>\n<ol>\n<li>Low values with a = 100 b = 74<\/li>\n<li>Low values with a = 101 b = 73<\/li>\n<li>Low values with a = 102 b = 75<\/li>\n<li>Low values with a = 104 b = 75<br \/>\n<strong>Answer<\/strong>: Low values with a = 102 b = 75<\/li>\n<\/ol>\n<p><strong>11. Find the output of the following code.<\/strong><\/p>\n<pre><code>int main() {\n  char p[] = &quot;%dn&quot;;\n  p[1] = &#039;c&#039;;\n  printf(p, 65);\n  int k=40, *a;\n  a = &amp;k;\n  (*a)++; k++;\n  printf(&quot;n k=%d&quot;,k); \n}<\/code><\/pre>\n<ol>\n<li>c k=40<\/li>\n<li>b k=44<\/li>\n<li>A k=42<\/li>\n<li>a k=40<br \/>\n<strong>Answer<\/strong>: A k=42<\/li>\n<\/ol>\n<p><strong>12. Guess the output of the given code.<\/strong> <\/p>\n<pre><code>main() {\n int i = 2, *j;\n j = &amp;i;\n printf(&quot;%d&quot;, i**j*i+*j); \n} <\/code><\/pre>\n<ol>\n<li>Syntax error due to Invalid expression in printf<\/li>\n<li>Print junk value<\/li>\n<li>16<\/li>\n<li>10<br \/>\n<strong>Answer<\/strong>: 10<\/li>\n<\/ol>\n<p><strong>13. Guess the output of the following pseudo-code.<\/strong><\/p>\n<pre><code>int main() {\n int x,y,z;\n x = &#039;1&#039;-&#039;0&#039;; \/* line-1 *\/\n y = &#039;a&#039;-&#039;b&#039;; \/* line-2 *\/\n z = x + y;\n printf(&quot;%d&quot;,z); \n} <\/code><\/pre>\n<ol>\n<li>0<\/li>\n<li>Error because of incorrect line-1 only.<\/li>\n<li>Error because of incorrect line-1 and line-2.<\/li>\n<li>Error because of incorrect line-2 only.<br \/>\n<strong>Answer<\/strong>: 0<\/li>\n<\/ol>\n<p><strong>14. Find the output of the given code.<\/strong><\/p>\n<pre><code>void main ( )\n{\n  char *P = &quot;ayqm&quot; ;\n  char c;\n  c = ++*p ;\n  printf (&quot;%c&quot;, c);\n}<\/code><\/pre>\n<ol>\n<li>a<\/li>\n<li>0x56FA<\/li>\n<li>m<\/li>\n<li>y<br \/>\n<strong>Answer<\/strong>: a<\/li>\n<\/ol>\n<p><strong>15. Guess the output of the given pseudo code.<\/strong><\/p>\n<pre><code>void main()\n{\n  int a = 1, b=2, c=3;\n  char d = 0;\n  if(a,b,c,d)\n  {\n    printf(&quot;EXAM&quot;);\n  }\n}<\/code><\/pre>\n<ol>\n<li>No Output and No Error<\/li>\n<li>EXAM<\/li>\n<li>Run time error<\/li>\n<li>Compile time error<br \/>\n<strong>Answer<\/strong>: No Output and No Error<\/li>\n<\/ol>\n<h3>Capgemini Pseudocode Questions FAQs<\/h3>\n<p><strong>1. Is pseudocode easy to learn?<\/strong><br \/>\nPseudocode is a simple way to represent an algorithm or program. It is written easily in a word processing application and easily modified. Pseudocode is easy to understand and can be written by anyone. Pseudocode can be used with various structured programming languages.<\/p>\n<p><strong>2. Pseudocode is mainly written in which programming language?<\/strong><br \/>\nPesudo-Codes are the language-free representation of the algorithm that explains the more coded format of the algorithm but not the complete representation of the code in any specific language.<\/p>\n<p><strong>3. How many Questions are there in Capgemini Pseudocode MCQs?<\/strong><br \/>\nThere are 30 questions that need to be solved within 30 mins.<\/p>\n<p><strong>4. What is the syllabus for Capgemini pseudocode round questions and Capgemini pseudocode questions and answers?<\/strong><br \/>\nThere is no such Syllabus for Capgemini pseudocode questions and answers but from what we have observed it has basic C input-output questions and a basic C Syllabus that was there first and we have given chapter-wise questions above please check them Capgemini Pseudocode Round Questions.<\/p>\n<p>We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures and Algorithms. <a href=\"https:\/\/www.prepbytes.com\/\" title=\"Prepbytes\">Prepbytes<\/a> also provides a good collection of <a href=\"https:\/\/www.prepbytes.com\/prepbytes-courses\" title=\"Foundation Courses\">Foundation Courses<\/a> that can help you enhance your coding skills. Want to make sure you ace the interview in one go? Join our <a href=\"https:\/\/www.prepbytes.com\/placement-preparation-program\" title=\"Placement Program\">Placement Program<\/a> that will help you get prepared and land your dream job at MNCs. Mentors of Prepbytes are highly experienced and can provide you with basic, in-depth subject knowledge for better understanding.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will be discussing the Capgemini Pseudocode Questions and Answers. Capgemini doesn&#8217;t care if you&#8217;re a non-CS\/IT student, they will anyways ask you about Data Structures. According to them, if you&#8217;re applying to an IT company, you must know coding. Topics No. of questions (approx) Pseudo Code on C 16 Questions Pseudo [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[155],"tags":[],"class_list":["post-9751","post","type-post","status-publish","format-standard","hentry","category-company-placement-process"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Capgemini Pseudocode Questions | Set 3 | Company Placement Process<\/title>\n<meta name=\"description\" content=\"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Capgemini Pseudocode Questions | Set 3 | Company Placement Process\" \/>\n<meta property=\"og:description\" content=\"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-15T08:37:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-03T03:30:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Capgemini Pseudocode Questions | Set 3\",\"datePublished\":\"2022-09-15T08:37:23+00:00\",\"dateModified\":\"2022-10-03T03:30:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\"},\"wordCount\":617,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\",\"articleSection\":[\"Company Placement Process\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\",\"name\":\"Capgemini Pseudocode Questions | Set 3 | Company Placement Process\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\",\"datePublished\":\"2022-09-15T08:37:23+00:00\",\"dateModified\":\"2022-10-03T03:30:04+00:00\",\"description\":\"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Company Placement Process\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/company-placement-process\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Capgemini Pseudocode Questions | Set 3\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Capgemini Pseudocode Questions | Set 3 | Company Placement Process","description":"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/","og_locale":"en_US","og_type":"article","og_title":"Capgemini Pseudocode Questions | Set 3 | Company Placement Process","og_description":"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.","og_url":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2022-09-15T08:37:23+00:00","article_modified_time":"2022-10-03T03:30:04+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Capgemini Pseudocode Questions | Set 3","datePublished":"2022-09-15T08:37:23+00:00","dateModified":"2022-10-03T03:30:04+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/"},"wordCount":617,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg","articleSection":["Company Placement Process"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/","url":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/","name":"Capgemini Pseudocode Questions | Set 3 | Company Placement Process","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg","datePublished":"2022-09-15T08:37:23+00:00","dateModified":"2022-10-03T03:30:04+00:00","description":"We tried to discuss Capgemini Pseudocode Questions in this article. We hope this article gives you a better understanding of basics in Data Structures.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1663231010044-Capgemini%20Pseudocode%20_Set%203.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/capgemini-pseudocode-questions-set-3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Company Placement Process","item":"https:\/\/prepbytes.com\/blog\/category\/company-placement-process\/"},{"@type":"ListItem","position":3,"name":"Capgemini Pseudocode Questions | Set 3"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/9751","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=9751"}],"version-history":[{"count":5,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/9751\/revisions"}],"predecessor-version":[{"id":10083,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/9751\/revisions\/10083"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=9751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=9751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=9751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}