Top Ads

Font Banner - Free Fonts

C Language Variables Interview Questions

Download C Language Variables Interview Questions graphic type that can be scaled to use with the Silhouette Cameo or Cricut. An SVG's size can be increased or decreased without a loss of quality. All of our downloads include an image, Silhouette file, and SVG file. It should be everything you need for your next project. Our SVG files can be used on adhesive vinyl, heat transfer and t-shirt vinyl, or any other cutting surface

C Language Variables Interview Questions
 

1. What is a variable in C language?
Variables are memory location in computer's memory to store data. To indicate the memory location, each variable should be given a unique name called identifier.

Variable names are just the symbolic representation of a memory location. Examples of variable name are sum, car_no, count etc.
 
int num;
Here, num is a variable of integer type.

2. Give the rules for variable declaration?
The rules for variable declaration in C are given below:

•    A variable name consists of alphabets, digits and the underscore (_) character.
•    The length of variable should be kept upto 8 characters though your system may allow upto 40 characters.
•    They must begin with an alphabet.
•    Some systems also recognize an underscore as the first character.
•    White space and commas are not allowed.
•    Any reserved word (keyword) cannot be used as a variable name.

3. How to declare a variable in C language?
All variables must be declared before we use them in C program, although certain declarations can be made implicitly by content.

To declare a variable you specify its name and data type it can store. The variable declaration always ends with a semicolon (;)

A declaration specifies a type, and contains a list of one or more variables of that type as follows:
type variable_list;

Here, type must be a valid C data type including char, int, float, double, or any user defined data type etc., and variable_list may consist of one or more identifier names separated by commas.

A variable can be declared multiple times in a program, but it must be defined only once.

4. How to assign values to a variable?
A variable can be considered as a box that can hold a single value. However, initially the content of a variable (or a box) is empty.

Therefore, before one can use a variable, it must receive a value. Do not assume the compiler or computer will put some value, say 0, into a variable.

There are at least three ways to put a value into a variable:

•    initializing it when the program is run
•    using an assignment statement
•    reading a value from keyboard or other device with a READ statement.
Variables may have values assigned to them through the use of an assignment statement.

Such a statement uses the assignment operator =
This operator does not denote equality.  It assigns the value of the right-hand side of the statement (the expression) to the variable on the left-hand side.
Examples:
    Diameter = 5.9;
    Area = length * width;

Note that only single variables may appear on the left-hand side of the assignment operator

Initializing a variable is only done exactly once when the computer loads your program into memory for execution.

That is, all initializations are done before the program starts its execution. The use of un-initialized variables may cause unexpected result.

5. What is the difference between declaring a variable and defining a variable?
Declaration of a variable in C hints the compiler about the type and size of the variable in compile time. Similarly, declaration of a function hints about type and size of function parameters.

No space is reserved in memory for any variable in case of declaration. Example: int a; Here variable 'a' is declared of data type 'int' Defining a variable means declaring it and also allocating space to hold it. We can say "Definition = Declaration + Space reservation". Example: int a = 10; Here variable "a" is described as an int to the compiler and memory is allocated to hold value 10.

6. Define the term Scope, Visibility and Lifetime of a Variable?
The scope of a variable is the range of program statements that can access that variable.

The lifetime of a variable is the interval of time in which storage is bound to the variable.

A variable is visible within its scope and invisible or hidden outside it.

7. What are the different types of variables depending on variable scope?
Depending on the scope of variables in c language, variables could be classified as follows:

Global Variables:
Global variables in C have their declaration outside the function definition of all functions used within the program and remains in the memory as long as the program is executing.

All global variables in c could be accessed from anywhere in program which means that any expression in the program can access the global variable regardless of what block that expression is written.

Thus, the global variables have their scope global.

Local Variables:
Local variables are declared with in a function definition and thus could only be accessed from anywhere in that function in which it is declared.

Thus, local variables have their scope local to the function in which they are declared and are unknown to other functions outside their own function.

Local variables are defined and initialized every time a function containing them is called and as soon as the compiler exits from that function, the local variable is destroyed.

8. What is a storage class in C language?


A storage class is an attribute that tells us where the variable would be stored, what will be the initial value of the variable if no value is assigned to that variable, life time of the variable and scope of the variable.

9. What are different types of storage classes in C language?
Storage class tells us:

