Quantcast
Channel: Free Selenium Training | Free Selenium Tutorial | Learn Selenium with Jasmine

Project Training for BCA,MCA,BE Computer,IT,BSC IT,MSC IT,Diploma Students,IGNOU,DOEACC students

0
0
Send your email to all IT companies for enquiring about Project Training for BCA,MCA,BE Computer,IT,BSC IT,MSC IT,Diploma Students,IGNOU,DOEACC students using JustDial.com

This is automated form filling system developed using Selenium Webdriver and JAVA.

Its not a rocket science. Its simple. Just follow some instructions.

SETTING UP SELENIUM WEB DRIVER into ECLIPSE

http://selftechy.com/2011/05/31/setting-up-selenium-with-eclipse

http://www.anitpatel.net/2011/12/27/setting-up-selenium-web-driver-eclipse-testng/


Once you are ready with Eclipse and added Selenium webdriver jars in Eclipse then make one new class in eclipse and copy paste following code in that class 



publicstaticvoid main(String[] args) throws InterruptedException {

              WebDriver driver = new FirefoxDriver();

              driver.manage().window().maximize();

             

              // Uncomment following command one by one and run this whole script for all this command

              // this is made for Banglore city

              // you can get more city same way by going and searching on justdialand get links

              // add that link here and run whole script again

             

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Bank");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-In-Application");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developer-ASP-Dot-Net");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Cellular-Phones");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Textile-Industry");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developer-SAP-ERP");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Education");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developer-Accounting-Management");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developer-Distributors");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developer-Real-Estate");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Call-Centre");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Colleges");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-CRM");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Departmental-Store");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Excise");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Hotels");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-HRD");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Inventory-Management");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Invoice");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Sales-TAX");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Single-Phase-Motor-Design");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Three-Phase-Motor-Design");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-For-Travel-Agents");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-In-Inventory");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Developers-In-Power-Builder");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Development-For-ERP");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Development-For-Inventory-Management");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Installation");

//            driver.navigate().to("http://www.justdial.com/Bangalore/Computer-Software-Dealers");

             

              String SearchLinkText = null;

             

             

              // Set variable j based on no of page of the search result of the Justdial.com

              // Click on Next Button 21 times

              for (int j = 1; j <= 21; j++) {

                     System.out.println("Page no" + j);

                     System.out.println("-----------------------------------");

                    

                     for(int i=1;i<=25;i++){

                          

                          

                           try {

                                  String Start = "//*[@id='mainContent']/div[3]/div[";

                                  String End = "]/div[1]/span/a";

                                 

                                  SearchLinkText = driver.findElement(By.xpath(Start+i+End)).getText() ;

                                  System.out.println(SearchLinkText + " --- is opened");

                                  driver.findElement(By.xpath(Start+i+End)).click();

                                 



                                  Thread.sleep(5000L);

                                 

                                  if (driver.findElement(By.linkText("Send Enquiry by Email")).isDisplayed()) {

                                        

                                         // Click on Send Enquiry by Email link

                                         driver.findElement(By.linkText("Send Enquiry by Email")).click();

                                        

                                  } else{

                                         System.out.println(SearchLinkText + " --- Skipping Send Enquiry by Email");

                                        

                                  }

                                 

                                 


                                  //Enter your name in "Your name" in following command

                                  driver.findElement(By.xpath("//*[@id='enqname']")).sendKeys("Your Name");

                                 

                                  //Enter your Mobile no into "Your Mobile no"  in following command

                                  driver.findElement(By.xpath("//*[@id='enqmobile']")).sendKeys("Your Mobile no");

                                 

                                  //Enter your Email ID into "Your Email ID"  in following command

                                  driver.findElement(By.xpath("//*[@id='enqemail']")).sendKeys("Your Email ID");

                                 

                                  //Enter your Email Subject into "Email Subject"  in following command

                                  driver.findElement(By.xpath("//*[@id='enqsub']")).sendKeys("Email Subject [Ex: I am looking for Project & Training in JAVA]");

                                 

                                  ////Enter your one line Email Body into "Email Subject"  in following command

                                  driver.findElement(By.xpath("//*[@id='enqbd']")).sendKeys("Enter oneline email body [Ex: I am looking for training for my 6th sem of BE CE]");

                                 

                                  driver.findElement(By.xpath("//*[@id='Enquiry']/p[9]/input")).click();

                                   

                                  Thread.sleep(10000L);

                                  driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);


                                 

                                  System.out.println("Email Sent to --- " + i);

                           } catch (Exception e) {

                           System.out.println("Unable to locate ");

                          

                           }

                           driver.navigate().back();

                          

                     }

                    

                     //Click on Next button

                     driver.findElement(By.xpath("//*[@id='srchpagination']/a[13]")).click();

                    

              }

             

             

       }



< Give info to get info >

Blog has been moved to

Stop Porn Culture

