Top Ads

Font Banner - Free Fonts

C Language Interview Questions-1

Download C Language Interview Questions-1 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 Interview Questions-1

Questions on C Language Introduction and Data Types:

1.) What is C Language?
 

•    The C programming language is a standardized programming language.
•    It was developed in the early 1970s by Ken Thompson and Dennis Ritchie for use on the UNIX operating system.
•    It has since spread to many other operating systems, and is one of the most widely used programming languages.
•    C is prized for its efficiency, and is the most popular programming language for writing system software, though it is also used for writing applications.

2.) What is a Programming language?
 

•    Programming language is any language that computer system can understand directly or indirectly to can perform the actions asked by the programmer as set of instructions in form of a computer program.
•    A program is written as a series of human understandable computer instructions.
•    The instructions can be read by a compiler and linker and translated into machine code so that a computer can understand and run it.

3.) What is history of C Language?
 

•    C is a programming language which born at “AT & T’s Bell Laboratories” of USA in 1972.
•    It was written by “Dennis Ritchie”.
•    This language was created for a specific purpose that is to design UNIX operating system which is used on many computers.
•    From the beginning C was intended to be useful to allow busy programmers to get things done because C is such a powerful, dominant and supple language, its use quickly spread beyond Bell Labs in the late 70’s.

4.) What is the purpose of C language?
 

•    In C one can write programs like that of high level languages as in COBOL, BASIC, FORTRAN etc. as well as it permits very close interaction with the inner workings of the computer.
•    It is a general purpose programming language. It is usually called system programming language but equally suited to writing a variety of applications.
•    It supports various data types
•    It follows the programming style based on fundamental control flow constructions for structured programming.
•    Functions may be pre–defined or user defined and they may return values of basic types, structures, unions or pointers.

5.) What type of language is C?
 

•    C is a general purpose, structured programming language.
•    Its instructions consist of terms that resemble algebraic expressions, augmented by English Keywords such as if, else, for, do and while.
•    In this respect C resembles other high-level structured programming languages such as Pascal and FORTRAN.
•    C also contains certain additional features that allow it to be used at a lower level thus bridging the gap between machine language and the more conventional high-level languages.
•    This flexibility allows C to be used for systems programming (E.g.: writing operating systems) as well as for applications programming.

6.) Why C is called Middle level language?
 

Middle Level programming languages are closely related to Machine as well as Human being.
•    C programming supports Inline Assembly Language programs.
•    Using inline assembly language feature in C we can directly access system registers.
•    C programming is used to access memory directly using pointer.
•    C programming also supports high level language features.
•    It is more User friendly as compare to previous languages so C programming is Middle level language.

7.) Is C Language Case Sensitive Language?
 

Yes … in capital letter and lower letter have different meaning in c language. So C language is a case sensitive language.

8.) What are the advantages of C language?
 

•    Easy to write
•    Rich set of operators and functions that are built–in
•    Support for bit–wise operation
•    Flexible use of pointers
•    Direct control over the hardware
•    Ability to access BIOS/DOS routines
•    Interacting using Interrupts
•    Ability to write TSR programs
•    Ability to create .COM files
•    Ability to create library files (.LIB)
•    Ability to write interface programs
•    Incorporating assembly language in C program.

9.) What are the disadvantages of C language?
 

•    There is no runtime checking.
•    There is no strict type checking (for ex: we can pass an integer value for the floating data type).
•    As the program extends it is very difficult to fix the bugs.

10.) What are the steps of executing a C Program?
 

The steps involved in executing a C Program are:
•    Creating and Editing
•    Compiling
•    Linking   
•    Executing program

Creating and Editing: Writing or creating and editing a source program is a first step in c language. Source code is written in c programming language according to the type of problem or requirement, in any text editor.

Compiling: Computer does not understand c programming language. It understands only 0 and 1 means machine language. So c programming language code is converted into machine language. The process of converting source code in to machine code is called compiling.

Linking: There are many built in library functions available in c programming language. These functions are stored in different header files.

Executing program: Execution is the last step. In this step program starts execution. Its instructions start working and output of the program display on the screen.

11.) What is a compiler?
 

•    A computer program which reads source code and outputs assembly code or executable code is called a compiler.
•    A piece of software that takes third-generation language code and translates it into a specific assembly code, compilers can be a quite complicated piece of software.

Example: C Compiler.

12.) What is an interpreter?
 