?    Where the variable is stored.
?    Initial value of the variable.
?    Scope of the variable. Scope specifies the part of the program which a variable is accessed.
?    Life of the variable.
There are four storage classes in C:

•    Automatic storage class
•    Register storage class
•    Static storage class
•    External storage class

10. What is an automatic storage class in C language?
The keyword for automatic storage class is auto. Variables declared inside the function body are automatic by default.
These variables are also known as local variables as they are local to the function and don’t have meaning outside that function since, variable inside a function is automatic by default, keyword auto are rarely used.

11. Where is the auto variable stored?
Auto variables can be stored anywhere, so long as recursion works. Practically, they’re stored on the stack. It is not necessary that always a stack exist. You could theoretically allocate function invocation records from the heap.

12. What are the advantages of auto variables?
•    The same auto variable name can be used in different blocks.
•    There is no side effect by changing the values in the blocks.
•    The memory is economically used.
•    Auto variables have protection because of local scope.

13. What are register variables? What are the advantages of using register variables?
If a variable is declared with a register storage class, it is known as register variable.

The register variable is stored in the CPU register instead of main memory. Frequently used variables are declared as register variable as its access time is faster.

14. What does static variable mean?
Static variables are the variables which retain their values between the function calls. They are initialized only once their scope is within the function in which they are defined.

15. What is external storage class?
External variable can be accessed by any function. They are also known as global variables. Variables declared outside every function are external variables.

In case of large program, containing more than one file, if the global variable is declared in file 1 and that variable is used in file 2 then, compiler will show error.

To solve this problem, keyword extern is used in file 2 to indicate that, the variable specified is global variable and declared in another file.

16. Can static variables be declared in a header file?
You can’t declare a static variable without defining it as well (this is because the storage class modifiers static and extern are mutually exclusive).

A static variable can be defined in a header file, but this would cause each source file that included the header file to have its own private copy of a variable, which is probably not what was intended.

17. Is it acceptable to declare/define a variable in a C header?
A global variable that must be accessed from more than one file can and should be declared in a header file. In addition, such a variable must be defined in one source file.

Variables should not be defined in header files, because the header file can be included in multiple source files, which would cause multiple definitions of the variable.

The ANSI C standard will allow multiple external definitions, provided that there is only one initialization. But because there's really no advantage to using this feature, it's probably best to avoid it and maintain a higher level of portability.

"Global" variables that do not have to be accessed from more than one file should be declared static and should not appear in a header file.

18. What is a pointer variable?
A pointer variable is a variable that may contain the address of another variable or any valid address in the memory.

19. What are different types of type Qualifiers in C language?
The keywords which are used to modify the properties of a variable are called type qualifiers.
There are two types of qualifiers available in C language. They are,
•    const
•    volatile

20. What is const qualifier in C language?
•    Constants are also like normal variables. But, only difference is, their values can’t be modified by the program once they are defined.
•    They refer to fixed values. They are also called as literals.
•    They may be belonging to any of the data type.
Syntax:
const data_type variable_name; (or) const data_type *variable_name;

21. What is volatile qualifier in C language?
•    When a variable is defined as volatile, the program may not change the value of the variable explicitly.
•    But, these variable values might keep on changing without any explicit assignment by the program. These types of qualifiers are called volatile.
•    For example, if global variable’s address is passed to clock routine of the operating system to store the system time, the value in this address keep on changing without any assignment by the program. These variables are named as volatile variable.
Syntax:      
volatile data_type variable_name; (or) volatile data_type *variable_name;

22. Can a variable be both const and volatile?
Yes. The const modifier means that this code cannot change the value of the variable, but that does not mean that the value cannot be changed by means outside this code.

For instance, the timer structure was accessed through a volatile const pointer. The function itself did not change the value of the timer, so it was declared const.

However, the value was changed by hardware on the computer, so it was declared volatile. If a variable is both const and volatile, the two modifiers can appear in either order.

23. What is signed and unsigned variable in C language?
A numeric value may have a positive or a negative sign. In the memory, for a variable, one bit is used exclusively to maintain the sign of the data.

If we don't have sign, the sign bit also may be used for data. If the value is negative, the sign bit is 1, and if it is positive, it will be 0.

Download C Language Variables Interview Questions All SVG file downloads also come bundled with DXF, PNG, and EPS file formats. All designs come with a small business commercial license. These SVG cut files are great for use with Silhouette Cameo or Cricut and other Machine Tools.