0
0







Dating Sites & Scam



What is Stop-Scammers.com about


Stop-Scammers.com is the place to find the most up-to-date information on female scammersanywhere in the world.
Our extensive database lists known scammers together with corroborating evidence like correspondence, photos, countries of known operation and documentation commonly used by these international thieves.
If you've been scammed in the past or you are suspicious that the lady you are corresponding with may be anything but who she says she is, then you'll find all the information and tools you need to fight back, right here at Stop-Scammers.com



stopcyberbullying.

selenium interview questions and answers

0
0
Send email @ Jasmine.Olivra@gmail.com



selenium interview questions, selenium interview questions and answers, selenium webdriver interview questions, selenium testing interview questions, selenium ide interview questions, job interview questions, selenium testing, selenium rc interview questions, interviewing questions, selenium interview questions 2012, basic interview questions, common job interview questions, interview questions for nurses, selenium automation interview questions, mock interview questions, interviews questions, selenium testing tool, interview questions for a, software testing interview questions, telephone interview questions, to interview questions, customer service interview questions, interview question software, job interviews questions, web testing interview questions, frequently asked job interview questions, interviewer questions, selenium technical interview questions, automation testing interview questions, interview questions on selenium, java selenium interview questions, interview tips and questions, free interview questions, help with interview questions, automated testing interview questions and answers, competency based interview questions, job interview question, selenium automated testing, employment interview questions, about interview questions, what is selenium testing, good job interview questions, selenium interview questions pdf, interview questions software, selenium testing tools interview questions, child care interview questions, selenium qa interview questions, automation interview questions, interview preparation questions, selenium interview questions with answers, it job interview questions, software testing interview questions answers, interview tips, testing tools tutorials, security guard interview questions, software testing interview questions with answers, selenium interview question, interview preparation, interviewing tips, housekeeping interview questions, software testing tools, job interview questions for employers, selenium automation testing interview questions and answers, selenium software testing tool, selenium tool for testing, selenium software testing, job interviews, selenium automation testing, software tester interview questions, tips for job interviews, software testing, selenium interview questions for experienced, job interview questions and, test automation interview questions, job interview preparation, selenium download, automation testing, selenium automation, software interview questions and answers, web testing, job interview tips, qa testing, interview question tips, selenium server, web application testing, interview question for job, interview questions for it job, website testing tools, interview questions for information technology, interview questions tips, automated testing tools, test automation tools, software development interview questions, selenium automation testing interview questions, automated testing interview questions, selenium tool, winrunner, interview tips for jobs, agile testing, selenium interview questions 2011, question for interview

100941 pageviews

Share QTP Interview Question with Us!

Share Selenium Interview Question with Us!


Project Management Fundamentals

0
0
Project Management Fundamentals


Project Management Fundamentals

Discover how to more efficiently manage your business projects. Author Bonnie Biafore lays out a set of principles and examines the concepts behind project management, from defining the problem, establishing project objectives, and building a project plan to meeting deadlines, managing team resources, and closing the project. The course also provides tips for reporting on project performance, keeping a project on track, and gaining customer acceptance.
Topics include:
Understanding projects and project management
Exploring project management software options
Gathering requirements
Identifying deliverables and success criteria
Creating a scope statement
Identifying stakeholders
Building a work breakdown structure
Identifying resources
Building a schedule
Creating a risk management plan
Developing a change management plan
Understanding team dynamics
Gathering data
Evaluating project schedule and cost performance
Documenting lessons learned
Closing contracts, accounts, and transitioning

Achieving Your Goals

0
0

Achieving Your Goals


Setting achievable goals is one of the first steps toward a successful career and meaningful personal development. In this business skills course for lynda.com, author Dave Crenshaw shows smart ways to create a vision, develop a quantifiable goal, turn that goal into actions, and share that commitment publicly to establish accountability.

Along the way, discover the importance of celebrating successes and reviewing your progress in order to stay motivated and establish a pattern of successful goal setting.
Topics include:
  • Creating a vision
  • Dividing to conquer
  • Processing into action
  • Establishing accountability
  • Tracking progress

Effective Public Speaking

0
0


Effective Public Speaking


Develop the skills you need to prepare and deliver an outstanding speech or presentation with our public speaking training. Author Laura Bergells offers practical insights that can help presenters prepare, open, deliver, and close their speeches. Along the way, discover how to project confidence, storyboard a speech, take questions, respond with thoughtful answers, and develop the creative story that adds life to a speech.
Topics include:
  • Identifying your audience
  • Developing credibility
  • Introducing an agenda
  • Exploring five strong opening techniques
  • Developing great body language
  • Understanding room dynamics
  • Handling questions and answers
  • Getting feedback

Delegating Tasks to Your Team

0
0

Delegating Tasks to Your Team

