{"id":5873,"date":"2019-09-21T19:29:31","date_gmt":"2019-09-21T13:59:31","guid":{"rendered":"https:\/\/www.csestack.org\/?p=5873"},"modified":"2019-09-27T08:25:13","modified_gmt":"2019-09-27T02:55:13","slug":"pwc-interview-questions-python-coding-test","status":"publish","type":"post","link":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/","title":{"rendered":"PwC Written Test, Interview Questions and Answers for Python Developer"},"content":{"rendered":"<p>I have attended the PwC drive in Bangalore, India. One of the consultancies shortlisted my profile online for PwC job recruitment.<\/p>\n<p>Freshers, as well as experienced candidates, were allowed for this job recruitment.<\/p>\n<p>There was a written test followed by technical and HR interviews.<\/p>\n<p>I&#8217;m sharing my PwC interview questions and coding round experience.<\/p>\n<h4 style=\"text-align: center;\">PwC Python Coding Questions | Written Test<\/h4>\n<p>All the questions were on Python. There were 10 multiple choice questions (MCQ) and four coding questions to write snippet.<\/p>\n<p>This was an on-paper test. Following are some of the technical questions I can remember.<\/p>\n<p>Note: There were no aptitude questions.<\/p>\n<p><strong>1. There was one simple class program in which there were two functions- init() and myFunc().<\/strong><\/p>\n<p>[python]<br \/>\nclass myClass:<br \/>\n  __init__():<br \/>\n    self.x=10<br \/>\n    self.__y=20<\/p>\n<p>obj=myClass()<br \/>\nprint(obj.__y)<br \/>\n[\/python]<\/p>\n<p>Answer:<\/p>\n<p>This program is related to the <a href=\"https:\/\/www.csestack.org\/python-name-mangling\/\">name mangling concept in Python<\/a> as variable y is prefixed by <code>__<\/code> (double underscore).\u00a0 We can not access this variable directly. So this will throw an error.<\/p>\n<p><strong>2. What is the output if you run the following command.<\/strong><\/p>\n<pre>python -c \"import sys; sys.argv[0]\"<\/pre>\n<p>Answer:<\/p>\n<p>In Python &#8216;-c&#8217; flag can be used to run the Python code directly from the command prompt\/ terminal. You can write multiple lines of code separated by &#8216;;&#8217;<\/p>\n<p>Output:<\/p>\n<pre>-c<\/pre>\n<p><strong>3. When there is no return statement in the function definition, what is the default return type of the function?<\/strong><\/p>\n<p>Options:<\/p>\n<pre>int\r\nbool\r\nfloat\r\nnone<\/pre>\n<p>Answer:<\/p>\n<pre>none<\/pre>\n<p>None is the <a href=\"https:\/\/www.csestack.org\/nonetype-in-python-null\/\">special data type in Python<\/a>.<\/p>\n<p><strong>4. What is the output of the following program?<\/strong><\/p>\n<p>[python]<br \/>\nl=list(&#8216;HELLO&#8217;)<br \/>\nprint(&quot;first={0[0]}, third={0[2]}&quot;.format(l))<br \/>\n[\/python]<\/p>\n<p>Output:<\/p>\n<pre>['H', 'E', 'L', 'L', 'O']\r\nfirst=H, third=L<\/pre>\n<p><strong>5. If you run the following Python code, what will be the output?<\/strong><\/p>\n<p>[python]<br \/>\nfor i in &#8221;.join(reversed(list(&#8216;abcd&#8217;))):<br \/>\n    print(i)<br \/>\n[\/python]<\/p>\n<p>Output:<\/p>\n<pre>d\r\nc\r\nb\r\na<\/pre>\n<p><strong>6. There was one question about the main modules in Python. They have given four option, you have to choose the wrong statement.<\/strong><\/p>\n<p><strong>7. Which of the following is not the keyword in exception handling?<\/strong><\/p>\n<p>Options:<\/p>\n<pre>try\r\nexcept\r\naccept\r\nfinally<\/pre>\n<p>Answer:<\/p>\n<pre>accept<\/pre>\n<h4 style=\"text-align: center;\">PwC Python Coding Questions<\/h4>\n<p><strong>8. Write a program to filter all the list elements which are even number between 1 and 20 (both numbers are inclusive).<\/strong><\/p>\n<p>[python]<br \/>\nobj=lambda x: (x%2==0)<br \/>\nli=range(1, 21)<br \/>\nprint(list(filter(obj, li)))<br \/>\n[\/python]<\/p>\n<p>Output:<\/p>\n<pre>[2, 4, 6, 8, 10, 12, 14, 16, 18, 20]<\/pre>\n<p>Read <a href=\"https:\/\/www.csestack.org\/python-lambda-function-list-comprehension-map-filter-reduce\/\">lambda and filter function in Python<\/a>.<\/p>\n<p>There were some questions on pandas Python module.<\/p>\n<p><strong>9. Read the sample CSV file excluding first line using Pandas Dataframe.<\/strong><\/p>\n<p>Answer:<\/p>\n<p>Use <code>read_csv()<\/code> from padas for reading CSV file into the dataframe.<\/p>\n<p>Refer <a href=\"https:\/\/www.csestack.org\/how-to-read-csv-file-in-python\/\">different methods to read CSV file in Python<\/a>.<\/p>\n<p><strong>10. There are three columns in the CSV file (ID, value, key). Write a program to calculate the mean value grouped by key.<\/strong><\/p>\n<p><strong>11. If the value of the key is &#8216;a&#8217;, replace it with &#8216;a_1&#8217; in the dataframe.<\/strong><\/p>\n<p>You might face some other <a href=\"https:\/\/www.csestack.org\/python-interview-questions-answers\/\">Python interview questions<\/a>. Be prepared for it.<\/p>\n<p>There were almost about 15 candidates. You will be having interviews if you crack the written test.<\/p>\n<h4 style=\"text-align: center;\">PwC Interview Questions| How to crack?<\/h4>\n<p>In a technical interview, they can ask you to explain your code from the written test. You can expect more questions about different concepts in Python.<\/p>\n<p>If you do well in the technical interview, you will be having the HR round. For the HR round, prepare for <a href=\"https:\/\/www.csestack.org\/hr-interview-questions-for-freshers\/\">basic HR questions<\/a>.<\/p>\n<p>As per I read about PwC, there is no much work-life balance. You have to stretch your working hours to complete the assigned projects. If you are preparing for PwC (PricewaterhouseCoopers) India, make a note of this.<\/p>\n<p style=\"text-align: center;\">All the best!<\/p>\n<hr \/>\n<p><strong>Editors&#8217; Note:<\/strong> This PwC interview questions, written test, and experience is shared by Nilesh Varma. We wish him all the best!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[45,320,72],"class_list":["post-5873","post","type-post","status-publish","format-standard","hentry","category-placement-interview","tag-interview","tag-pwc","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PwC Written Test, Interview Questions and Answers for Python Developer<\/title>\n<meta name=\"description\" content=\"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PwC Written Test, Interview Questions and Answers for Python Developer\" \/>\n<meta property=\"og:description\" content=\"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/\" \/>\n<meta property=\"og:site_name\" content=\"CSEstack\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aniruddha.ca\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/CSEStack\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-21T13:59:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-27T02:55:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.csestack.org\/wp-content\/uploads\/2024\/01\/csestack-blog.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Want to Share your Interview Experience?\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@csestack\" \/>\n<meta name=\"twitter:site\" content=\"@ani_chaudhari\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Want to Share your Interview Experience?\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/\"},\"author\":{\"name\":\"Want to Share your Interview Experience?\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/c15024ccd6a575e54fdb7eecba43a370\"},\"headline\":\"PwC Written Test, Interview Questions and Answers for Python Developer\",\"datePublished\":\"2019-09-21T13:59:31+00:00\",\"dateModified\":\"2019-09-27T02:55:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/\"},\"wordCount\":586,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\"},\"keywords\":[\"interview\",\"PwC\",\"Python\"],\"articleSection\":[\"Placement Interview\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/\",\"name\":\"PwC Written Test, Interview Questions and Answers for Python Developer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#website\"},\"datePublished\":\"2019-09-21T13:59:31+00:00\",\"dateModified\":\"2019-09-27T02:55:13+00:00\",\"description\":\"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/pwc-interview-questions-python-coding-test\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.csestack.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PwC Written Test, Interview Questions and Answers for Python Developer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#website\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/\",\"name\":\"CSEstack\",\"description\":\"Computer Science &amp; Programming Portal\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.csestack.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\",\"name\":\"Aniruddha Chaudhari\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"contentUrl\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"width\":634,\"height\":634,\"caption\":\"Aniruddha Chaudhari\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\"},\"description\":\"I am a Python enthusiast who loves Linux and Vim. I hold a Master of Computer Science degree from NIT Trichy and have 10 years of experience in the IT industry, focusing on the Software Development Lifecycle from Requirements Gathering, Design, Development to Deployment. I have worked at IBM, Ericsson, and NetApp, and I share my knowledge on CSEstack.org.\",\"sameAs\":[\"https:\\\/\\\/www.csestack.org\",\"https:\\\/\\\/www.facebook.com\\\/aniruddha.ca\",\"pythonwithani\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/aniruddha28\\\/\",\"https:\\\/\\\/x.com\\\/ani_chaudhari\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCw0a__B0eJsvCujkSIfLTAA\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/c15024ccd6a575e54fdb7eecba43a370\",\"name\":\"Want to Share your Interview Experience?\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g\",\"caption\":\"Want to Share your Interview Experience?\"},\"description\":\"This interview questions and experience are shared by one of the readers like you. You can share your interview experience as well. If you want to help new job aspirants to get their dream job, kindly share your experience on CSEstack Portal, by filling this simple form. It will be published on our portal. Thank You!\",\"sameAs\":[\"https:\\\/\\\/www.csestack.org\",\"https:\\\/\\\/www.facebook.com\\\/CSEStack\\\/\",\"https:\\\/\\\/x.com\\\/csestack\"],\"url\":\"https:\\\/\\\/www.csestack.org\\\/author\\\/csestack-editor-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PwC Written Test, Interview Questions and Answers for Python Developer","description":"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.","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:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/","og_locale":"en_US","og_type":"article","og_title":"PwC Written Test, Interview Questions and Answers for Python Developer","og_description":"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.","og_url":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/","og_site_name":"CSEstack","article_publisher":"https:\/\/www.facebook.com\/aniruddha.ca","article_author":"https:\/\/www.facebook.com\/CSEStack\/","article_published_time":"2019-09-21T13:59:31+00:00","article_modified_time":"2019-09-27T02:55:13+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.csestack.org\/wp-content\/uploads\/2024\/01\/csestack-blog.jpg","type":"image\/jpeg"}],"author":"Want to Share your Interview Experience?","twitter_card":"summary_large_image","twitter_creator":"@csestack","twitter_site":"@ani_chaudhari","twitter_misc":{"Written by":"Want to Share your Interview Experience?","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/#article","isPartOf":{"@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/"},"author":{"name":"Want to Share your Interview Experience?","@id":"https:\/\/www.csestack.org\/#\/schema\/person\/c15024ccd6a575e54fdb7eecba43a370"},"headline":"PwC Written Test, Interview Questions and Answers for Python Developer","datePublished":"2019-09-21T13:59:31+00:00","dateModified":"2019-09-27T02:55:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/"},"wordCount":586,"commentCount":2,"publisher":{"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218"},"keywords":["interview","PwC","Python"],"articleSection":["Placement Interview"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/","url":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/","name":"PwC Written Test, Interview Questions and Answers for Python Developer","isPartOf":{"@id":"https:\/\/www.csestack.org\/#website"},"datePublished":"2019-09-21T13:59:31+00:00","dateModified":"2019-09-27T02:55:13+00:00","description":"What is the PwC written test pattern for a coding round? PwC interview questions and answers for Python developer job profile.","breadcrumb":{"@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.csestack.org\/pwc-interview-questions-python-coding-test\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.csestack.org\/"},{"@type":"ListItem","position":2,"name":"PwC Written Test, Interview Questions and Answers for Python Developer"}]},{"@type":"WebSite","@id":"https:\/\/www.csestack.org\/#website","url":"https:\/\/www.csestack.org\/","name":"CSEstack","description":"Computer Science &amp; Programming Portal","publisher":{"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.csestack.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218","name":"Aniruddha Chaudhari","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","url":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","contentUrl":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","width":634,"height":634,"caption":"Aniruddha Chaudhari"},"logo":{"@id":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg"},"description":"I am a Python enthusiast who loves Linux and Vim. I hold a Master of Computer Science degree from NIT Trichy and have 10 years of experience in the IT industry, focusing on the Software Development Lifecycle from Requirements Gathering, Design, Development to Deployment. I have worked at IBM, Ericsson, and NetApp, and I share my knowledge on CSEstack.org.","sameAs":["https:\/\/www.csestack.org","https:\/\/www.facebook.com\/aniruddha.ca","pythonwithani","https:\/\/www.linkedin.com\/in\/aniruddha28\/","https:\/\/x.com\/ani_chaudhari","https:\/\/www.youtube.com\/channel\/UCw0a__B0eJsvCujkSIfLTAA"]},{"@type":"Person","@id":"https:\/\/www.csestack.org\/#\/schema\/person\/c15024ccd6a575e54fdb7eecba43a370","name":"Want to Share your Interview Experience?","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bdb03971689ec3a12b4a7a7328f732372cd1a6eecefc4331a508fe4354d2d968?s=96&d=monsterid&r=g","caption":"Want to Share your Interview Experience?"},"description":"This interview questions and experience are shared by one of the readers like you. You can share your interview experience as well. If you want to help new job aspirants to get their dream job, kindly share your experience on CSEstack Portal, by filling this simple form. It will be published on our portal. Thank You!","sameAs":["https:\/\/www.csestack.org","https:\/\/www.facebook.com\/CSEStack\/","https:\/\/x.com\/csestack"],"url":"https:\/\/www.csestack.org\/author\/csestack-editor-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/5873","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/comments?post=5873"}],"version-history":[{"count":7,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/5873\/revisions"}],"predecessor-version":[{"id":5930,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/5873\/revisions\/5930"}],"wp:attachment":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/media?parent=5873"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/categories?post=5873"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/tags?post=5873"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}