Tuesday 30 May 2017

Top Web Designing Interview Questions & Answers

Web Designing Training in Chennai
1. Explain how can you set an image as a background on web pages?

To set an image as a background on web page, point the body background to the name of your image you want to set as a background as shown below.
</head>tag.
<body background= “picture.gif”>

You can also fix the background image, so while using the scroll bar in the browser, it does not move.  To do this add the BGPROPERTIES tag as shown below

<body background = “picture.gif”bgproperties=”fixed”>

2Explain what is a Dreamweaver Template?

Dreamweaver Templates enables webmasters to define “non-editable” and “editable” regions of a webpage, only in Dreamweaver template the “non-editable” regions can be edited.  Any changes implemented to the Dreamweaver Template will update any HTML pages that use the template.

3. In CSS when you will use CSS float?
In CSS, you would use CSS float when you want to make an element of your page be pushed to the right or left and make other elements wrap around it. Web Designing Training in Chennai

4. How to add scrolling text to my page?
Keep in mind not all browsers support scrolling text. however to do this add a tag similar to the below example. < marquee >THIS WOULD SCROLL< /marquee> The above example would create the below scrolling text. If your browser supports scrolling text the below example should be scrolling. More examples can be found on our main HTML page that lists most of the HTML commands.

5. What is external Style Sheet and How to link it?
Ans. External Style Sheet is a template/document/file containing style information which can be linked with any number of HTML documents. The file is linked with HTML documents via the LINK element inside the HEAD element. Files containing style information must have extension .css, 
e.g. style.css. < HEAD > < LINK REL=STYLESHEET HREF=”style.css” TYPE=”text/css”> < / HEAD>
Web Designing Training in Chennai
6. How do I make it so that someone can mail me by just clicking on text with subject?
 It’s very easy we can do it by using mailto command in AHREF link tag example give below:
< A HREF=”mailto:kapil@speakingtechnically.com?Subject=Enquiry” “>Click here to mail Speaking Technically< / A>

7. What does “1”+2+4 evaluate to?
Since 1 is a string, everything is a string, so the result is 124.

8. How many HTML tags are should be used for the most simple of web pages?
4 pairs of tags.
<HTML>
<HEAD>
<TITLE>Simplest page ever!</TITLE>
</HEAD>
<BODY>
Doesn’t get simpler than this.
</BODY>
</HTML>

9. What is the difference between SVG and <Canvas>?
 <Canvas> is an element that manipulates two-dimensional (2D) pixels while Scalable Vector Graphics works in 2D and three-dimensional (3D) vectors. Essentially, <Canvas> is to SVG as Photoshop is to Illustrator.

10. What is WebSQL?
WebSQL is a structured relational database at the client browser side. It’s a local RDBMS inside the browser on which you can fire SQL queries.




Saturday 27 May 2017

Salesforce for Freshers


Salesforce is a Customer Relationship Management tool (CRM).  Salesforce CRM helps to track all the customer information and interactions in one location to another leads. Salesforce Training in Chennai The Lead Management, Marketing Automation, Sales Data, and Partner Management apps let you to follow these leads until they are ready for conversion.

How does Salesforce works?
This software can also raise the sales team productivity when they are on location, or at the office. If you are using salesforce, if you have a great chance to become an employ five main data objects to keep track of your sales process and lead generation efforts. The objects are accounts, contact, opportunities, leads, and campaigns.

Leads are separate from these the objects. These peoples are shown huge interest in your company but they can’t enough time to take the next step in the sales process. Basically leads are generating by our company for particular process like marketing efforts, speaking engagements, etc...

Salesforce Training in Chennai


Benefits of Salesforce Technologies
Now, salesforce is one of the leading and very hot technology in IT industry. And lots of job opportunities are available in IT sectors for salesforce developer and salesforce administrators.
And more over, salesforce is one of the cloud computing technologies.  So which have bright future in the upcoming years.

Salesforce is used to help of develop our own application or if you need any in Build application, you can buy from application exchange.