In this course, lynda.com Director of Learning and Development Britt Andreatta walks you through her delegation process, which helps you assign the right tasks to the right people and better develop your team and meet company needs.

The course reveals what delegation can do for you and your team and introduces a four-phase model to delegate tasks and manage projects large and small. The phases include evaluating the task, handing the task over, supporting task completion, and closing the task. In between, learn how to pick the right level of autonomy for each task and the best ways to avoid micromanagement.
Topics include:
  • What is delegation?
  • Evaluating tasks
  • Determining which tasks to delegate
  • Assigning tasks
  • Meeting with team members
  • Providing team support
  • Avoiding micromanaging and the fear of letting go
  • Accepting delegation from your boss

Managing Project Schedules

0
0
Managing Project Schedules


Get the upper hand on your project schedules before they begin and see them through to conclusion, on time and on budget. In this course, PMP-credentialed author Bonnie Biafore teaches you how to proactively manage project schedules. This includes a look at the elements that go into a schedule; how to estimate costs and resources; best ways to negotiate and allocate resources; and how to manage a schedule over time.
Topics include:
  • Identifying the work that needs to be done
  • Adding milestones
  • Delaying or overlapping tasks with lag and lead time
  • Assigning resources
  • Balancing workloads
  • Adding buffers and baselines to the schedule
  • Uncovering and correcting out schedule problems

Coaching and Developing Employees

0
0
Coaching and Developing Employees

In this course, business coach Lisa Gates teaches managers to harness the power of coaching in the workplace. Learn the benefits of developing your team and helping employees build their skills in ways that transform and empower them to do more productive and engaging work. Then discover how to build your own leadership and coaching skills and equip yourself with tools that encourage insight and growth. The course wraps with a look at how you can maintain the coaching momentum in the workplace and address common challenges.
Topics include:
  • Finding time to coach
  • Establishing a relationship with your employees
  • Asking powerful questions
  • Becoming an active listener
  • Maintaining accountability
  • Using questionnaires and self-assessments
  • Aligning professional goals with company objectives

Conflict Resolution Fundamentals

0
0
Conflict Resolution Fundamentals

Improve your relationships with your coworkers, clients, and managers and find your way through conflict back to cooperation. In this course, negotiation consultant Lisa Gates shares the secrets of effective conflict resolution and reveals simple, repeatable techniques that apply in most business situations. She'll present a six-step framework for exploring and navigating conflict resolution, including identifying the issue, separating the people from the problem, overcoming roadblocks to resolution, exploring cultural differences, and getting to agreement.
Topics include:
  • Understanding how conflicts arise
  • Navigating cognitive bias
  • Exploring the principles of influence
  • Building trust
  • Reframing the argument
  • Brainstorming solutions
  • Working with difficult people

Freelancing Fundamentals

0
0
Freelancing Fundamentals

In this course, author and seasoned freelancer Tom Geller shows you how to prepare for a transition to freelancing. Begin by taking a look at your career goals, the systems that will support you, and proper ways to plan for success. Find out how to marshal your resources, refine your portfolio for presentation to clients, and estimate your costs to avoid any surprises on the financial front. Plus, discover how to create invoices, manage your books and taxes, expand your client base with marketing, and grow your business.

A bonus chapter covers common questions freelancers have when entering the field.
Topics include:
  • What is freelancing?
  • Defining your career goals
  • Funding your startup
  • Getting licenses, permits, and insurance
  • Setting prices
  • Finding work through agencies
  • Getting referrals
  • Working with time and project management tools
  • Increasing your rates

Time Management Fundamentals

0
0
Time Management Fundamentals

Effective time management is an indispensible skill. In Time Management Fundamentals, Dave Crenshaw explains how to sensibly allocate time in order to achieve greater productivity. Starting with an exploration of productivity styles, Dave details a set of principles for staying organized, consolidating the workspace, keeping a clear mind, and developing a time budget. Also covered are techniques for managing a full inbox, processing email, and reserving time for the most important activities. Exercise files accompany the course.
Topics include:
  • Understanding the principles of productivity
  • Avoiding the pitfalls of multitasking
  • Practicing mind-clearing techniques
  • Saying no with tact
  • Choosing the appropriate calendaring software
  • Mastering the What, When, Where processing system
  • Processing email vs. checking email
  • Maintaining productivity gains

Managing Teams

0
0
Managing Teams

Group dynamics impact productivity and employee satisfaction, so it's important for managers to cultivate positive relationships among coworkers. Join Dr. Todd Dewett as he explains how to effectively manage teams. This course covers motivating your team, managing team performance, establishing your identity and authority within a group, addressing conflict, and making work fun. Full of practical tips and useful strategies, this course is a great reference for first-time managers and for more experienced managers who may need to address a specific issue with their team.
Topics include:
  • Building initial rapport
  • Signaling fairness and integrity
  • Communicating proactively
  • Facilitating efficient meetings
  • Using your authority effectively

