{"id":116,"date":"2020-06-30T06:34:30","date_gmt":"2020-06-30T12:04:30","guid":{"rendered":"https:\/\/www.qapaper.com\/blog\/?p=116"},"modified":"2022-12-02T12:58:27","modified_gmt":"2022-12-02T18:28:27","slug":"things-need-to-learn-before-joining-infosys-as-se-dse-or-pp","status":"publish","type":"post","link":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/","title":{"rendered":"Things need to learn before joining Infosys as SE, DSE or PP"},"content":{"rendered":"\n<ul>\n<li>My experience so far as Infosys DSE. check\u00a0<a href=\"https:\/\/www.qapaper.com\/blog\/infosys-ses-role-is-it-worth-my-experience-so-far-as-system-engineer-specialist\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a><\/li>\n\n\n\n<li>The technology I was trained in and the flow of training. Check&nbsp;<a href=\"https:\/\/www.qapaper.com\/blog\/mern-stack-training-infosys-ses-batch-2019\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a><\/li>\n\n\n\n<li>To read about hackwithInfy check&nbsp;<a href=\"https:\/\/www.infosys.com\/careers\/hackwithinfy.html\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"broken_link\">here<\/a><\/li>\n\n\n\n<li>To know about the salary structure of Infosys DSE check <a href=\"https:\/\/www.qapaper.com\/blog\/infosys-ses-salary-in-hand-salary-of-infosys-ses\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a><\/li>\n<\/ul>\n\n\n\n<h2>Do we really need to learn any technology, terms, or anything before joining Infosys?<\/h2>\n\n\n\n<p>Do we really need to learn any technology, terms, or anything before joining Infosys? Is there any prerequisite for joining? So, my answer will be <strong>NO<\/strong>, there is no need to learn anything but I would say there are many tools, technology or we can say terms that we can learn to get a better understanding and a better griping in the production work<\/p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>Please note that whatever mentioned below is not mandatory as it is based on my personal preference.<\/em><\/p>\n<cite><strong>Note<\/strong><\/cite><\/blockquote>\n\n\n\n<p>Maybe most of the freshers have already worked on the things that I am going to discuss, but for those who didn&#8217;t work on it, at least they may have a brief knowledge of this.<\/p>\n\n\n\n<h2>1. GIT-Version Control System<\/h2>\n\n\n\n<p><em>Git<\/em>&nbsp;is a free and open-source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.&nbsp;Git&nbsp;is easy to learn and has a tiny footprint with lightning-fast performance.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/git1.jpeg\" alt=\"Git\" class=\"wp-image-129\" srcset=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/git1.jpeg 1024w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/git1-300x171.jpeg 300w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/git1-768x437.jpeg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3>Why to learn GIT before joining Infosys?<\/h3>\n\n\n\n<p>Git is widely used not only in Infosys or any other company but also by indivisuals to manage their code remotly.<\/p>\n\n\n\n<p>Git allows a team of people to work together, all using the same files. And it helps the team cope with the confusion that tends to happen when multiple people are editing the same files.<\/p>\n\n\n\n<h3>Leaning GIT<\/h3>\n\n\n\n<p>There are many ways it can be set up and configured, but at my job, here&#8217;s how we use it: when a new employee starts, he downloads all the files from <strong>Github<\/strong> or <strong>GitLab<\/strong>, which is an online service we&#8217;re all connected to.<\/p>\n\n\n\n<p>So he has&nbsp;<em>his<\/em>&nbsp;local version of the files, I have&nbsp;<em>my<\/em>&nbsp;local version, our boss has&nbsp;<em>his<\/em>&nbsp;local version, etc.<\/p>\n\n\n\n<p>When I make a change to some files, I go through the following process in the Terminal. (There are GUI clients for Git, but I prefer working on the command line.)<\/p>\n\n\n\n<p><code>&gt; git pull<\/code><\/p>\n\n\n\n<p>That pulls the latest changes down from github. If there are conflicts between those and my local ones, it tells me what they are, file-by-file, line-by-line, and I now have a chance to reconcile those differences.<\/p>\n\n\n\n<p>After editing the files or creating new ones, I run this command:<\/p>\n\n\n\n<p><code>&gt; git add .<\/code><\/p>\n\n\n\n<p>Which adds all of my local changes to git, so that git knows about them. The dot after add specifically means to add&nbsp;<em>all<\/em>&nbsp;the changes I&#8217;ve made, e.g. new files I&#8217;ve added to my local folder or changes I&#8217;ve made to existing files. If I want, I can add only specific files, e.g.<\/p>\n\n\n\n<p><code>&gt; git add myNewFile.js<\/code><\/p>\n\n\n\n<p>I now write a comment about the adds I just made.<\/p>\n\n\n\n<p><code>&gt; git commit -m \"Fixed a major bug which stopped reports from printing.\"<\/code><\/p>\n\n\n\n<p>Finally, I upload my changes to the server.<\/p>\n\n\n\n<p><code>&gt; git push<\/code><\/p>\n\n\n\n<p>Now, when my colleagues do a &#8230;<\/p>\n\n\n\n<p><code>&gt; git pull<\/code><\/p>\n\n\n\n<p>&#8230; they will get my changes, and they will be notified if any of them conflict with their local versions.<\/p>\n\n\n\n<p>There are all kinds of cool, useful commands for rolling back changes to a particular time or state. But probably the most useful thing about Git is branching. Let&#8217;s say my team is working on code for a Car game, and I get the idea for making flying Cars. This will involve making some major changes to the existing game code, and I&#8217;m a little scared to do that. No worries, I can just make a branch.<\/p>\n\n\n\n<p>First of all, I&#8217;ll check which branches exist:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &gt; git branch\n    master*<\/pre>\n\n\n\n<p>So there&#8217;s currently only one branch on my local machine, called master. The star by it means that&#8217;s the branch I&#8217;m currently working in. I&#8217;ll go ahead and create a new one:<\/p>\n\n\n\n<p><code>&gt; git checkout -b flycars<\/code><\/p>\n\n\n\n<p>That creates a copy of all the files from  master to my branch and move me into that branch.<\/p>\n\n\n\n<p>I&#8217;ll check which branches now exist star refers that I am on that particular branch<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &gt; git branch\n    master\n    flycars*<\/pre>\n\n\n\n<p>I now spend a couple of hours in fly cars, doing whatever coding I need to do, not worrying about messing things up because I&#8217;m in a branch. Meanwhile, I get a tech support call. They&#8217;ve found a critical bug and I need to fix it asap. No worries&#8230;<\/p>\n\n\n\n<p><code>&gt; git checkout master<\/code><\/p>\n\n\n\n<p>&#8230; fix bug &#8230;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &gt; git pull\n &gt; git add .\n &gt; git commit -m \"Fixed critical bug with high scores.\"\n &gt; git push<\/pre>\n\n\n\n<p>Now I can resume my work with flyingCars.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &gt; git checkout flycars\n &gt; git branch\n    master\n    flycars*<\/pre>\n\n\n\n<p>&#8230; work, work, work &#8230;<\/p>\n\n\n\n<p>Okay, I&#8217;m now happy with my flying cars, and I want to merge that new code into the main codebase, so&#8230;<\/p>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<pre class=\"wp-block-preformatted\"> &gt; git checkout master\n &gt; git branch\n    master*\n    flycars\n<code> &gt; git merge flycars<\/code><\/pre>\n<\/div><\/div>\n\n\n\n<p>Now the code from my branch is merged into the main code-base. I can now upload it.<\/p>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<pre class=\"wp-block-preformatted\"> &gt; git pull\n &gt; git add .\n &gt; git commit -m \"added new cool feature! flying cars!!!\"\n &gt; git push<\/pre>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<p>There are many ways to use Git. This is just one of them. For now, just go to <a href=\"http:\/\/www.github.com\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub<\/a> and make a new repository. After that download git from google and   clone that project into your local system using:<\/p>\n\n\n\n<p>&gt; <em>git clone  &lt; the url of the repository&gt; <\/em>in the command prompt<\/p>\n\n\n\n<p>After successful cloning add some files and folder into cloned project and play with the commands :<\/p>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Git status- To check what is the new changes. <\/p>\n\n\n\n<p>Git add  . &#8211; To add changes to your local git <\/p>\n\n\n\n<p>Git commit -m &#8220;&lt;message&gt;&#8221;  &#8211; to commit your changes<\/p>\n\n\n\n<p>Git push &#8211; to push local changes into Remote gitHub<\/p>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong><em>For more commands go to <a href=\"https:\/\/git-scm.com\/docs\/git\" target=\"_blank\" rel=\"noreferrer noopener\">official site<\/a><\/em><\/strong><\/p>\n<\/blockquote>\n\n\n\n<h2>2. Agile Model<\/h2>\n\n\n\n<p>Agile model is one of the most popular model of the Software Development Life Cycle.<\/p>\n\n\n\n<h3>Scrum Methodology<\/h3>\n\n\n\n<p>Scrum is widely used by software development teams. In fact it&#8217;s the&nbsp;most popular agile methodology.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"588\" height=\"312\" src=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/scrum.png\" alt=\"Things to learn before joining Infosys\" class=\"wp-image-120\" srcset=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/scrum.png 588w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/scrum-300x159.png 300w\" sizes=\"(max-width: 588px) 100vw, 588px\" \/><\/figure><\/div>\n\n\n<p>Before joining it will be beneficial if we have a better understanding of some terms used  in Scrum Methodology of Agile model which are :<\/p>\n\n\n\n<p>   <strong>Scrum Team<\/strong><\/p>\n\n\n\n<ul>\n<li> <em>The Product Owner<\/em><\/li>\n\n\n\n<li><em>The ScrumMaster<\/em><\/li>\n<\/ul>\n\n\n\n<p><strong>Scrum Events (Ceremonies)<\/strong><\/p>\n\n\n\n<ul>\n<li><em>Sprint<\/em><\/li>\n\n\n\n<li><em>Sprint Planning<\/em>&nbsp;Sprint<\/li>\n\n\n\n<li><em>The Daily Stand-up<\/em><\/li>\n\n\n\n<li><em>The Sprint Review<\/em><\/li>\n\n\n\n<li><em>Retrospective<\/em><\/li>\n<\/ul>\n\n\n\n<p><strong>Scrum Artifacts<\/strong><\/p>\n\n\n\n<ul>\n<li><em>Product Backlog<\/em><\/li>\n\n\n\n<li><em>Sprint Backlog<\/em><\/li>\n\n\n\n<li><em>Increment<\/em><\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For detailed Info read from <a href=\"https:\/\/resources.collab.net\/agile-101\/what-is-scrum\">here<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2>3. HTML and CSS<\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"1024\" height=\"533\" src=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/htmlcss-1024x533.png\" alt=\"Html and Css to learn before joining Infosys\" class=\"wp-image-121\" srcset=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/htmlcss-1024x533.png 1024w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/htmlcss-300x156.png 300w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/htmlcss-768x399.png 768w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/htmlcss.png 1044w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n<p>If you want to be a web developer then this is very basic to learn.<\/p>\n\n\n\n<h2>4. Material UI and Angular Material <\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"970\" height=\"512\" src=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/material.png\" alt=\"material to learn before joining\" class=\"wp-image-122\" srcset=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/material.png 970w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/material-300x158.png 300w, https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/material-768x405.png 768w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/figure><\/div>\n\n\n<p>If you know any of React or Angular this is the best tool to learn Material UI for React and Angular Material for Angular.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong><em>Note that the things mentioned above will be taught in Infosys but in hardly 1-2 hours So, my recommendation will be to learn it on your own<\/em><\/strong><\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do we really need to learn any technology, terms, or anything before joining Infosys? Do we really need to learn any technology, terms, or anything before joining Infosys? Is there any prerequisite for joining? So, my answer will be NO, there is no need to learn anything but I would say there are many tools, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":117,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false},"categories":[82,50],"tags":[142,158,46,67,66],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.14 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER<\/title>\n<meta name=\"description\" content=\"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.\" \/>\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.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER\" \/>\n<meta property=\"og:description\" content=\"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\" \/>\n<meta property=\"og:site_name\" content=\"QAPAPER\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-30T12:04:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-02T18:28:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/Thinking.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"915\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\"},\"author\":{\"name\":\"Admin\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/b85dfc53f91c7dfabe0cc1e0f6646f7d\"},\"headline\":\"Things need to learn before joining Infosys as SE, DSE or PP\",\"datePublished\":\"2020-06-30T12:04:30+00:00\",\"dateModified\":\"2022-12-02T18:28:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\"},\"wordCount\":1097,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/#organization\"},\"keywords\":[\"dse\",\"Infosys DSE\",\"infosys ses\",\"power programmer\",\"things to learn before joining Infosys\"],\"articleSection\":[\"Companies\",\"Infosys\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\",\"url\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\",\"name\":\"Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER\",\"isPartOf\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/#website\"},\"datePublished\":\"2020-06-30T12:04:30+00:00\",\"dateModified\":\"2022-12-02T18:28:27+00:00\",\"description\":\"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.qapaper.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Things need to learn before joining Infosys as SE, DSE or PP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#website\",\"url\":\"https:\/\/www.qapaper.com\/blog\/\",\"name\":\"QAPAPER\",\"description\":\"-Be Informative\",\"publisher\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.qapaper.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#organization\",\"name\":\"Qapaper\",\"url\":\"https:\/\/www.qapaper.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2019\/02\/logo7.png\",\"contentUrl\":\"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2019\/02\/logo7.png\",\"width\":512,\"height\":516,\"caption\":\"Qapaper\"},\"image\":{\"@id\":\"https:\/\/www.qapaper.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/b85dfc53f91c7dfabe0cc1e0f6646f7d\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0155b8098b7e828174cab345004a0fcf?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0155b8098b7e828174cab345004a0fcf?s=96&d=identicon&r=g\",\"caption\":\"Admin\"},\"description\":\"If you don't build your own dreams, someone will hire you to build theirs\",\"url\":\"https:\/\/www.qapaper.com\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER","description":"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.","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.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/","og_locale":"en_US","og_type":"article","og_title":"Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER","og_description":"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.","og_url":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/","og_site_name":"QAPAPER","article_published_time":"2020-06-30T12:04:30+00:00","article_modified_time":"2022-12-02T18:28:27+00:00","og_image":[{"width":1280,"height":915,"url":"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2020\/06\/Thinking.jpg","type":"image\/jpeg"}],"author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#article","isPartOf":{"@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/"},"author":{"name":"Admin","@id":"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/b85dfc53f91c7dfabe0cc1e0f6646f7d"},"headline":"Things need to learn before joining Infosys as SE, DSE or PP","datePublished":"2020-06-30T12:04:30+00:00","dateModified":"2022-12-02T18:28:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/"},"wordCount":1097,"commentCount":2,"publisher":{"@id":"https:\/\/www.qapaper.com\/blog\/#organization"},"keywords":["dse","Infosys DSE","infosys ses","power programmer","things to learn before joining Infosys"],"articleSection":["Companies","Infosys"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/","url":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/","name":"Things need to learn before joining Infosys as SE, DSE or PP - QAPAPER","isPartOf":{"@id":"https:\/\/www.qapaper.com\/blog\/#website"},"datePublished":"2020-06-30T12:04:30+00:00","dateModified":"2022-12-02T18:28:27+00:00","description":"There is nothing prerequisite before joining Infosys but you can still learn below things to have better grip on projects in production.","breadcrumb":{"@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.qapaper.com\/blog\/things-need-to-learn-before-joining-infosys-as-se-dse-or-pp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.qapaper.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Things need to learn before joining Infosys as SE, DSE or PP"}]},{"@type":"WebSite","@id":"https:\/\/www.qapaper.com\/blog\/#website","url":"https:\/\/www.qapaper.com\/blog\/","name":"QAPAPER","description":"-Be Informative","publisher":{"@id":"https:\/\/www.qapaper.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.qapaper.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.qapaper.com\/blog\/#organization","name":"Qapaper","url":"https:\/\/www.qapaper.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.qapaper.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2019\/02\/logo7.png","contentUrl":"https:\/\/www.qapaper.com\/blog\/wp-content\/uploads\/2019\/02\/logo7.png","width":512,"height":516,"caption":"Qapaper"},"image":{"@id":"https:\/\/www.qapaper.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/b85dfc53f91c7dfabe0cc1e0f6646f7d","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.qapaper.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0155b8098b7e828174cab345004a0fcf?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0155b8098b7e828174cab345004a0fcf?s=96&d=identicon&r=g","caption":"Admin"},"description":"If you don't build your own dreams, someone will hire you to build theirs","url":"https:\/\/www.qapaper.com\/blog\/author\/admin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/posts\/116"}],"collection":[{"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/comments?post=116"}],"version-history":[{"count":10,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/posts\/116\/revisions"}],"predecessor-version":[{"id":452,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/posts\/116\/revisions\/452"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/media\/117"}],"wp:attachment":[{"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/media?parent=116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/categories?post=116"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.qapaper.com\/blog\/wp-json\/wp\/v2\/tags?post=116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}