Java Threads Interview Questions 1 what are the two types of multitasking? Ans:a. Process-based. b. Thread-based. 2 what is a Thread? Ans: A thread is a single sequential flow of control within a program. 3 what are the two ways to create a new thread? Ans: A.Extend the Thread class and override the run () method. B.Implement the Runnable interface …
Continue readingAuthor: Interview Tips
seo submission spam
SEO Acronym for search engine optimization and often also used to refer to a person or company that does search engine optimization. Spam: Any search engine marketing method that a search engine deems to be detrimental to its efforts to deliver relevant, quality search results. Some search engines have written guidelines about what they consider to be spamming, but ultimately …
Continue readingMeta Tags Definitions
Meta Search Engine A search engine that gets listings from two or more other search engines, rather than through its own efforts. Meta Tags Information placed in a web page not intended for users to see but instead which typically passes information to search engine crawlers, browser software and some other applications. Meta Description Tag Allows page authors to say …
Continue readingSeo Glossary
Algorithm A set of rules that a search engine uses to rank the listings contained within its index, in response to a particular query. No search engine reveals exactly how its own algorithm works, to protect itself from competitors and those who wish to spam the search engine. Banned When Web pages are removed from a search engine’s index specifically …
Continue readingJava Exception Handling Interview Questions
Java Exception Handling Interview Questions 1 which package contains exception handling related classes? Ans: java. Lang 2 what are the two types of Exceptions? Ans: Checked Exceptions and Unchecked Exceptions. 3 what is the base class of all exceptions? Ans: java.lang.Throwable 4 what is the difference between Exception and Error in java? Ans: Exception and Error are the subclasses of …
Continue readingXML Interview Questions
XML Interview Questions XML The Extensible Markup Language is a general-purpose specification for creating custom markup languages. It improves the functionalityof the Web by letting you identify your information in a more accurate,flexible, and adaptable way. XML is actually a meta language, language for describing other language, which lets you design your own markup languages for limitless different types of …
Continue readingAction Script Interview Questions
Action Script Interview Questions ActionScript is a scripting language based on ECMA Script. Actionscript Originally developed by Macromedia, the language is now owned by Adobe which acquired Macromedia in 2005. ActionScript started as a scripting language for Macromedia’s Flash authoring tool, now developed by Adobe Systems as Adobe Flash. Early Flash developers could attach a simple command, called an “action”, …
Continue readingAccounting Interview Questions
Accounting Interview Questions Tips on Interview gives many advices to Accounting Professionals, the following are the sample questions Accounting Professionals need to prepare before attending for Interview. Questing asked in Interview for Accounting professionals 1.What was the size of the company you were working for? 2.What was your Title in the company? 3.What type of environment suits you best and …
Continue readingAJAX Interview Questions
AJAX Interview Questions AJAX Interview Tips AJAX stands for Asynchronous JavaScript and XML. AJAX is a type of programming made popular in 2005 by Google (with Google Suggest). AJAX is not a new programming language, but a new way to use existing standards. With AJAX you can create better, faster, and more user-friendly web applications. AJAX is based on JavaScript …
Continue readingC Interview Questions
C Interview Questions 1 what is the difference between a while statement and a do statement? Ans: A while statement checks at the beginning of a loop to see whether the next loop iteration should occur. A do statement checks at the end of a loop to see whether the next iteration of a loop should occur. The do statement …
Continue readingC++ Interview Questions
C++ Interview Questions 1 What is a class? Ans: Class is a user-defined data type in C++. It can be created to solve a particular kind of problem. After creation the user need not know the specifics of the working of a class. 2 What is an object? Ans: Object is a software bundle of variables and related methods. Objects …
Continue reading
You must be logged in to post a comment.