how boys search girls on internet ?

0
0
how boys search girls on internet ?


as we all know boys have one thing as default. 

All boys having sex hunger ;)

So most boys porn sites and most porn sites are full of virus and credit card frauds.

There are so many porn girls ask for money for video sex or phone sex which help to make good money with safety.

early days boys search girls in Yahoo chat rooms and do video sex.

some people or company record this live session and sale or put on their website to drive traffic.

Boys search girls on job discussion forums. They create fake company account and ask for resume or email id and mobile no and DOB.

they targeted mostly fresh girls who are unaware of this cyber tricks.

boys spend money on job search website to get Girls biodata from job search portal like monster.com, naukri.com any other....

To get girls email id for start chatting boys make fake accounts on discussion forum website and ask for email id or ask to introduce yourself. 

boys use yahoo groups and google groups to collect resume of girls by posting fake jobs.

Boys create fake discussion on Facebook groups, LinkedIn Groups, orkut groups and many other places.

Some job portal publicly display uploaded resume Boys get girls email id and contact no from that sites.

now a days OLX.com and Quikr.com also allow to upload resume. Boys search on this sites to get email ids and mobile no of girls.

Boys start discussion to give material of xyz and ask for 
Name
Location
EMail
Mobile No
DOB
and they invite young girls to catch in sex chat traps.




http://www.pagalguy.com/forums/prep-resources/requests-offers-donate-your-old-cat-study-material-t-39056/p-8636758/

http://www.pagalguy.com/forums/prep-resources/requests-offers-donate-your-old-cat-study-material-t-39056/p-16549979/

"resume" "Gender" + "Female" "@gmail.com" site:scribd.com
"resume" "Gender" + "Female" "@gmail.com" site:docstoc.com
 "Gender" + "Female" "@gmail.com" site:www.freshersworld.com
 "Gender" + "Female" "@gmail.com" site:www.firstnaukri.com
resume "Gender" + "Female" "@gmail.com" site:www.quikr.com
 "Gender" + "Female" "@gmail.com" site:www.elitmus.com
 "@gmail.com" site:www.citehr.com

  "Female" "@gmail.com"   :.xls
gender female + resume + "@gmail.com" :.doc

"phone sex" "@gmail.com" "female"
female "@gmail.com" site:www.modelmayhem.com
female "@gmail.com" "Shoot nudes: yes" site:www.modelmayhem.com

Boys are a real asshole – we can fuck boys without dick. ;)

0
0


Hello girls this article is especially for your knowledge base.


This article help you to know boys weakness to make them slave of girls.


All boys are dogs. All boys have sex desire. Because of this desire there are so many businesses are going on.


Porn movie world
Sexologist doctors
Condoms
Sex worker
Video sex services
Sex toys
Female centric advertisement which encourage boys for sex with girls
Female centric hot music albums
Female centric dance bar
Female centric movie song
NGO send girls to get donations
Call center have girls to communicate
Receptionists are mostly girls
Air hostess
Human resource manager
News Reader
Ramp walk
And so on…


 





What actually female want and how media show them?

Porn world show girl are easily available for sex. 
Porn world invent new sex style and types of sex.
Which are not really happen in real life?
No girl like oral sex.
No mother wants to do sex with son.
No daughter wants sex with father.
No sister wants sex with brother. 

Porn star do this all type of sex because they get huge amount of money. They become millionaires from boys’ weakness.

But this article is not help any boys. This article is for all general girls who are working in some company or having own business or get married and move to husband house.

Make boys weakness as a power of yours.

Learn to give lollypop of sex to boys from which you want some work.

People said that this is the male centric world but I want to say that it was past.

Now this is women centric world.

Girl has to use their power of innocence to fuck these boys. Use boys weakness as power and fuck them when it’s needed.

In business deals or interview use your sex appeal as power.
Change your look, make it so attractive and hot. Increase size of balls.






Its very easy to make fool to boys. Just give sexy smile, blink eyes, show boobs.

Girls have monoloy of sex. That’s the reason boys have to pay for sex.

Girls have lots of options of sex.

Most of the boys look for sex once they start a new relation. Once they realize they might not get it from that girl they break this relation.

Mostly its not easy to for boys to get sex from own choice girl. So most boys do handjob [masturbation] everyday or weekly. Boys watch hot actress photos on internet. Boys watch porn to satisfy sex hunger virtually.





Most girls like to share their emotions first and body at last. But most of the boys want to fuck first and not interested in sharing of emotions.

So this is the time to fuck these assholes without penis. And use boys’ weakness of sex as a power of us.

Lets take total advantage of Innocent Look and Behavior. 
As I told you boys are a real idiot. they are easily trapped by girls false innocent behavior and work for us blindly. 

http://www.wikihow.com/Act-and-Look-Innocent-(for-Girls)

crocodile tears power of girls to look innocent and get sympathy OR girls tears turn men off


