TRENDING NEWS

POPULAR NEWS

Q1. How To Write An Algorithm To Generate All The Positive Multiples Of 500

How do you write a program that writes "hello world" ten times in Java?

Two simple ways:If you’re absolutely new to Java Programming then consider duplicating the statements as:-public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
System.out.println("Hello World!");
}
}
Otherwise, you can use a loop to get the same results as:-public class HelloWorld {
public static void main(String[] args) {
for(int i = 0; i < 10, i++) {
System.out.println("Hello World!");
}
}
Follow me on Youtube, click here!

How do I create or draw a flowchart to find the average of three input integer numbers?

To draw any flowchart it is necessary to make algorithm for the sameAlgorithm : To calculate average of three numbers.Step1 : Read three values a, b, c. //(int or float or double any but dont write datatype in flowchart)Step2 : initialize avg to 0Step3 : avg <- (a+b+c)/3Step4 : print avgThen to draw flowchart for same. First we need to understand what are the symbols for each statement.Now to draw flowchart of finding the average of three numbers, we use above symols and make a flowchart like thisIn this way we can draw flowchart of finding the average of three numbers. One thing which is important is here that name of variables should be in caps ie here AVG, A, B, C. Thats it.

If you could change one thing in the world, what would it be?

It's very difficult for me to regret my own mistakes because I have learned from them but there is one in particular regret that no matter what anybody tries to tell me to make things better, I simply can't come to terms with.When I was 5 years old I was sexually abused my cousin. It went on for a while until he moved to another state. Years went by and I never said a word to anybody about it until I was 17 years old.Fast forward I graduated high school and joined the military right away. I rarely visited home but one of the days I did, my sister told me to not mention anything to anybody but that when I was on deployment my younger brother had came forward with some terrible news.My sister said that my brother told my mom that my cousin had sexually abused him. Yes, the same cousin who abused me.I asked her when it had happened and he said it was right before my cousin left to live at another state. At that moment, my heart broke. If only I had said something to someone about the sexual abuse that was being done to me my brother wouldn't have suffered.My brother suffered a lot but we didn't know what was wrong. He never said a word to anybody about anything. Now we know why and if I would have said something, he wouldn't have been abused.I've learned to accept that it wasn't my fault but it's still something that when I think about it, it breaks me down.

What is the future of digital marketing job in india?

The revolution of digital marketing is on a peak in 2017, it can’t be denied that our lives have become digitalize. You can see a domination of digital marketing in our lives through Online shopping, online banking, and movie tickets, groceries items, travel packages, hotels, and air ticket.Digital Marketing Is The Best Career OptionLet’s have a brief discussion about a career in digital marketing. We have glimpsed how we take online help day-to-day.The way technology is becoming a necessity in our lives it shows how digital marketing is important and ready to offer endless career-making opportunities.· Become an in-demand professional· Get more career making choices· Good income sources· Start your own business· Endless job opportunitiesHere’s a list of the various digital marketing positions available for those seeking a career in digital marketing:· Social Media Marketing Experts/Specialists· Search Engine Marketers· SEO Executives· Conversion Rate Optimizer· Copy Writers· Digital Marketing Manager· Content Marketing Manager· Content Writers· Inbound Marketing ManagerDigital Marketing Career Path -0-1 years of experience: Digital Marketing Analyst1-3 years of experience: Digital Marketing Specialist/Expert3-5 years of experience: Digital Marketing Team Lead/Asst Manager5 years of experience: Digital Marketing Manager8 years: Digital Marketing Strategist10 year and above: Chief Marketing OfficeLet’s have a look at salaries:(a) FresherAny fresher can earn up to 10-15K per month in a mid-level to a large company. If it’s a start-up, the starting salary might be slightly lesser from 8-12K per month.(b) Once You Get CertifiedInclude a credible certification course in Digital Marketing to the kitty and now the fresher has the power to negotiate and get a salary of 18– 25K per month.(c) With 2–4 Years Of ExperienceSalaries vary from 30 – 40K per month.(d) 5+ Years Of ExperienceDepending on the quality of experience and the companies they have worked for, their salary varies from 10-15 lakh.

What are the best answers for "Why should I hire you"?

Following happened last week during my interview for internship at Microsoft.A little background - It was the third round of interview, which was the HR round. I had performed well in previous two technical interview rounds. But being a non computer science student with no experience with any projects or internships in programming, I had faced my difficulties in answering questions that demanded previous projects/experience.Interviewer - So, Sumit, this is the final question for you. Why should we hire you? Why Microsoft?Me - *thinks for a moment* Sir, shall I give you the answer that I prepared or shall I give you an honest answer?Interviewer - I can listen to them both.Me - I will start with the one I prepared. Sir, you should hire me because even though I do not have any prior experience, I do have the ability to learn and perform. And whatever would be expected of me at Microsoft, I would certainly deliver it with my best abilities and hard work.Interviewer - Impressive. And what’s the honest answer?Me - Sir, 19 years ago, Microsoft created a game named Age of Empires. I am sure you have heard the name. And it’s more than just a video game. It actually requires you to think analytically and come up with the best combinations and timings of your army units to win. Sir when I was really depressed last year, I used to play this game day and night. I used to look up to this game as a challenge. I did all the research, I knew all the civilizations and the best algorithms for all the maps. Sir, not only this game saved me from doing something stupid, it also kept my analytical thinking alive. Had I taken some other bad habit to vent out my depression, I would have thoroughly screwed my life. Sir, I want to create something so simple and yet so amazing like that game. And that’s why Microsoft should hire me.He had a wide grin on his face by the time I ended my short speech.Interviewer - Sumit you are certainly creative. Any questions for us?Me - Am I selected?He gave me the most wonderful smile and said “It’s a yes from my side, we will just have to look at your technical rounds performance.”And later that evening, my friend Ayush Tabhane woke me up from a deep sleep after a long day as he shouted “Microsoft results are out. You’re selected!!!”

TRENDING NEWS