Wednesday, December 4, 2019

Javascript


Javascript documentation contribution compilation:
https://github.com/rwaldron/idiomatic.js

Thursday, November 28, 2019

Wednesday, November 27, 2019

Test Pattern in Accenture Applying for Associate Software Engineer


Test Pattern

Exams Coverage



Technical(questions based from glassdor)
Interview Questions
  • Where do you see yourself 5 years from now?
  • Why did you choose Accenture?
  • What was your college thesis?
  • What was your contribution?  
  • Strength and weaknesses
  • "What programming language do you use?"
  • "What kind of role would you like to take up?"  
  • "What was your role in the group?" 
  • How do you see yourself 5 years from now?
  • What is the toughest experience you ever have? How did you overcome?  
  • What is Accenture? 
Interview Questions
    • - Describe yourself
    • - Why Accenture?
    • - Tell me something about your thesis and your contribution.
    • - What do you know about accenture?
    • - Where do you see yourself 5 years from now?
    • - What are the three qualities that you are looking for in a company?
    • - Why should we hire you?
    • - What are your strengths and weaknesses?
    • - How many failing grades you have in college?
    • - Why did I chose my course?
    • - What is your expected salary?
      - What was the most difficult situation I got in and how I got out of it.  
    • - What was the most difficult situation I got in and how I got out of it.  
Negotiation
Negotiations were fluid fast and easy. Just tell them what you really feel and they will listen.

Monday, August 26, 2019

Benefits of Reading



Reading is scientifically proven to reduce stress. It's even more effective than drinking tea or taking a relaxing walk, and even reading for just six minutes can drastically reduce stress levels. If you often have trouble getting a good night's sleep, because you are too stressed, reading before bed can help alleviate this and lead to a more restful sleep.


Learn Sitecore(CMS)


A powerful content management system (CMS) is just the start. Sitecore® Experience Platform(XP) also combines customer data, analytics, and marketing automation capabilities to nurture customers throughout their journey with personalized content in real-time, across any channel.






Thursday, July 4, 2019

Learn CSS



CSS Syntax


selector { property : value; }


/****************Tag Selectors************/
h1{
  color: red;
  font-size: 200px;
}

img:hover {
  background-color: gold;
}

/****************Class Selectors************/
.bacon{
  background-color: red;
}

.broccoli{
  background-color: red;
}

.circular{
  border-radius: 100%;
}

/****************ID Selectors************/
#heading{
  color: blue;
}

#big{
  font-size: 1000px;
}

Coding Reference
Developer.Mozilla.Org