what to do after graduation in computer science?

0
0
what to do after graduation in computer science?













how to do self promotion or Self-Marketing to get new career opportunities?

0
0
how to do self promotion or Self-Marketing to get new career opportunities?





Self promotion

http://www.coachingforchange.com/pub06.html

What is self promotion?

how we make ourselves look good to others by highlighting our competence and abilities.

Benefits of self promotion


Open a new age of opportunity in your career and life



Examples of Self promotions
http://scottberkun.com
http://www.pinaldave.com/
http://www.labnol.org
http://www.hanselman.com
http://www.sandeepmaheshwari.com/
http://www.lifehacker.co.in/
http://falgunrathod.blogspot.in/
http://www.benildjoseph.com/
http://www.ankitfadia.in/
http://narendramodi.in/
http://blogs.extremeexperts.com/
http://www.mehulrathava.org/

Now lets start doing self promotion by online activities



how to do self promotion or Self-Marketing to get new career opportunities?




List of paid reference training videos links:

Up and Running with Prezi
Up and Running with LinkedIn
Up and Running with Facebook
Insights from an Online Marketer
LinkedIn for Business
Blogging for Your Business
 Writing Articles
 Facebook for Your Business 
Up and Running with Pinterest
 Google Sites Essential Training
Distributing and Marketing Ebooks
 Insights from a Content Marketer
SEO: Link Building in Depth
Twitter for Business

SEO Fundamentals

Google+ for Business

Brand Building Basics

Up and Running with Online Surveys

Twitter Essential Training

Social Media Marketing with Facebook and Twitter

Google Analytics Essential Training







Always Complete your profile in each new website registration100%

Keep a professional looking photo of yours which will use to upload most sites

Make short description of your skills to add in all created profiles and keep it handy


To make skills based description use following websites

http://www.shoutmeloud.com/abouthttp://trak.in/about-trakin-india-business-buzz-about-me/http://savedelete.com/abouthttp://techpp.com/about/
read profile description of other on Linkedin
























Create account on following mailing websites
Gmail
Yahoo
Rediff
MSN
AOL

 








Make excel sheet which can track all account details username, password, security question, Social login








Now its time to create 2 main blogs
Create account on wordpess
and create blog on Blogger
Keep track of  account details on excel






Now we start creating account on Social websites as following

Facebook
Twitter
Google +
Linkedin
Orkut
Always Complete your profile in each new website registration100%


What is Social Login?

Allow new users to register and login to your site with Facebook, Twitter, LinkedIn, Google, Yahoo! and other social networks



and now start creating account on following social sites 
Keep logging in in all websites till whole exercise done
Always Complete your profile in each new website registration100%

about.me



How to customize public URL in LinkediN?

http://help.linkedin.com/app/answers/detail/a_id/87

http://homebusiness.about.com/od/linkedin/qt/linkedin-custom-profile-url.htm

How to customize public URL in facebook?
https://www.facebook.com/note.php?note_id=457770375843



keep Facebook, LinkedIn, Twitter, google+ public URL at excel sheet

Examples of public URLs


Signing Up and Setting Up Your Profile 

Writing Your Profile 
Headline 
Summary  
Specialties 
Skills & Expertise  

Linking  
Adding External Links 
Setting Your Profile URL 

Uploading a Photo  
Adjusting Your Settings 


Building Your Network 
Finding Relevant Connections 
Personalizing Invitations 
Managing Your Network 



Maximizing Your LinkedIn Presence  
Requesting Recommendations 
Requesting Introductions 
Joining Groups 
Keeping Your Profile Current 
Posting Status Updates 
Syncing Your Twitter Feed 
Using LinkedIn Buttons 
Setting Up a Company Page


make a Wikipedia page for yourself



Make your profile with full of images on Facebook, Google+, Linkedin, Twitter, Youtube and other social sites

picmonkey.com– Picnik is offline but PicMonkey is an even better image editor.

sumopaint.com– an excellent layer-based online image editor.

Dimensions of Images for following


facebook timeline image dimensions 851px by 315px

facebook profile photo  dimensions 160x160 pixels

facebook page timeline cover dimensions 851px by 315px

facebook group header width 801 x Height 250

facebook application icon on facebook page 111x74px

google + timeline photo
google + profile photo
google + page timeline photo
google + communities header photo
Linkedin profile photo
Linkedin Group image
orkut profile pic
Twitter profile pic
twitter timeline pic
twitter backgroud image
youtube channel header image





Read Find a Job Through Social Networking Use LinkedIn, Twitter, Facebook, Blogs and More to Advance Your career





make Facebook  fanpage, Facebook  group
make LinkedIn group
make Google + page, communities


Create Facebook fan page and keep URL of fanpage in Excel
How to create Facebook page?

Create Facebook group and keep URL of group in Excel
How to create facebook groups?