•    In computing, an interpreter is a computer program that reads the source code of another computer program and executes that program.
•    Because it is interpreted line by line, it is a much slower way of running a program than one that has been compiled.
•    But is easier for learners because the program can be stopped, modified and rerun without time-consuming compiles.

Example: BASIC.

13.) Differences between Source code & Object code?
 

Source code:
Source code is in the form of a Text and is Human Readable. Source code is generated by Human and it is input given to the compiler.

Object code:
Object code is in the form of Binary numbers and it is in Machine Readable format. Object code is generated by the Compiler and it is the output of the Compiler.

14.) What is a Data Type?
 

A Data Type is a Type of Data. Data Type is a Data Storage Format that can contain a Specific Type or Range of Values.

When computer programs store data in variables, each variable must be assigned a specific data type.
Many people believe that a programmer working in C language is provided with a very tiny set of data types but Dennis Ritchie has made available to the C programmers a feature that allows them to derive their own data types from the existing one. This way a programmer can decide which data type is to be used depending on these 2 factors:

•    Economize the memory space.
•    Improve the speed of execution of program.

15.) List the different Data Types in C programming language?
 

In C language, it is compulsory to declare variables with their data type before using them in any statement. Mainly data types are categorized into 3 categories:

•    Primitive Data Types
•    Derived Data Types
•    User Defined Data Types

16.) What are the Primitive Data Types in C language?
 

The primitive data types in c language are the inbuilt data types provided by the c language itself. Thus, all c compilers provide support for these data types. The different primitive data types are,
int
float
double
char
void

17.) Define integer data type?
 

Integer data type is used to store numeric values without any decimal point e.g. 7,-101, 107, etc. A variable declared as 'int' must contain whole numbers e.g. age is always in number. Integer occupies 2 bytes memory space and its value range limited to -32768 to +32767.

18.) Define Floating point data type?
 

floating point data type consists of 2 types. They are,
•    float
•    double

float:float data type is used to store numeric values with decimal point. In other words, float data type is used to store real values, e.g. 3.14, 7.67 etc. A variable declared as float must contain decimal values e.g. percentage, price, pi, area etc. may contain real values. Storage size of float data type is 4. This also varies depend upon the processor in the CPU as “int” data type. We can use up-to 6 digits after decimal using float data type.The range for float data type is fromIE-38 to IE+38.

double: double data type also declares variable that can store floating point numbers but gives precision double than that provided by float data type. Thus, double data type is also referred to as double precision data type.Double data type is also same as float data type which allows up-to 10 digits after decimal. The range for double data type is from 1E–37 to 1E+37.

19.) Define character data type?
 

char (Character) data type is used to store single character, within single quotes e.g. 'a', 'z','e' etc. A variable declared as 'char' can store only single character e.g. Yes or No choice requires only 'y' or 'n' as an answer.

20.) Define void data type?
 

The void type basically means "nothing". A void type cannot hold any values. You cannot declare a variable to be a void, but you can declare a variable to be a pointer to a void. A pointer to a void is used when the pointer may point to various different types. To use the value that a void pointer is pointing to, it must be cast into another type.

21.) What are the user defined data types in C Language?
 

C Language supports a feature where user can define an identifier that characterizes an existing data type.This User defined data type identifier can later be used to declare variables. In short its purpose is to redefine the name of an existing data type. Different user defined data types are
struct
union
enum
typedef.

22.) Define struct data type?
 

A struct is a user defined data type that stores multiple values of same or different data types under a single name. In memory, the entire structure variable is stored in sequence.

23.) Define union data type?
 

A union is a user defined data type that stores multiple values of same or different data types under a single name. In memory, union variables are stored in a common memory location.

24.) Define enumerated (enum) data type?
 

An enumeration is a data type similar to a struct or a union. Its members are constants that are written as variables, though they have signed integer values. These constant represent values that can be assigned to corresponding enumeration variables.

25.) Define typedef data type?
 

The 'typedef' allows the user to define new data-types that are equivalent to existing data types. Once a user defined data type has been established, then new variables, array, structures, etc. can be declared in terms of this new data type.

26.) What are the derived data types in C Language?
 

Derived data types are based on fundamental data types, i.e. a derived data types is represented in the memory as a fundamental data type.Derived data types don't create a new data type; instead, they add some functionality to the basic data types. Two derived data types are - Array & Pointer.

Download C Language Interview Questions-1 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