Why Salesforce for Besant Technologies
Besant Technologies is the best IT training institute in Chennai, who offer Best Salesforce Training Institute in Chennai by real-time professional experts. Our trainers having more than 10+ years’ experience and presently working in IT sectors. So, they are taking classes from real-time manners with real-time scenarios. After completion of course we will arrange placements in top MNC’s. further info reach us +91-9962528293.  






Monday 22 May 2017

Opportunities in Android Development

Now days the mobile device market is increasing at an express speed. So, use this opportunities and learn Android Training in Chennai to become a Mobile Application developer. According to IT sectors, need more developers for mobile application development.

Why Android?
Android Course in Chennai


Procedure to Becoming a Mobile Application Developer

As a Mobile Application developer used to create a mobile application development with the help of popular programming like, C, C++, Java.  The particular languages are naturally supports on what mobile platform and OS it is they are creating the apps for.

The following criteria degree members can only pick to study the software application development (Android).
Computer Science
Software Engineering
Mobile Computing
Or any related field of study that is program based.

Huge Demand for Android skill

IT professionals with mobile development skills are a hot commodity right now and the demand for Android developers is even hotter. Employers are hiring Android developers much faster and more in numbers than any other professionals in mobile technology.

Android supports hundreds millions of mobile devices in more than 150 countries around the world.It's the largest installed base of any mobile platform and growing fast. Every day more than 1 million new Android devices are activated worldwide.

Android Training in Chennai

Besant Technologies will Help your to Becoming a Android Developer.

Besant Technologies in Tambaram is the most leading and real-time IT training institute in chennai. More than 10,000+ students get certified with our professional training. More over our faculties members having more than 10+ years experience and currently working in IT sectors. We offer Android Training in Chennai with best placement assistance. Further info make a call us at +91-9962528293 or visit our web. 








Friday 19 May 2017

Top Selenium Interview Question & Answers

trainingintambaram.in
Selenium Training in Chennai
1. How will you find an element using Selenium?
In Selenium every object or control in a web page is referred as an elements, there are different ways to find an element in a web page they are
  • ID
  • Name
  • Tag
  • Attribute
  • CSS
  • Linktext
  • PartialLink Text
  • Xpath etc
2. What is the difference between type keys and type commands ?
TypeKeys() will trigger JavaScript event in most of the cases whereas .type() won’t. Type key populates the value attribute using JavaScript whereas .typekeys() emulates like actual user typing
3. What is the use of xpath ?
It is used to find the WebElement in web page. It is very useful to identify the dynamic web elements. Selenium Training in Chennai
 4. What are the advantages of Selenium?
  • It supports C#, PHP, Java, Perl, Phython
  • It supports different OS like Windows, Linux and Mac OS
  • It has got powerful methods to locate elements (Xpath, DOM , CSS)
  • It has highly developer community supported by Google
5. How do you achieve synchronization in WebDriver ?
Syntax- driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
Here it will wait for 10sec if while execution driver did not find the element in the page immediately. This code will attach with each and every line of the script automatically. It is not required to write every time. Just write it once after opening the browser.
6. What is Selenium Grid ?
Selenium-Grid allows you to run your tests on different machines against different browsers in parallel. That is, running multiple tests at the same time against different machines, different browsers and operating systems. Essentially, Selenium-Grid support distributed test execution. It allows for running your tests in a distributed test execution environment.
7. What is the difference b/w close() and quit()?
close() – it will close the browser where the control is.
quit() – it will close all the browsers opened by WebDriver.
8How you can use “submit” a form using Selenium ?
You can use “submit” method on element to submit form-
element.submit () ;
Alternatively you can use click method on the element which does form submission
9Mention what is the difference between Implicit wait and Explicit wait?
Implicit Wait: Sets a timeout for all successive Web Element searches. For the specified amount of time it will try looking for element again and again before throwing a NoSuchElementException.  It waits for elements to show up.
10Explain what is Datadriven framework and Keyword driven?
Datadriven framework:  In this framework, the test data is separated and kept outside the Test Scripts, while test case logic resides in Test Scripts.  Test data is read from the external files ( Excel Files) and are loaded into the variables inside the Test Script.  Variables are used for both for input values and for verification values.
Keyworddriven framework: The keyword driven frameworks requires the development of data tables and keywords, independent of the test automation.  In a keyword driven test, the functionality of the application under test is documented in a table as well as step by step instructions for each test.