The like box is a social plugin that enables Facebook Page owners to attract and gain likes from their own website.

Building Custom Tabs (Apps) for Facebook Pages

using Facebook app you can add your website or blog or video URL on your Facebook fan page


get code for LinkedIn badge and keep it at excel for reuse

How to add a LinkedIn badge to your website

get code for Facebook badge  and keep it at excel for reuse

make profile on freelancing websites
Always Complete your profile in each new website registration100%
list of freelancing websites
http://www.hongkiat.com/blog/50-freelance-job-sites-for-designers-programmers-best-of/
https://www.odesk.com/
https://www.elance.com/
http://www.freelancer.com/
http://guru.com/
http://www.ifreelance.com/
http://www.peopleperhour.com/
http://99designs.com/
http://www.utest.com/create-account


make profile on video sites
list of video sites
Always Complete your profile in each new website registration100%

 http://www.ebizmba.com/articles/video-websiteshttp://websearch.about.com/od/imagesearch/tp/popularvideosites.htm
http://www.freemake.com/blog/top-7-free-video-sharing-sites/

YouTube.com
Dailymotion.com
Veoh.com
Vimeo.com
metacafe.com
BoFunk.com
Photobucket.com
http://videobam.com/
iviewtube.com
Spike.com
http://archive.org/index.php

Always Complete your profile in each new website registration100%

create profile on music hosting sites
http://www.producingbeats.com/10-Sites-You-Should-Be-Uploading-Your-Music-To

list of music sites

https://soundcloud.com/
http://www.voices.com/



blogger to wordpress

blogger to tumblr

blogger to LiveJournal

wordpress to blogger converter

Free Online Portfolio Hosting Sites
coroflot
Always Complete your profile in each new website registration100%



make a Wikipedia page for yourself





professional networking sites
http://www.indianweb2.com/2009/06/emerging-professional-netoworking-sites-india/




register for programming sites /Free source code and tutorials
Create account in codeproject using social login
complete profile 100%


register on online document viewer sites like  

do keyword research using Google keyword tool

Configure your blog settings

configure your blog on Google Analytics

each blog should have Blog title, Blog description, Blog category, Tags

Check out codeproject, csharp corner and ehow wiki article submission guideline

Write appropriate tags for each blogs

which can help search engine and users to reach @ your blog

Add appropriate Title Tag, meta tag, Header tag, anchor tag, alt tag, image name and description and alt tag

start with blogs like pinaldave.com

How to write best blog description?
in blog description
write problem sentence/ Headline of blog
Prerequisite
Short explanation
Definitions
Detailed explanation
Images
Steps
code
videos
conclusion
Notes
Comparion
Related articles
Next and previous articles

Interlinking of articles

How to write blog?
Write all blogs easy to read, full of examples and images and example screencast

Write technical article which are mostly search by people
Write articles based on everyday reading and skills you developed
Don't just copy pastes others article to your website
You can rewrite with your own words and explanation of others articles
Plan your blog before start writing
Choose theme you want to apply
customize your theme

Learn basic OnPage SEO
Learn basic offpage SEO


Use SEO tricks to be good rank on Search engine like Google, Bing


Check out other people's blog to get ideas of writing blogs
Top Earning Blogs – Make Money Online Blogging

How to do screencasting labnol.org ?

http://www.labnol.org/tag/screencasting/

plan pages you want to add to your blog

some sample pages 

Home
About ME
Example:

My Resume

Contact ME
Reviews
How-to-Guide
Ready to use Codes
Interview Question Answer
Jobs
List of Software companies
Guest Articles submission
FAQs
Example: 
http://www.labnol.org/faq/
Glossaries
Career Help
References
Advertisement
Sponsor
Donate
archive
Copyright
Terms and Conditions
Disclaimer
Articles
Tools
Code Snippets
Links
Tips & Tricks
Resources
Follow Blog via Email
About me

Add widgets

hits Stats
Archives
Tags
Email Subscription /Subscribe to Blog via Email
Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Famous Posts
Recent Posts
Categories
My Twitts



now use automated feed generating sites to generate blog feed on social site
feedburner
twitfeed

list of feed generating site
feed your blog to google plus
Live Traffic Feed

http://feedjit.com/freeLiveTrafficFeed/



join technical forums

participate in existing conversations

create signature in all forum sites and ask questions on forums or give answer of questions on forums

your signature should contain your blog address

rewrite all technical question and answers in your words and publish on blog

list of top indian blogger
http://bloggerspassion.com/best-indian-blogs/

list of MVP
http://www.microsoft.com/india/mvp/indiamvp.aspx
How to become MVP?

http://mvp.support.microsoft.com/



follow/subscribe to technical YouTube channels, Blogs, Twitter, FB fabpage and fb groups, Google groups, LinkedIn groups

