Difference between revisions of "Interview Questions"

From Hawk Wiki
Jump to: navigation, search
(Java)
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Some Translation==
 
==Some Translation==
n! Multiplicative
+
n! Factorial
 +
 
 
==Object-oriented programming==
 
==Object-oriented programming==
===Encapsulation===
+
Check here [[Interview_Questions(OOP)]]
restricting access to some of the object's components<br>
+
==C++ Interview==
bundling of data with the methods<br>
+
[[C++ interview]]
public and private data and methods.<br>
+
==Javascript/Jquery==
A benefit of encapsulation is that it can reduce system complexity, and thus increases robustness, reduce risk of conflict between components.<br>
+
[[AJAX&Jquery]]<br>
=== Polymorphism ===
+
[http://{{SERVERNAME}}/downloads/designpattern/ Design Pattern]
In C++, that type of polymorphism is called overloading.
+
 
If a class has inherited a parent class, it can redefine a method and thus each class has a method with the same name but different functionality.
+
==Algorithm Interview Problems==
===Inheritance===
+
[[Algorithm Problems]]<br>
 +
==Data Structure==
 +
[[All about Binary search tree]]<br>
 +
[[All about Linked List]]<br>
 +
[[Heap & Heap Sort]]<br>
 +
[[TRIE]]<br>
 +
[[Algorithm Sorting]]<br>
 +
 
 +
==Regular Expression ==
 +
http://www.zytrax.com/tech/web/regex.htm
 +
 
 +
==PHP==
 +
[[PHP interview]]
 +
==Java==
 +
[[Java interview]]
 +
==Python==
 +
[[Python interview]]

Latest revision as of 00:27, 17 March 2015

Some Translation

n! Factorial

Object-oriented programming

Check here Interview_Questions(OOP)

C++ Interview

C++ interview

Javascript/Jquery

AJAX&Jquery
Design Pattern

Algorithm Interview Problems

Algorithm Problems

Data Structure

All about Binary search tree
All about Linked List
Heap & Heap Sort
TRIE
Algorithm Sorting

Regular Expression

http://www.zytrax.com/tech/web/regex.htm

PHP

PHP interview

Java

Java interview

Python

Python interview