Tuesday 16 May 2017

Basics of Software Testing

Testing is the method of estimating a system and its components with to find out that whether the process is satisfied the specified requirements or not.
Testing is mainly used to executing a system in order to find the errors or gaps in annoying to the authentic requirements.
Software Testing is basically the process of evaluation software’s to find the differences between giving input & expected output. And Testing is one of the processes it executes whether during the development process of software.
The testing job is a frequentative method as when one error is altered it can be continued other more profound bugs or can even make new ones.
Importance of Software Testing in SDLC:
SDLC stands for Software Testing Life Cycle. This is one of the methodologies which are used for the computer based information system. The progress of the information has to pass via various stages, and these stages known as Software Development Life Cycle. The SDLC contain following Stages,
  • Requirement
  • Analysis
  • Design
  • Coding
  • Testing
  • Implementation
Validation and Verification
Validation - is the process evaluating work product which means not the actual final product of a development stage whether they meet the specified requirement.
It is mainly used to “identify defects in the product early in the life cycle”.
Verification: Is the Product Right
Untitled design (5)
Verification - The process of evaluating software during or at the end of the development process to determine whether it satisfies specified business requirements.
Validation  : Is it the Right Product.
Why Software Testing Course?
Software Testing Course will help you to understand software testing from the beginning and will help you became familiar in testing software, before that you would choose the best training institute to learn Software Testing. It’s the most important thing to become a software testing developer.
In that way, Besant Technologies is the best institute and they will make you a software developer. Yes besant technologies is the most leading IT training institute in Chennai. This offers Software Testing Training in Chennai from real-time experts with best placement assistance. 

Original Source: https://flowerjeni30.wordpress.com/2017/05/16/basics-of-software-testing/







Friday 12 May 2017

Interview Question & Answers for Software Testing 2017

1. Explain bug life cycle.
• When a tester finds a bug, the bug is assigned NEW or OPEN with status.
• The bug is assigned to Development Project Managers who will analyze the bug. They will check whether it is a valid defect. If not valid, the bug is rejected, and its new status is REJECTED. Software Testing Training in Chennai
• Now, the tester checks whether the similar defect was raised earlier. If yes, the defect is assigned a status ‘DUPLICATE’
• Once the bug is fixed, the defect is assigned a status ‘FIXED’
• Next the tester will re-test the code. In case, the test case passes, the defect is CLOSED
• If test case fails again, the bug is RE-OPENED and assigned to the developer.
2. What is elementary process?
Software applications are made up of several elementary processes. There are two types of elementary processes:
– Dynamic elementary Process: The dynamic elementary involves process of moving data from one location to another. The location can be either within the application or outside it. Software Testing Training in Chennai
– Static elementary Process: It involves maintaining the data of the application.
3. What are the tools of performance testing?
Some popular commercial testing tools are:
  • LoadRunner(HP): This testing tool contains a wide array of application environments, platforms and databases. It is typically suitable for web applications and others.
  • QAload(Compuware): This tool is used for load testing of web, database and char-based systems.
  • WebLoad(RadView): It is used to compare running tests with test metrics.
  • Rational Performance Tester (IBM): It allows finding out the presence and cause of bottlenecks.
  • Silk Performer (Borland): This testing tool lets you predict the behavior of e-business environment.
4. Explain the concepts of Test Fusion Report of QTP.
Test Fusion report displays different aspects of the test run, soon after the tester runs a test. The Test Fusion report is used to display all the aspects of test run, it specifies where the application failures occurred, the test data used, and the detailed explanation of every checkpoint stating pass or failure and the application screen shots of every step by highlighting the discrepancies.
Test Fusion Report is a compilation of the entire testing process. It includes an overview of where the failures occurred, the test data that was used in testing, screen shots to support inconsistencies and detailed view of checkpoints.

Original Source: https://flowerjeni30.wordpress.com/2017/05/12/interview-question-answers-for-software-testing-2017/ 


Tuesday 9 May 2017

Career Growth in Android