http://www.youtube.com/PMInstitute
http://www.youtube.com/user/PTeducationHQ
http://www.youtube.com/user/MICAchannel
http://www.youtube.com/user/SMCSchannel
http://www.youtube.com/user/TEDtalksDirector
http://www.youtube.com/user/TEDEducation
http://www.youtube.com/user/who
http://www.youtube.com/user/PreziVideoChannel



Follow authors on twitter
Follow authors wordpress blog

Lynda.com authors
http://www.lynda.com/home/authors.aspx
Pluralsight authors
http://www.pluralsight.com/training/Authors



https://www.video2brain.com/en/trainers




How do I invite someone using their email address?
http://help.linkedin.com/app/answers/detail/a_id/28427

HR email Ids for LinkedIn connections expansions 1261
http://pastebin.com/t4z2sGwy

HR email ID for CiteHR using live.com
http://pastebin.com/jnB34aiq


Your self brand is for your fan. Build relationships with them, reach new people and drive audience using Facebook.

How do I invite my friends to connect with my Page via email?

https://www.facebook.com/help/212291088790957/


List of Animated Video Maker sites like GoAnimate

Video scribing and Whiteboard Animation

put video scribe video on blog home page
put goanimate video on blog home page



Salary survay by naukri.com


Make profiles on job portal
List of job portals

http://connectaus.blogspot.in/2009/06/5-best-job-search-portal-in-australia.html
http://www.cmcjobsonline.com/home




Copyscape is a free plagiarism checker. The software lets you detect duplicate content and check if your articles are original.
http://www.copyscape.com/banners.php?o=f

Creative Commons licenses provide a flexible range of protections and freedoms for authors, artists, and educators.
http://creativecommons.org/

add copyright statement at blog footer

A copyleft notice
The content of this blog is work in progress. I know it is very far from being perfect. There are typos and a lot of claims could be even wrong! You can help me to improve it. Take this material and rielaborate as you prefer. If you have better ideas, discuss them in your blog. If you see an alternative way to do something, do it! Don't be embarrassed about mistakes. It's the only way to produce knowledge.

How to make Google forms?

How to make Google site?

how  to make free site with indiagateonline.in
How to create Paypal account
https://www.paypal.com/c2/cgi-bin/webscr?cmd=xpt/Marketing/general/how-to-set-up-a-paypal-account-outside


Join Facebook Groups:
https://www.facebook.com/groups/punejobseekers/
https://www.facebook.com/groups/itjobsindia/
https://www.facebook.com/groups/job.freshers/
https://www.facebook.com/groups/131598890321143/
https://www.facebook.com/groups/offcampusdrive/
https://www.facebook.com/groups/287114977996182/
https://www.facebook.com/groups/punejobseekers/
https://www.facebook.com/groups/getnaukri/
https://www.facebook.com/groups/426847284027106/
https://www.facebook.com/groups/EngineersFreshersForum/
https://www.facebook.com/groups/146211682107522/
https://www.facebook.com/groups/csharp.programming/
https://www.facebook.com/groups/jobsoverindia/
https://www.facebook.com/groups/offcampusmncgovt/
https://www.facebook.com/groups/elitmusforum/


Forums:
http://www.fresherplus.com/
http://educationcareer.in/
http://www.htcampus.com/
http://engineering.learnhub.com/
http://www.indiastudychannel.com/


gujarat pgcet - post graduate common entrance test - question Banks

0
0
Phase defination is covered in:


Which is a black box testing method?
A Equvivance partitioning

A Metrics used to measure the charestric of documentation and code is called
C Product Metric


A Non Functional Testing is called

A Perfomance Testing

1) Testing fault 2) Software fault 3) Design fault 4) Documentation Fault

D
All of them are valid reasons for

failure

Which of the following statements about component testing is not true?

A
Component testing should be
performed by development

7 Function/Test matrix is a type of

B Interim Test report

A reliable system will be one that:


B  Is likely to be fault-free


In unit testing of a module, it is found that for a set of test data, at the maximum 90% of the code alone were tested with the probability of success 0.9. The


A At most 0.81


A program P calls two subprograms P1 and P2. P1 can fail 50% times and P2 can
fail 40% times. The program P can fail ?
D 70%
Equivalence partitioning is:


C
A black box testing technique
appropriate to all levels of testing


To test a function, the programmer has to write a ______, which calls the


function and passes it test data.
B Driver



A company needs to develop a strategy for software product development for which it has a choice of two programming languages L1 and L2. The number of lines of code (LOC) developed using L2 is estimated to be twice the LOC developed with Ll. The product will have to be maintained for five years. Various parameters for the company are given in the table below.
Parameter
Language L1
Language L2
Man years needed for development
LOC/10000
LOC/10000
Development cost per man year
Rs. 10,00,000
Rs. 7,50,000
Maintenance time
5 years
5 years
Cost of maintenance per year
Rs. 1,00,000
Rs. 50,000
Total cost of the project includes cost of development and maintenance. What is the LOC for L1 for which the cost of the project using L1 is equal to the cost of the project using L2?
(B) 5000