LihatTutupKomentar

SVG by Keywords

A Sample Java Program Accounting adab berbusana muslimah Administrasi Dan Layanan Administrasi Perkantoran adminstrasi Advanced VBScript Advantages of Automated Testing Advantages of Java Advantages of Manual Testing Advantages of Selenium Advantages of Test Automation Advantages of TestNG Aksi Indosiar Akuntansi Alamat Alamat Perusahaan alamat pt Ancol ANDROID_HOME AndroidDriver aneka kerudung Appium Appium Android Examples Appium FAQ Appium Fundamentals Appium Interview Questions Appium Interview Questions and Answers Appium Questions Appium Tutorial Appium Tutorials Application Environments supported by Selenium Arrays in Java Artikel Kesehatan astra aurat aurat wanita Automated Test Process baju pengantin muslimah Bali Bander Bandung Bank Bank Dan Keuangan Banking Domain knowledge for Testers Bantar Gebang Banten Batch Testing in Selenium Batch Testing with Selenium Bawang Putih Bayi Begadang Bekasi Benefits of Test Automation Benefits of TestNG BIIE bisnis BKK Black Box Techniques Bogor Boleh atau Tidak Boundary value analysis Broadcast Browser Compatibility Testing with Selenium Browsers supported by Selenium buah Buah Untuk Diabetes Buah-Buahan bug Bug Tracking Tool Bugzilla Bukit Indah Bulan Ini BUMN BUMN Dan CPNS 2015 busana di dalam al-qur'an busana kerja busana model kebaya busana muslimah c data types C FAQ C Language Basics C language Constants C Language FAQ C Language Functions C Language Fundamentals C Language Interview Questions C Language Interview Questions and Answers C Language Pointers C Language Questions C Language Tokens c Language tutorial C Language Tutorial for Beginners C Language Variables C Programming Fundamentals Cakung Call Center cantik alami cantik hati cantik mudah dan murah cara memakai jilbab cara sehat Cari Lowongan Kerja Di Cikarang Choose Selenium Tools Chrome Browser Driver Cianjur Cibinong cibitung Cibubur Cikampek cikarang Cikokol Cikupa Cilegon Cileungsi Cilincing Ciracas Cirebon Comments in Java Comments in VBScript Compare data using VbScript Configure Selenium Cook Core Java Tutorial Core Java Videos Cross Browser Testing using Selenium Cross Browser Testing using Selenium WebDriver Cucumber customer Service D Academy 3 D Academy Celebrity D1 D3 D4 Daftar Lowongan Kerja Cikarang Data comparisons Data Driven Framework in Selenium Data driven testing in UFT Data driven testing using excel Data driven testing using TestNG DataProvider Data Driven Testing with Selenium Database Test Cases Database Test scenarios Database Testing Checklist Database Testing in Selenium Database Testing Tutorial Debugging Tests in UFT Decision Tables Defect Management Tools Defect Report Defect Reporting and Tracking. Delta Mas Delta Silicon Delta silicone deltamas Denpasar Depok Design Grafis Designer Detoks Diabetes Insipidus Diabetes Saat Kehamilan Diet Disadvantages of Manual Testing Disadvantages of Selenium Disadvantages of Test Automation DKI Jakarta Domain knowledge for Software Testers Drawbacks of Automated Testing Drawbacks of Manual Testing Drawbacks of selenium Drawbacks of Selenium IDE Driver Eclipse IDE Download ejip Elektronik Element handling in Selenium Element Handling Selenium WebDriver element locators Element locators in selenium Elements handling in Selenium email email hrd email PT Endurance testing Enginering Equivalence partitioning ERP Domain Knowledge for testers Error handling in UFT Error handling in VBScript Euro 2016 event Excel file handling in VBScript Exception handling in Java Experience based Techniques Farmasi File Handling in Java File handling in vbscript Firebug Firepath Flu foto muslimah cantik Functional and Regression Test Tools Functional test tools Functional Testing Checklist fungsi busana Games gamis Garmen gaun pengantin modern Gaya Hidup gaya hidup sehat Gejala Diabetes gigi GIIC Gobel Greenland Grogol Grouping test cases Grouping Test Cases in TestNG Gudang Gunung Putri hamil sehat Handle Frames Handle Mouse hover Handle multiple browsers in Selenium Handling Browser in Selenium Handling Web Elements in Selenium Harapan Indah Helper hikmah berbusana muslimah Hipertensi HP UFT Tutorial for beginners hrd dan industri hyundai Ibu Hamil Iklan Lowongan Kerja Indotaise Industri informasi Informasi Kesehatan Informatika inner beauty Inspect Elements Inspirasi Kesehatan Install TestNG Insurance Domain Knowledge for testers Internasional Internet Explorer Driver Interview Questions on Selenium Fundamentals Interview questions on Selenium Test process Introduction to Functional Testing Introduction to Java Introduction to Selenium Introduction to Selenium Webdriver jababeka jabodetabek jakarta Jakarta Barat jakarta pusat Jakarta Selatan jakarta Timur jakarta Utara Jakasampurna Jantung Jatake Jati Uwung Jatinegara Java Java Abstraction Java Array methods Java Arrays Java Basics Java built in methods Java Built-in Methods Java character methods Java Code Example Java conditional statements java data types Java download and install Java Encapsulation Java Environment setup Java Exception Handling Java FAQ Java File class java flow control Java for selenium Java for Selenium Interview Questions and Answers Java for Selenium Videos Java fundamentals Java Fundamentals and OOPS Java Guide Java Inheritance Java Input and Output Java input output operations Java Interfaces Java Interview Java Interview Questions Java Introduction Java IO Java Loop statements Java Methods Java Modifiers Java Number methods Java Object Oriented Programming Java OOPS Java OOPS concepts Java Operators Java Polymorphism Java Program Example Java Program structure Java programming for Selenium Java Programming for Test Automation Java Programming fundamentals Java Questions and Answers Java Static Methods Java String methods Java strings java syntax Java Syntax Rules Java tutorial Java Tutorial for Beginners Java tutorial for selenium java tutorials for webdriver Java user defined methods Java Variables Java Video tutorials Java videos for Selenium Jawa Barat Jawa Tengah Jawa Timur jenis jilbab jenis kain JIEP jira Job Fair JUnit Kalijaya Kalimantan Kanker Karanganyar karawang Kasir Kawasan Industri Kebayoran Baru Kebon Jeruk kecantikan kecantikan alami kecantikan hati kecantikan kulit kecantikan wajah Kedunghalang Kementerian Kesehatan Kesehatan Anak Kesehatan Dan Kecantikan Kesehatan Gigi kesehatan ibu hamil Kesehatan Kulit Kesehatan Mata Keyword Driven Framework in Selenium KIIC KIM Kimia Klari Komplikasi Diabetes Komputer Kontraktor kuliner Kulit Kumpulan Renungan Kristen Lebak Bulus Lemah Abang Lemak Lemak Trans Lembaga Lembaga Negara Lembur Limitations of Selenium WebDriver Lippo Load Testing lowongan lowongan email Lowongan Kerja Lowongan Kerja BANK Lowongan Kerja Bekasi Februari 2014 Lowongan Kerja Cikarang Februari 2014 Lowongan Kerja Hari Ini Lowongan Kerja Jakarta Februari 2015 Lowongan Kerja Karawang Februari 2015 Lowongan Kerja Khusus STM Lowongan Kerja Operator Produksi Lowongan Kerja SMP Lowongan Kerja SPG lowongan PT lowongan sma lowongan smk Lowongan Terbaru Maintinance Makanan Penderita Diabetes Makanan Sehat Manfaat Buah Manfaat Tanaman Manual Test Process Manual testing manual testing basics Manual Testing Fundamentals Manual Testing Limitations Manual Testing Live Project Manual Testing Process Manual Testing Project manual testing resume Manual Testing Tutorial Manual Testing Videos Manual Testing vs Test Automation Manual Testing vs. Test Automation Manufaktur dan Industri Manufaktur Industri mari berhijab Marunda Makmur Matraman Medan Medan Satria Mencegah Diabetes Mengemudi Method Overloading Method Overriding Migas mm2100 mobile automation Mobile Test Tools Mobile Testing Tools model baju batik model baju muslimah model busana muslimah model jilbab motoGP musim hujan Nasional Negative Test Cases Ngaliyan Non Functional Testing NTB Obat Alami Obat Diabetes Alami obesitas Object repositories in uft Oktober Olahraga OP Open Source Test Tools Operating Systems supported by Selenium Operator Operator Forklip Operator Injecion operator produksi Operators in VBScript Oracle Interview Questions Oracle PL/SQL Interview Questions Osteoporosis Otak Otomotif Overview of Functional Testing Overview of Java Overview of Mobile Applications Overview of Performance Testing Overview of Selenium Overview of Selenium WebDriver overview of Web Applications paduan warna Pantangan Penyakit Diabetes Parallel Test Execution using TestNG Parameterization in Selenium Pasir Gombong Pelayaran Pemasaran Dan Penjualan Pendidikan Pengobatan Penjualan dan marketing Penyakit Perawat Perawatan Diabetes Performance Test Process performance test tools Performance Testing Tutorial Phases of SDLC Phases of Software Test Process PL/SQL FAQ PL/SQL Interview questions PL/SQL Tutorial PNS Polymorphism in Java Pondok Labu Pondok Ungu Positive and Negative Test Cases Positive Test Cases PPIC Pramugari Pramuniaga Proetein profil Programming Basics for Testers Programming essentials for Testers Programming fundamentals for Software Testers Programming Knowledge for Testers Programming Languages supported by Selenium project management tool Project Test Automation Psikotes Pulogadung purwakarta Q Academy Indosiar qa training Quality Control rahasia kecantikan rahasia kecantikan wanita korea rambut RAMUAN HERBAL Read and write files in Java Real Time Testing Project Training Recepsionist Regression Testing resep masakan sehat Resep Minuman Restaurant Rumah Sakit S1 S2 S3 Sample Java program Sanity Testing Sarjana sayuran untuk penderita diabetes sdlc SDLC Models Security Testing Checklist sehat alami Sekretaris Selenium Selenium 1.0 vs Selenium 2.0 Selenium 2 Selenium 3 selenium basics Selenium Browser Object Selenium Browser operations Selenium Checklist Selenium Components Selenium Course Brochure Selenium Data Driven Testing Selenium Element locators Selenium Environment Setup selenium FAQ Selenium fundamentals Selenium Fundamentals and Features Selenium Grid Selenium Grid 2 Selenium Guide Selenium History Selenium IDE Selenium IDE Features Selenium IDE Interview Questions and Answers Selenium IDE Test Cases Selenium IDE tutorial Selenium IDE Videos Selenium Installation Selenium Interview Questions Selenium Interview Questions and Answers Selenium Introduction Selenium Java Tutorial Selenium Jobs selenium learning objectives Selenium Live project selenium online training Selenium Project Selenium Project explanation Selenium Project overview Selenium project testing selenium project training Selenium Projects Selenium Questions Selenium Quick Tutorial selenium rc Selenium RC versus Selenium WebDriver Selenium Real Time Interview Questions and Answers Selenium Real time project Selenium Resumes Selenium Step by Step Tutorials Selenium Suite of Tools Selenium syllabus Selenium Test Case Selenium test cases Selenium test planning Selenium Test process Selenium Test Scripts Selenium Tester Job Responsibilities Selenium Tester Resume selenium testing Selenium Testing Project Selenium TestNG Videos Selenium Tools Selenium training Selenium training videos Selenium Tutorial Selenium Tutorial for Beginners Selenium Video Tutorial Selenium Video Tutorials Selenium Videos Selenium vs. UFT Selenium WebDriver Selenium WebDriver Browser Commands Selenium WebDriver Commands Selenium WebDriver environment setup Selenium WebDriver examples selenium webdriver interview questions Selenium WebDriver Interview Questions and Answers selenium webdriver methods Selenium Webdriver Test cases Selenium WebDriver Test Scripts Selenium webDriver tutorial Selenium WebDriver Videos Semarang Sentul Serang serba-serbi muslimah Silk Test SilkTest Sistem Kerja sma SMA/SMK smk Smoke Testing SMP Software Development process Software Quality Software Quality vs Software Test Design Software Test Documents Software Test Life Cycle Software Test Plan Software Test Planning software test process Software Test Tools software tester resume Software tester role Software Tester skills Software Testing software testing basics Software Testing Career Software Testing checklist Software Testing Experience Resume Software testing faq Software Testing Guide software testing interview questions Software Testing Interview Questions and Answers Software Testing interviews Software Testing Job Responsibilities Software Testing Jobs Software Testing Learning Objectives Software Testing life cycle Software Testing methodologies Software Testing Process Software Testing Real-time Project Software Testing Standards Software Testing Tools Software Testing Training Software Testing Tutorial Software Testing Tutorial for Beginners Software Testing tutorials Software Testing Tutorials for Beginners software testing videos Sopir SPB spg Spike Testing SQL Commands for Database Testing SQL FAQ SQL for Software Testing sql for testers SQL Fundamentals SQL Interview Questions SQL Interview Questions and Answers SQL Knowledge for Software Testing SQL PL/SQL Interview Questions SQL Queries SQL Statements SQL Tutorial for Beginners SQL Tutorial for Software Testing staff staff administrasi Staff Kantor Static vs. Non Static Methods stlc Stress Testing String handling String handling in Java Stroke Subang Sulawesi Sumatera Sumatra Sunter supervisor Surabaya Suryacipta Susu Synchronization in Selenium Tambun tangerang Tanjung Baru Tanjung Pura Tebet teknisi Telekomunikasi Teluk Jambe Telur Terminating loops in VBScript Test Automation Test automation checklist Test Automation Limitations Test Automation process Test Automation Resume test automation using selenium Test Case Management Tool Test Closure Test Condition Test Data Collection Test design Test design in UFT Test Design Techniques Test Documentation Templates Test execution in UFT Test Execution phase test levels Test Link Test Management Tools Test Metrics Report Test planning Test Planning in Selenium Test Requirements test scenario Test scenarios vs Test cases Test Summary Report test tools Test Types TestComplete Testing Frameworks used in Selenium testing interview questions testing live project Testing Project Training Testing Project using Selenium Testing Tools Testing Tutorial TestNG annotations TestNG data driven testing TestNG for Selenium TestNG framework for selenium TestNG Framework in Selenium TestNG Framework Quick Tutorial TestNG Grouping Test Cases TestNG Installation TestNG Interview Questions and Answers TestNG Parallel Test Execution TestNG Reports TestNG test cases TestNG Testing Framework in Selenium TestNG Tutorial TestNg with Selenium TestNG with Selenium WebDriver tetap sehat Text stream object in vbscript the voice indonesia 2016 Tidur tipis kecantikan Tips TIPS - TIPS HIDUP SEHAT tips belanja tips cantik tips diet Tips Hidup Sehat Tips Ibu Hamil tips kecantikan Tips Kerja Tips kesehatan tips meke up tips memilih busana tips memilih warna tips muslimah tips sehat Tools for Automated Testing Transportasi Dan Logistik Types of Software Types of Software Environments Types of Test Tools types of testing tools UFT UFT 12.51 Installation UFT 12.51 new features UFT 12.51 New Technology Support UFT 12.51 Product updates UFT Basics UFT checklist UFT Fundamentals UFT Guide UFT Interview Questions and Answers UFT latest version new features UFT Shared Object Repository UFT Test Process UFT Test Result UFT Tool UFT Tutorial UFT Tutorials UFT Videos Universitas UNIX Knowledge for Testers Usability Test Tools Usage of Java Use Case Testing User Defined Methods in Java VBScript Automation objects VBScript Basics VBScript built in functions vbscript conditional statements VBScript Control flow statements VBScript Data Types VBScript Database Object models vbscript debug commands vbscript excel object VBScript Excel Object Model for UFT vbscript file system object VBScript FileSystemObject Model VBScript for UFT VBScript Function Procedures VBScript functions VBScript Functions for UFT VBScript Fundamentals VBScript if statement VBScript Loop Structures VBScript Objects VBScript scripting examples VBScript Sub Procedures VBScript Tutorial VBScript Tutorial for beginners VBScript User defined Functions Vbscript variables Vendor Test Tools Via Email Video Vitamin wajah Wanaherang Warung Kobak Watir Web elements in selenium Web Environment Knowledge for Testers web testing checklist Web Testing Tutorial WebDriver WebDriver API Commands WebDriver Commands WebDriver Commands and Operations WebDriver environment setup WebDriver examples WebDriver Features webdriver interview questions webdriver tutorials What is Database Testing? What is Software Testing? White Box Techniques Working with different browsers write and execute java programs write java program in eclipse Write selenium Test Cases Writing Selenium Test Cases Writing Selenium Test scripts Writing Test Cases Writing Test Cases using User defined methods xpath locator in selenium yayasan Yogyakarta