The market for the mobile device is rising at a rather fast pace. There are approximately 1.4 billion android devices in the entire world and android dominates the market of Smartphone with a global market share of 82%. In case you are thinking of becoming an Android developer, you are in great luck. To be a developer you need to get appropriate Android Training in Chennai wherein you would get familiar with every aspect of android developing right from the beginner’s level to the advanced level.
In case you aren’t quite sure about the reasons of why you should become an Android developer, here are a few of them.
Huge Demand
All the IT professionals possessing the skills of mobile development are in huge demand currently. The requirement for Android developers is even higher. The companies these days are hiring Android developers more than any other professionals in the mobile technology. For the aspiring Android developers, this is just the right time to enhance your skills and apply for a job.
Android Training in Chennai

Handsome Salary
People often don’t admit as to how important money is. But, on an honest note, it is quite important. The companies these days are ready to offer handsome pay packages to the skilled Android developers. In fact, the pay scale for the skilled professionals is approximately 77% higher compared to the average salaries of other jobs. This means that opting for an Android Training at this time would, in fact, be a wise decision.
Attractive Scholarships
Not many people would be aware of it but, Android developers are actually providing scholarships to certain aspirants who want to become Android developers. This is, in fact, happening in partnership with Google. This means that the path to a sought after career as an Android developer is now largely open.
Whether you are just beginning to program or have already started to build apps, the opportunity is for all.
There has been a progressive growth for the Android in the recent years. And this would continue to grow. The opportunities that an Android developer would get with the training are innumerable. With appropriate training, you can rest self-assured that you are on the right career path.

Original Share: https://flowerjeni30.wordpress.com/2017/05/09/career-growth-in-android/

Friday 5 May 2017

The Ultimate Guide to Python

Do you want to clearly understand the programming language? If yes, python training course can be the appropriate option to fulfill your desire. Python training course includes the basic and advanced level of Python like Hadoop streaming, MapReduce in Python, machine learning, and also practical work experience with Scikit and Scipy. If you are in Chennai, some well-known training centers are there to provide comprehensive and practical training of Python. Python Training in Chennai would be the best option for anyone hoping to get a job in this industry. Let us have a look at what does the training program include:

Python Training in Chennai

The contents of Python training course

The candidates will learn about the basic knowledge, importance and installation procedure of Python. They will obtain concept on file and sequence operations. The training will provide an idea on MapReduce concepts for Hadoop deployment. You can learn OOP (Object Oriented Programming), data types, expressions and looping and others. The course includes knowledge to implement SQLite in Python, operations, functions and also how to define the class. The trainees will get the knowledge to use Python to write and deploy Pig UDF and Hive UDF. The candidates will gather sufficient knowledge on machine learning algorithms of Python. You will get Python professional certificate on completion of the course.

Eligible persons to take Python scripting training course


  •      Project managers and BI managers
  •           ETL professionals and software developers
  •           Big data professionals
  •           Analytics professionals
  •            Individuals who want to make a career in Python


Basic criteria to attend Python Training

You need to have basic knowledge of programming.

Importance of Python training 


  •  Designs and libraries of Python are 10 times productive than C, Java and C++.
  •     A senior Python developer can get good opportunity to earn more money.
Python is becoming very popular object-oriented language because it is easy to learn and implement. You can run this on several platforms like Linux, Windows and Mac thus it is highly compatible for the data analytics domain. After completion of the training, you will get the opportunity to work in the big data environment of Hadoop with high salary.

Python Training in Chennai


Real world project 

A real world project is included in the training to provide the concept of scrapping data from Google finance and IMDB. The candidates have to perform analysis over the live tweets obtained from twitter. The system should have a 3 GB RAM and a processor with more than core2 duo. You will learn how to set up a virtual machine in your system with Python IDE installed. If your system does not meet the prerequisite, you can directly install Python on your system.


If you are an experienced professional or beginner or want to learn programming with Python, it is high time to join the course. It is suitable for the professionals who aim to build a career in big data analytics with Python.

In the recent times, there has been a growing demand for Python. By opting for Python Training in Chennai, you would be able to understand each and every aspect of the programming language and use it efficiently in practical situations.