A company needs to develop digital signal processing software for one of its newest inventions. The software is expected to have 40000 lines of code. The company needs to determine the effort in person-months needed to develop this software using the basic COCOMO model. The multiplicative factor for this model is given as 2.8 for the software development on embedded systems, while the exponentiation factor is given as 1.20. What is the estimated effort in person -months?
(A) 234.25

Use Case is used for

B Capture requirements

Code review is for

D none of the above.

Stress testing measures

C
The poit at which system break
down

QTP is

A Testing tool

Metric based technique is for

A estimating testing effort

Is it possible to have a software product with "Zero defect"?

A No

A Testing which detect the defects in fully functional software is

D None of the above.


Pesting Paradox in testing testcase is

A By repetating test case, remove errors


Face to face Communication is in


W - model is updation of

C V- Model

Test Planning includes

A Test Strategies

Example of Testing Tool
D all of the above.

Non functional testing tool

A Load Runner


To Detect cracks and Holes in the networks by
B Hardening testing

Data independence means

D Unit testing

COTS is
B Commercial off the shelf

COTS example is
D all of the above.

Required Skill of Test Manager

D all of the above.

COTS is for

Reliability


Which testing divides input domain into class for testcase?

Equivalence Testing

Types of review

D all of the above.

Group Activity can be seen in

B WalkThrough

the person who records the proceeding of review meeting is

B Author

SRS is an artifact of
A Analysis phase

Nonfunctional requirement is
D All of above

Evaluating Software during various phases of SDLC is called

D all of the above.

disadvantage of prototype model is 

C Not applied to real time system

Risk Analysis phase is in

B Spiral Model

advantage of prototype model is
A User Get Idea about system

Important aspect of coding is

B efficiency

Data structure of application is in
A Architectural design

RAD model was proposed by

A IBM

Which of the following is in design stage…



If n number of programmers are in team , then number of paths is


if 99% code is written in C and 1% code is written in assembly language then
increase in execution time compare to 1% code written in assembly language is


Which of these is not element in object oriented analysis model



Relationship shown in data model is for




UML diagram is useful in representing

B Class base element

Behavior modeling is for




References:

http://www.softwaretestinggenius.com/download/aitmuds.pdf
http://edugrip.blogspot.in/2012/09/software-engineering-mcq-questions-and.html
http://edugrip.blogspot.in/2012/09/software-engineering-mcq-questions-and.html
http://channel-oneknowledgeformanendragarh.blogspot.in/2011/08/solved-previous-year-question-paper-of.html
http://einterviewquestions.com/to-test-a-function-the-programmer-has-to-write-a-______-which-calls-the-function-and-passes-it-test-data/
http://www.softwaretestinghelp.com/test-your-software-testing-knowledge-take-this-mock-test/
http://www.guide4gate.com/CSE_2011_page_01.html
.http://www.questionpapers.net.in/gate_question_papers/computer_sciences/computer_science_and_information_technology_2011.htm
http://www.questionpapers.net.in/gate_question_papers/computer_sciences/computer_science_and_information_technology_2011.htm
http://gpl4you.com/gateaskedquestion-1749-A-company-needs-to-develop-digital-signal-processing-software-for-one-of-its-newest-inventions-The
http://media.careerlauncher.com.s3.amazonaws.com/CS_GATE%202011_Explanations.pdf
http://books.google.co.in/books?id=bOGknPAi1LIC
http://my.safaribooksonline.com/book/software-engineering-and-development/software-testing/9788177581218/principles-of-testing/ch01lev1sec8
http://www.linkedin.com/groups/What-is-pesticides-paradox-software-86204.S.92761182
http://books.google.co.in/books?id=bOGknPAi1LIC&pg=PA124&lpg=PA124&dq=To+Detect+cracks+and+Holes+in+the+networks+by+Hardening+testing&source=bl&ots=XfKx4FBOn3&sig=0_0fRd8cVye7xmy3bJCvvi2uNKA&hl=en&sa=X&ei=zmrpUbeVG8a4rgeprIDwDg&ved=0CC0Q6AEwAA#v=onepage&q=To%20Detect%20cracks%20and%20Holes%20in%20the%20networks%20by%20Hardening%20testing&f=false
http://www.softwaretestinghelp.com/what-is-boundary-value-analysis-and-equivalence-partitioning/
http://www.processimpact.com/articles/inspects.html
http://www.ianswer4u.com/2011/11/prototype-model-advantages-and.html#axzz2ZVm5L0r5
http://www.ianswer4u.com/2011/12/spiral-model-advantages-and.html#axzz2ZVm5L0r5

Testing SalesForce Recruiting application with Selenim and TestNG

list of staffing and recruiting agencies in Australia





Latest Images