From 853de4fd6fa6d93e906f6dad9ab06ff65c379185 Mon Sep 17 00:00:00 2001 From: eitandub22 Date: Mon, 4 May 2026 17:03:39 +0300 Subject: [PATCH 01/38] Add MRL embeddings & HNSW+SQ8 Faiss support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Introduce Matryoshka Representation Learning (SBERTMRL) and add HNSW+SQ8 support to the Faiss vector backend. Key changes: - New SBERTMRL embedding (gptcache/embedding/sbert_mrl.py) and factory export (gptcache/embedding/__init__.py) to produce truncated, L2-normalized embeddings (e.g. 768→256). - Extended Faiss backend (gptcache/manager/vector_data/faiss.py) with index_type (flat or hnsw_sq8), HNSW parameters, SQ8 training, tombstone-based deletions for HNSW, over-fetch filtering, and persistence of tombstones. - Vector manager updated to pass index_type and HNSW params (gptcache/manager/vector_data/manager.py). - Added/updated benchmarks for QQP and various Faiss configurations (examples/benchmark/*), and improved error handling and storage-size reporting in existing benchmark. - Fixed ONNX tokenizer usage and safe token_type_ids handling (gptcache/embedding/onnx.py). - Tests added to validate HNSW+SQ8 behavior, tombstones, rebuilds, and persistence (tests/unit_tests/manager/test_local_index.py). - Minor setup.py improvements to open files with UTF-8 encoding. These changes enable a lower-memory, faster Faiss option (HNSW+SQ8) and an MRL truncation workflow for evaluating space/latency trade-offs. --- examples/benchmark/benchmark_qqp.py | 233 ++++++++++++++++++ .../benchmark_sqlite_faiss_hnsw_sq8_onnx.py | 132 ++++++++++ .../benchmark_sqlite_faiss_mrl_hnsw_sq8.py | 137 ++++++++++ .../benchmark/benchmark_sqlite_faiss_onnx.py | 19 +- gptcache/embedding/__init__.py | 6 + gptcache/embedding/onnx.py | 4 +- gptcache/embedding/sbert_mrl.py | 83 +++++++ gptcache/manager/vector_data/faiss.py | 158 +++++++++++- gptcache/manager/vector_data/manager.py | 12 +- setup.py | 6 +- tests/unit_tests/manager/test_local_index.py | 76 ++++++ 11 files changed, 851 insertions(+), 15 deletions(-) create mode 100644 examples/benchmark/benchmark_qqp.py create mode 100644 examples/benchmark/benchmark_sqlite_faiss_hnsw_sq8_onnx.py create mode 100644 examples/benchmark/benchmark_sqlite_faiss_mrl_hnsw_sq8.py create mode 100644 gptcache/embedding/sbert_mrl.py diff --git a/examples/benchmark/benchmark_qqp.py b/examples/benchmark/benchmark_qqp.py new file mode 100644 index 00000000..72359c18 --- /dev/null +++ b/examples/benchmark/benchmark_qqp.py @@ -0,0 +1,233 @@ +"""GPTCache QQP Benchmark + +Evaluates cache accuracy and performance using the Quora Question Pairs dataset. +Runs two configurations for comparison: + 1. Baseline: ONNX (768d) + Flat FAISS index + 2. Optimized: MRL (256d) + HNSW+SQ8 FAISS index + +Metrics: True Positive rate (should hit), False Positive rate (should NOT hit), + latency percentiles, throughput, storage size. + +Usage: + python benchmark_qqp.py --mode baseline + python benchmark_qqp.py --mode optimized +""" + +import argparse +import os +import shutil +import time + +import numpy as np +import psutil +from datasets import load_dataset + +from gptcache import cache, Config +from gptcache.manager import get_data_manager, CacheBase, VectorBase +from gptcache.similarity_evaluation.distance import SearchDistanceEvaluation +from gptcache.embedding.sbert_mrl import SBERTMRL + +# --- Configuration --- +NUM_INGEST = 10000 # Number of duplicate pairs to build the database from +NUM_TP_TEST = 2000 # True-duplicate queries (goal: high hit rate) +NUM_FP_TEST = 2000 # Non-duplicate queries (goal: low hit rate) +SIMILARITY_THRESH = 0.90 + + +def create_encoder(mode): + """Create the embedding encoder for the given mode.""" + if mode == "baseline": + # Baseline uses the full 768 dimensions + return SBERTMRL(target_dim=768) + else: + # Optimized uses MRL 256 dimensions + return SBERTMRL(target_dim=256) + + +def setup_cache(mode, work_dir): + """Initialize GPTCache with the appropriate configuration. + + Returns (encoder, data_manager, faiss_path, sqlite_path). + """ + os.makedirs(work_dir, exist_ok=True) + encoder = create_encoder(mode) + dim = encoder.dimension + + sqlite_path = os.path.join(work_dir, "sqlite.db") + faiss_path = os.path.join(work_dir, "faiss.index") + + cache_base = CacheBase("sqlite", sql_url=f"sqlite:///{sqlite_path}") + + if mode == "baseline": + vector_base = VectorBase("faiss", dimension=dim, index_path=faiss_path) + config_label = f"Flat index, {dim}d float32" + else: + vector_base = VectorBase( + "faiss", dimension=dim, index_path=faiss_path, index_type="hnsw_sq8" + ) + config_label = f"HNSW+SQ8 index, {dim}d uint8" + + data_manager = get_data_manager(cache_base, vector_base, max_size=200000) + + cache.init( + embedding_func=encoder.to_embeddings, + data_manager=data_manager, + similarity_evaluation=SearchDistanceEvaluation(), + config=Config(similarity_threshold=SIMILARITY_THRESH), + ) + + print(f" Encoder : {encoder.__class__.__name__} (dim={dim})") + print(f" Index : {config_label}") + print(f" Threshold : {SIMILARITY_THRESH}") + + return encoder, data_manager, faiss_path, sqlite_path + + +def query_cache_direct(query_text, encoder, data_manager): + """Perform a single cache lookup using the internal pipeline. + + GPTCache has no public `cache.get()` API — queries normally go through + the OpenAI adapter. For benchmarking we call the pipeline directly: + embed → search → evaluate threshold + + Returns (is_hit: bool, latency_seconds: float). + """ + start = time.time() + + # 1. Embed the query + embedding = encoder.to_embeddings(query_text) + + # 2. Search (data_manager.search normalizes the vector internally) + search_results = data_manager.search(embedding) + + is_hit = False + if search_results: + distance, cache_id = search_results[0] # best match + + # 3. Evaluate: SearchDistanceEvaluation computes score = max_distance - L2_distance + evaluator = cache.similarity_evaluation + score = evaluator.evaluation({}, {"search_result": (distance, cache_id)}) + min_r, max_r = evaluator.range() + rank_threshold = (max_r - min_r) * SIMILARITY_THRESH + + if score >= rank_threshold: + is_hit = True + + latency = time.time() - start + return is_hit, latency + + +def run_test(test_name, queries, encoder, data_manager): + """Run a set of queries sequentially and collect metrics.""" + print(f"\n--- {test_name} ({len(queries)} queries) ---") + + hits = 0 + latencies = [] + process = psutil.Process(os.getpid()) + peak_ram = 0 + + for i, q in enumerate(queries): + is_hit, latency = query_cache_direct(q, encoder, data_manager) + if is_hit: + hits += 1 + latencies.append(latency) + ram = process.memory_info().rss / (1024 * 1024) + peak_ram = max(peak_ram, ram) + + if (i + 1) % 500 == 0: + print(f" Progress: {i+1}/{len(queries)} " + f"(hits so far: {hits}, avg latency: {np.mean(latencies)*1000:.1f}ms)") + + latencies_ms = np.array(latencies) * 1000 + total_time = sum(latencies) + n = len(queries) + + print(f"\n Results for: {test_name}") + print(f" Total Time : {total_time:.2f}s ({n / total_time:.1f} QPS)") + print(f" Cache Hits : {hits}/{n} ({hits/n*100:.2f}%)") + print(f" Cache Misses: {n-hits}/{n} ({(n-hits)/n*100:.2f}%)") + print(f" Avg Latency : {np.mean(latencies_ms):.2f} ms") + print(f" P50 Latency : {np.percentile(latencies_ms, 50):.2f} ms") + print(f" P90 Latency : {np.percentile(latencies_ms, 90):.2f} ms") + print(f" P99 Latency : {np.percentile(latencies_ms, 99):.2f} ms") + print(f" Peak RAM : {peak_ram:.1f} MB") + + return {"hits": hits, "total": n, "hit_rate": hits/n, + "avg_latency_ms": np.mean(latencies_ms), + "p99_latency_ms": np.percentile(latencies_ms, 99), + "peak_ram_mb": peak_ram} + + +def run(mode): + # 1. Load Dataset + print("=" * 60) + print(f"GPTCache QQP Benchmark — Mode: {mode.upper()}") + print("=" * 60) + + print("\nLoading Quora Question Pairs dataset...") + dataset = load_dataset("glue", "qqp", split="train") + + # Split into duplicates and non-duplicates + duplicates = dataset.filter(lambda x: x["label"] == 1) + non_duplicates = dataset.filter(lambda x: x["label"] == 0) + print(f" Total pairs: {len(dataset)}") + print(f" Duplicates: {len(duplicates)}, Non-duplicates: {len(non_duplicates)}") + + # 2. Setup cache + work_dir = f"bench_{mode}" + # Clean previous run + if os.path.isdir(work_dir): + shutil.rmtree(work_dir) + + print(f"\nInitializing GPTCache ({mode})...") + encoder, data_manager, faiss_path, sqlite_path = setup_cache(mode, work_dir) + + # 3. Prepare data + dup_pairs = list(duplicates.select(range(NUM_INGEST))) + db_questions = [pair["question1"] for pair in dup_pairs] + + print(f"\nIngesting {len(db_questions)} questions...") + start_insert = time.time() + dummy_answers = [f"Answer_{i}" for i in range(len(db_questions))] + cache.import_data(questions=db_questions, answers=dummy_answers) + insert_time = time.time() - start_insert + print(f"Ingestion complete in {insert_time:.2f}s " + f"({len(db_questions)/insert_time:.0f} vectors/sec)") + + # TP queries: question2 from the same duplicate pairs we ingested + tp_queries = [pair["question2"] for pair in dup_pairs[:NUM_TP_TEST]] + + # FP queries: question2 from non-duplicate pairs + fp_pairs = list(non_duplicates.select(range(NUM_FP_TEST))) + fp_queries = [pair["question2"] for pair in fp_pairs] + + # 4. Run tests + tp_results = run_test("True Positive (should HIT)", tp_queries, encoder, data_manager) + fp_results = run_test("False Positive (should MISS)", fp_queries, encoder, data_manager) + + # 5. Storage telemetry + data_manager.close() + print("\n" + "=" * 60) + print(f"FINAL SUMMARY — {mode.upper()}") + print("=" * 60) + print(f" TP Hit Rate : {tp_results['hit_rate']*100:.2f}% (goal: high)") + print(f" FP Hit Rate : {fp_results['hit_rate']*100:.2f}% (goal: low)") + print(f" Avg Latency (TP) : {tp_results['avg_latency_ms']:.2f} ms") + print(f" P99 Latency (TP) : {tp_results['p99_latency_ms']:.2f} ms") + + for filepath in [faiss_path, sqlite_path]: + if os.path.isfile(filepath): + size_mb = os.path.getsize(filepath) / (1024 * 1024) + print(f" {os.path.basename(filepath):15s}: {size_mb:.2f} MB") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="GPTCache QQP Benchmark") + parser.add_argument( + "--mode", + choices=["baseline", "optimized"], + required=True, + help="baseline = ONNX+Flat (768d), optimized = MRL+HNSW+SQ8 (256d)", + ) + args = parser.parse_args() + run(args.mode) \ No newline at end of file diff --git a/examples/benchmark/benchmark_sqlite_faiss_hnsw_sq8_onnx.py b/examples/benchmark/benchmark_sqlite_faiss_hnsw_sq8_onnx.py new file mode 100644 index 00000000..14b76378 --- /dev/null +++ b/examples/benchmark/benchmark_sqlite_faiss_hnsw_sq8_onnx.py @@ -0,0 +1,132 @@ +import json +import os +import time + +from gptcache.adapter import openai +from gptcache import cache, Config +from gptcache.manager import get_data_manager, CacheBase, VectorBase +from gptcache.similarity_evaluation.onnx import OnnxModelEvaluation +from gptcache.embedding import Onnx as EmbeddingOnnx +from gptcache.similarity_evaluation.distance import SearchDistanceEvaluation + + +def run(): + with open("mock_data.json", "r") as mock_file: + mock_data = json.load(mock_file) + + embedding_onnx = EmbeddingOnnx() + + # if you want more accurate results, + # you can use onnx's results to evaluate the model, + # it will make the results more accurate, but the cache hit rate will decrease + + # evaluation_onnx = EvaluationOnnx() + # class WrapEvaluation(SearchDistanceEvaluation): + # + # def __init__(self): + # self.evaluation_onnx = EvaluationOnnx() + # + # def evaluation(self, src_dict, cache_dict, **kwargs): + # rank1 = super().evaluation(src_dict, cache_dict, **kwargs) + # if rank1 <= 0.5: + # rank2 = evaluation_onnx.evaluation(src_dict, cache_dict, **kwargs) + # return rank2 if rank2 != 0 else 1 + # return 0 + # + # def range(self): + # return 0.0, 1.0 + + class WrapEvaluation(SearchDistanceEvaluation): + def evaluation(self, src_dict, cache_dict, **kwargs): + return super().evaluation(src_dict, cache_dict, **kwargs) + + def range(self): + return super().range() + + sqlite_file = "sqlite.db" + faiss_file = "faiss.index" + has_data = os.path.isfile(sqlite_file) and os.path.isfile(faiss_file) + + cache_base = CacheBase("sqlite") + vector_base = VectorBase("faiss", dimension=embedding_onnx.dimension, index_type='hnsw_sq8') + data_manager = get_data_manager(cache_base, vector_base, max_size=100000) + cache.init( + embedding_func=embedding_onnx.to_embeddings, + data_manager=data_manager, + similarity_evaluation=WrapEvaluation(), + config=Config(similarity_threshold=0.95), + ) + + i = 0 + for pair in mock_data: + pair["id"] = str(i) + i += 1 + + if not has_data: + print("insert data") + start_time = time.time() + questions, answers = map( + list, zip(*((pair["origin"], pair["id"]) for pair in mock_data)) + ) + cache.import_data(questions=questions, answers=answers) + print( + "end insert data, time consuming: {:.2f}s".format(time.time() - start_time) + ) + + all_time = 0.0 + hit_cache_positive, hit_cache_negative = 0, 0 + fail_count = 0 + for pair in mock_data: + mock_messages = [ + {"role": "system", "content": "You are a helpful assistant."}, + {"role": "user", "content": pair["similar"]}, + ] + try: + start_time = time.time() + res = openai.ChatCompletion.create( + model="gpt-3.5-turbo", + messages=mock_messages, + ) + res_text = openai.get_message_from_openai_answer(res) + if res_text == pair["id"]: + hit_cache_positive += 1 + else: + hit_cache_negative += 1 + consume_time = time.time() - start_time + all_time += consume_time + print("cache hint time consuming: {:.2f}s".format(consume_time)) + except Exception as e: + print(f"OpenAI API Error: {e}") + fail_count += 1 + + print("average time: {:.2f}s".format(all_time / len(mock_data))) + print("cache_hint_positive:", hit_cache_positive) + print("hit_cache_negative:", hit_cache_negative) + print("fail_count:", fail_count) + print("average embedding time: ", cache.report.average_embedding_time()) + print("average search time: ", cache.report.average_search_time()) + + data_manager.close() + # --- Storage size measurement --- + print("\n--- Storage Sizes ---") + for filepath in [faiss_file, sqlite_file]: + if os.path.isfile(filepath): + size_bytes = os.path.getsize(filepath) + if size_bytes >= 1024 * 1024: + size_str = f"{size_bytes / (1024 * 1024):.2f} MB" + elif size_bytes >= 1024: + size_str = f"{size_bytes / 1024:.2f} KB" + else: + size_str = f"{size_bytes} B" + print(f" {filepath}: {size_str} ({size_bytes:,} bytes)") + else: + print(f" {filepath}: FILE NOT FOUND!") + # Also check for tombstone file + tombstone_file = faiss_file + ".tombstones.npy" + if os.path.isfile(tombstone_file): + size_bytes = os.path.getsize(tombstone_file) + print(f" {tombstone_file}: {size_bytes:,} bytes") + + +if __name__ == "__main__": + run() diff --git a/examples/benchmark/benchmark_sqlite_faiss_mrl_hnsw_sq8.py b/examples/benchmark/benchmark_sqlite_faiss_mrl_hnsw_sq8.py new file mode 100644 index 00000000..0e714e4b --- /dev/null +++ b/examples/benchmark/benchmark_sqlite_faiss_mrl_hnsw_sq8.py @@ -0,0 +1,137 @@ +"""Benchmark: MRL-truncated SBERT + FAISS HNSW+SQ8 + +This benchmark measures the full MRL optimization pipeline: + Embedding (nomic-embed-text-v1.5) → MRL Truncation (768→256) → SQ8 → HNSW + +Compare results against: + - benchmark_sqlite_faiss_onnx.py (Flat, 768d, float32) + - benchmark_sqlite_faiss_hnsw_sq8_onnx.py (HNSW+SQ8, 768d, uint8) +""" + +import json +import os +import time + +from gptcache.adapter import openai +from gptcache import cache, Config +from gptcache.manager import get_data_manager, CacheBase, VectorBase +from gptcache.embedding import SBERTMRL +from gptcache.similarity_evaluation.distance import SearchDistanceEvaluation + + +TARGET_DIM = 256 + + +def run(): + with open("mock_data.json", "r") as mock_file: + mock_data = json.load(mock_file) + + # MRL-enabled embedding model with truncation to TARGET_DIM + embedding_mrl = SBERTMRL( + model="nomic-ai/nomic-embed-text-v1.5", + target_dim=TARGET_DIM, + ) + print(f"Embedding model: nomic-embed-text-v1.5 (MRL truncated to {TARGET_DIM}d)") + print(f"Reported dimension: {embedding_mrl.dimension}") + + class WrapEvaluation(SearchDistanceEvaluation): + def evaluation(self, src_dict, cache_dict, **kwargs): + return super().evaluation(src_dict, cache_dict, **kwargs) + + def range(self): + return super().range() + + sqlite_file = "sqlite.db" + faiss_file = "faiss.index" + has_data = os.path.isfile(sqlite_file) and os.path.isfile(faiss_file) + + cache_base = CacheBase("sqlite") + vector_base = VectorBase( + "faiss", + dimension=TARGET_DIM, + index_type="hnsw_sq8", + ) + data_manager = get_data_manager(cache_base, vector_base, max_size=100000) + cache.init( + embedding_func=embedding_mrl.to_embeddings, + data_manager=data_manager, + similarity_evaluation=WrapEvaluation(), + config=Config(similarity_threshold=0.95), + ) + + i = 0 + for pair in mock_data: + pair["id"] = str(i) + i += 1 + + if not has_data: + print("insert data") + start_time = time.time() + questions, answers = map( + list, zip(*((pair["origin"], pair["id"]) for pair in mock_data)) + ) + cache.import_data(questions=questions, answers=answers) + print( + "end insert data, time consuming: {:.2f}s".format(time.time() - start_time) + ) + + all_time = 0.0 + hit_cache_positive, hit_cache_negative = 0, 0 + fail_count = 0 + for pair in mock_data: + mock_messages = [ + {"role": "system", "content": "You are a helpful assistant."}, + {"role": "user", "content": pair["similar"]}, + ] + try: + start_time = time.time() + res = openai.ChatCompletion.create( + model="gpt-3.5-turbo", + messages=mock_messages, + ) + res_text = openai.get_message_from_openai_answer(res) + if res_text == pair["id"]: + hit_cache_positive += 1 + else: + hit_cache_negative += 1 + consume_time = time.time() - start_time + all_time += consume_time + print("cache hint time consuming: {:.2f}s".format(consume_time)) + except Exception as e: + print(f"OpenAI API Error: {e}") + fail_count += 1 + + print("\n" + "=" * 60) + print(f"MRL + HNSW+SQ8 Benchmark Results (dim={TARGET_DIM})") + print("=" * 60) + print("average time: {:.2f}s".format(all_time / len(mock_data))) + print("cache_hint_positive:", hit_cache_positive) + print("hit_cache_negative:", hit_cache_negative) + print("fail_count:", fail_count) + print("average embedding time: ", cache.report.average_embedding_time()) + print("average search time: ", cache.report.average_search_time()) + + data_manager.close() + # --- Storage size measurement --- + print("\n--- Storage Sizes ---") + for filepath in [faiss_file, sqlite_file]: + if os.path.isfile(filepath): + size_bytes = os.path.getsize(filepath) + if size_bytes >= 1024 * 1024: + size_str = f"{size_bytes / (1024 * 1024):.2f} MB" + elif size_bytes >= 1024: + size_str = f"{size_bytes / 1024:.2f} KB" + else: + size_str = f"{size_bytes} B" + print(f" {filepath}: {size_str} ({size_bytes:,} bytes)") + else: + print(f" {filepath}: FILE NOT FOUND!") + # Also check for tombstone file + tombstone_file = faiss_file + ".tombstones.npy" + if os.path.isfile(tombstone_file): + size_bytes = os.path.getsize(tombstone_file) + print(f" {tombstone_file}: {size_bytes:,} bytes") + + +if __name__ == "__main__": + run() diff --git a/examples/benchmark/benchmark_sqlite_faiss_onnx.py b/examples/benchmark/benchmark_sqlite_faiss_onnx.py index 533aea74..9458ad28 100644 --- a/examples/benchmark/benchmark_sqlite_faiss_onnx.py +++ b/examples/benchmark/benchmark_sqlite_faiss_onnx.py @@ -95,7 +95,8 @@ def range(self): consume_time = time.time() - start_time all_time += consume_time print("cache hint time consuming: {:.2f}s".format(consume_time)) - except: + except Exception as e: + print(f"OpenAI API Error: {e}") fail_count += 1 print("average time: {:.2f}s".format(all_time / len(mock_data))) @@ -105,6 +106,22 @@ def range(self): print("average embedding time: ", cache.report.average_embedding_time()) print("average search time: ", cache.report.average_search_time()) + data_manager.close() + # --- Storage size measurement --- + print("\n--- Storage Sizes ---") + for filepath in [faiss_file, sqlite_file]: + if os.path.isfile(filepath): + size_bytes = os.path.getsize(filepath) + if size_bytes >= 1024 * 1024: + size_str = f"{size_bytes / (1024 * 1024):.2f} MB" + elif size_bytes >= 1024: + size_str = f"{size_bytes / 1024:.2f} KB" + else: + size_str = f"{size_bytes} B" + print(f" {filepath}: {size_str} ({size_bytes:,} bytes)") + else: + print(f" {filepath}: FILE NOT FOUND!") + if __name__ == "__main__": run() diff --git a/gptcache/embedding/__init__.py b/gptcache/embedding/__init__.py index 08b255c7..0060affc 100644 --- a/gptcache/embedding/__init__.py +++ b/gptcache/embedding/__init__.py @@ -2,6 +2,7 @@ "OpenAI", "Huggingface", "SBERT", + "SBERTMRL", "Cohere", "Onnx", "FastText", @@ -20,6 +21,7 @@ openai = LazyImport("openai", globals(), "gptcache.embedding.openai") huggingface = LazyImport("huggingface", globals(), "gptcache.embedding.huggingface") sbert = LazyImport("sbert", globals(), "gptcache.embedding.sbert") +sbert_mrl = LazyImport("sbert_mrl", globals(), "gptcache.embedding.sbert_mrl") onnx = LazyImport("onnx", globals(), "gptcache.embedding.onnx") cohere = LazyImport("cohere", globals(), "gptcache.embedding.cohere") fasttext = LazyImport("fasttext", globals(), "gptcache.embedding.fasttext") @@ -48,6 +50,10 @@ def SBERT(model="all-MiniLM-L6-v2"): return sbert.SBERT(model) +def SBERTMRL(model="nomic-ai/nomic-embed-text-v1.5", target_dim=256, trust_remote_code=True): + return sbert_mrl.SBERTMRL(model, target_dim, trust_remote_code) + + def Onnx(model="GPTCache/paraphrase-albert-onnx"): return onnx.Onnx(model) diff --git a/gptcache/embedding/onnx.py b/gptcache/embedding/onnx.py index 7a1d3f19..bf07d652 100644 --- a/gptcache/embedding/onnx.py +++ b/gptcache/embedding/onnx.py @@ -48,12 +48,12 @@ def to_embeddings(self, data, **_): :return: a text embedding in shape of (dim,). """ - encoded_text = self.tokenizer.encode_plus(data, padding="max_length") + encoded_text = self.tokenizer(data, padding="max_length", return_token_type_ids=True) ort_inputs = { "input_ids": np.array(encoded_text["input_ids"]).astype("int64").reshape(1, -1), "attention_mask": np.array(encoded_text["attention_mask"]).astype("int64").reshape(1, -1), - "token_type_ids": np.array(encoded_text["token_type_ids"]).astype("int64").reshape(1, -1), + "token_type_ids": np.array(encoded_text.get("token_type_ids", [0] * len(encoded_text["input_ids"]))).astype("int64").reshape(1, -1), } ort_outputs = self.ort_session.run(None, ort_inputs) diff --git a/gptcache/embedding/sbert_mrl.py b/gptcache/embedding/sbert_mrl.py new file mode 100644 index 00000000..c83f1568 --- /dev/null +++ b/gptcache/embedding/sbert_mrl.py @@ -0,0 +1,83 @@ +import numpy as np +from gptcache.utils import import_sbert +from gptcache.embedding.base import BaseEmbedding + +import_sbert() + +from sentence_transformers import SentenceTransformer # pylint: disable=C0413 + + +class SBERTMRL(BaseEmbedding): + """Generate truncated sentence embeddings using Matryoshka Representation Learning (MRL). + + MRL-trained models pack the most critical semantic information into the + first dimensions of the embedding vector. This class loads an MRL-compatible + model, truncates the output to ``target_dim``, and L2-normalizes the result. + + The multiplicative benefit: dimension reduction (e.g. 768→256 = 3x) stacks + with downstream quantization (SQ8 = 4x) for ~12x total compression. + + :param model: MRL-compatible model name, defaults to 'nomic-ai/nomic-embed-text-v1.5'. + :type model: str + :param target_dim: target dimensionality after truncation, defaults to 256. + :type target_dim: int + :param trust_remote_code: whether to trust remote code for model loading, defaults to True. + :type trust_remote_code: bool + + Example: + .. code-block:: python + + from gptcache.embedding import SBERTMRL + + test_sentence = 'Hello, world.' + encoder = SBERTMRL('nomic-ai/nomic-embed-text-v1.5', target_dim=256) + embed = encoder.to_embeddings(test_sentence) + assert len(embed) == 256 + """ + + def __init__( + self, + model: str = "nomic-ai/nomic-embed-text-v1.5", + target_dim: int = 256, + trust_remote_code: bool = True, + ): + self.model = SentenceTransformer(model, trust_remote_code=trust_remote_code) + self.model.eval() + self._target_dim = target_dim + + # Validate that target_dim doesn't exceed the model's native dimension + full_dim = self.model.get_embedding_dimension() + if target_dim > full_dim: + raise ValueError( + f"target_dim={target_dim} exceeds model's native dimension={full_dim}. " + f"MRL truncation can only reduce dimensions, not increase them." + ) + + def to_embeddings(self, data, **_): + """Generate MRL-truncated embedding given text input. + + :param data: text in string. + :type data: str + + :return: a truncated, L2-normalized embedding in shape of (target_dim,). + """ + if not isinstance(data, list): + data = [data] + emb = self.model.encode(data) + + # MRL truncation: slice to target dimension + truncated = emb[:, :self._target_dim] + + # L2-normalize after truncation (critical for cosine similarity) + norms = np.linalg.norm(truncated, axis=1, keepdims=True) + normalized = truncated / np.maximum(norms, 1e-9) + + return np.array(normalized.squeeze(0)).astype("float32") + + @property + def dimension(self): + """Embedding dimension (after MRL truncation). + + :return: target dimension + """ + return self._target_dim diff --git a/gptcache/manager/vector_data/faiss.py b/gptcache/manager/vector_data/faiss.py index 65643424..ac4c4fb6 100644 --- a/gptcache/manager/vector_data/faiss.py +++ b/gptcache/manager/vector_data/faiss.py @@ -1,10 +1,11 @@ import os -from typing import List +from typing import List, Optional, Union import numpy as np from gptcache.manager.vector_data.base import VectorBase, VectorData from gptcache.utils import import_faiss +from gptcache.utils.log import gptcache_log import_faiss() @@ -14,26 +15,124 @@ class Faiss(VectorBase): """vector store: Faiss + Supports multiple index types for different performance trade-offs: + + - ``"flat"`` (default): Exact brute-force search with ``IDMap,Flat``. + Best recall, O(n) search. No training needed. + - ``"hnsw_sq8"``: HNSW graph index with 8-bit scalar quantization, + wrapped in ``IndexIDMap`` for custom ID support. + ~4x memory reduction vs Flat, O(log n) search, high recall. + **Does not support per-vector deletion** — uses tombstone marking + and periodic rebuild instead. + :param index_path: the path to Faiss index, defaults to 'faiss.index'. :type index_path: str :param dimension: the dimension of the vector, defaults to 0. :type dimension: int :param top_k: the number of the vectors results to return, defaults to 1. :type top_k: int + :param index_type: index type, one of ``"flat"`` or ``"hnsw_sq8"``, defaults to ``"flat"``. + :type index_type: str + :param hnsw_m: number of links per node in HNSW graph (higher = better recall, more memory), + defaults to 32. + :type hnsw_m: int + :param hnsw_ef_construction: size of the dynamic candidate list during construction + (higher = better recall, slower build), defaults to 200. + :type hnsw_ef_construction: int + :param hnsw_ef_search: size of the dynamic candidate list during search + (higher = better recall, slower search), defaults to 128. + :type hnsw_ef_search: int """ - def __init__(self, index_file_path, dimension, top_k): + def __init__( + self, + index_file_path, + dimension, + top_k, + index_type="flat", + hnsw_m=32, + hnsw_ef_construction=200, + hnsw_ef_search=128, + ): self._index_file_path = index_file_path self._dimension = dimension - self._index = faiss.index_factory(self._dimension, "IDMap,Flat", faiss.METRIC_L2) self._top_k = top_k + self._index_type = index_type.lower() + + # For HNSW: tombstone set of deleted IDs (since HNSW can't do remove_ids) + self._tombstones = set() + if os.path.isfile(index_file_path): self._index = faiss.read_index(index_file_path) + # Restore tombstones if saved alongside the index + tombstone_path = index_file_path + ".tombstones.npy" + if os.path.isfile(tombstone_path): + self._tombstones = set(np.load(tombstone_path).tolist()) + gptcache_log.info( + "Loaded existing Faiss index from %s (ntotal=%d, tombstones=%d)", + index_file_path, + self._index.ntotal, + len(self._tombstones), + ) + else: + self._index = self._create_index( + dimension, self._index_type, hnsw_m, hnsw_ef_construction, hnsw_ef_search + ) + + @staticmethod + def _create_index(dimension, index_type, hnsw_m=32, hnsw_ef_construction=200, hnsw_ef_search=128): + """Create a new FAISS index of the specified type. + + :param dimension: vector dimensionality. + :param index_type: ``"flat"`` or ``"hnsw_sq8"``. + :param hnsw_m: HNSW M parameter. + :param hnsw_ef_construction: HNSW efConstruction parameter. + :param hnsw_ef_search: HNSW efSearch parameter. + :return: a configured ``faiss.Index`` wrapped in ``IndexIDMap``. + """ + if index_type == "hnsw_sq8": + # HNSW graph with 8-bit Scalar Quantization + # - HNSW{M}: graph connectivity (higher M = better recall, more memory) + # - SQ8: each float32 compressed to uint8 (4x memory savings) + factory_string = f"HNSW{hnsw_m},SQ8" + base_index = faiss.index_factory(dimension, factory_string, faiss.METRIC_L2) + + # Set HNSW-specific parameters for recall/speed trade-off + hnsw_index = faiss.downcast_index(base_index) + hnsw_index.hnsw.efSearch = hnsw_ef_search + hnsw_index.hnsw.efConstruction = hnsw_ef_construction + + # Wrap in IndexIDMap so we can use add_with_ids (custom IDs) + # HNSW natively uses sequential IDs; IDMap translates custom → internal + index = faiss.IndexIDMap(base_index) + + # SQ8 requires a lightweight training step (learns min/max per dimension). + # Unlike IVF+PQ, this is virtually instant and can be done on the first + # batch of vectors — no cold start problem. + gptcache_log.info( + "Created HNSW+SQ8 index (dim=%d, M=%d, efConstruction=%d, efSearch=%d)", + dimension, hnsw_m, hnsw_ef_construction, hnsw_ef_search, + ) + return index + else: + # Default: exact brute-force with ID mapping + return faiss.index_factory(dimension, "IDMap,Flat", faiss.METRIC_L2) + + @property + def index_type(self): + return self._index_type def mul_add(self, datas: List[VectorData]): data_array, id_array = map(list, zip(*((data.data, data.id) for data in datas))) np_data = np.array(data_array).astype("float32") ids = np.array(id_array) + + if self._index_type == "hnsw_sq8" and not self._index.is_trained: + # SQ8 training: learns per-dimension min/max for quantization. + # This is virtually instant (unlike IVF+PQ which needs ~10K vectors). + self._index.train(np_data) + gptcache_log.info("Trained HNSW+SQ8 index on %d vectors", len(np_data)) + self._index.add_with_ids(np_data, ids) def search(self, data: np.ndarray, top_k: int = -1): @@ -41,20 +140,63 @@ def search(self, data: np.ndarray, top_k: int = -1): return None if top_k == -1: top_k = self._top_k + np_data = np.array(data).astype("float32").reshape(1, -1) - dist, ids = self._index.search(np_data, top_k) - ids = [int(i) for i in ids[0]] - return list(zip(dist[0], ids)) + + if self._index_type == "hnsw_sq8" and self._tombstones: + # Over-fetch to compensate for tombstoned results we'll filter out + fetch_k = min(top_k + len(self._tombstones), self._index.ntotal) + dist, ids = self._index.search(np_data, fetch_k) + # Filter out tombstoned IDs + results = [] + for d, i in zip(dist[0], ids[0]): + i = int(i) + if i == -1 or i in self._tombstones: + continue + results.append((d, i)) + if len(results) >= top_k: + break + return results if results else None + else: + dist, ids = self._index.search(np_data, top_k) + ids = [int(i) for i in ids[0]] + return list(zip(dist[0], ids)) def rebuild(self, ids=None): + """Rebuild the index, optionally keeping only the specified IDs. + + For HNSW+SQ8, this clears the tombstone set since the rebuild + creates a fresh index from the remaining live vectors. + """ + self._tombstones.clear() return True def delete(self, ids): - ids_to_remove = np.array(ids) - self._index.remove_ids(faiss.IDSelectorBatch(ids_to_remove.size, faiss.swig_ptr(ids_to_remove))) + """Delete vectors by their IDs. + + For Flat index: uses FAISS native ``remove_ids``. + For HNSW+SQ8: marks IDs as tombstones (logical deletion) since + HNSW does not support structural deletion. Tombstoned IDs are + filtered out during search and removed on the next ``rebuild()``. + """ + if self._index_type == "hnsw_sq8": + # HNSW does not support remove_ids — use tombstone marking + self._tombstones.update(int(i) for i in ids) + gptcache_log.debug( + "Tombstoned %d IDs in HNSW index (total tombstones: %d)", + len(ids), + len(self._tombstones), + ) + else: + ids_to_remove = np.array(ids) + self._index.remove_ids(faiss.IDSelectorBatch(ids_to_remove.size, faiss.swig_ptr(ids_to_remove))) def flush(self): faiss.write_index(self._index, self._index_file_path) + # Persist tombstones alongside the index + if self._tombstones: + tombstone_path = self._index_file_path + ".tombstones.npy" + np.save(tombstone_path, np.array(list(self._tombstones))) def close(self): self.flush() diff --git a/gptcache/manager/vector_data/manager.py b/gptcache/manager/vector_data/manager.py index 815fb934..585c6567 100644 --- a/gptcache/manager/vector_data/manager.py +++ b/gptcache/manager/vector_data/manager.py @@ -144,9 +144,19 @@ def get(name, **kwargs): dimension = kwargs.get("dimension", DIMENSION) index_path = kwargs.pop("index_path", FAISS_INDEX_PATH) + index_type = kwargs.get("index_type", "flat") + hnsw_m = kwargs.get("hnsw_m", 32) + hnsw_ef_construction = kwargs.get("hnsw_ef_construction", 200) + hnsw_ef_search = kwargs.get("hnsw_ef_search", 128) VectorBase.check_dimension(dimension) vector_base = Faiss( - index_file_path=index_path, dimension=dimension, top_k=top_k + index_file_path=index_path, + dimension=dimension, + top_k=top_k, + index_type=index_type, + hnsw_m=hnsw_m, + hnsw_ef_construction=hnsw_ef_construction, + hnsw_ef_search=hnsw_ef_search, ) elif name == "chromadb": from gptcache.manager.vector_data.chroma import Chromadb diff --git a/setup.py b/setup.py index 5cfeda12..f14f0e3d 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,12 @@ here = os.path.abspath(os.path.dirname(__file__)) -with open("README.md", "r") as fh: +with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() def parse_requirements(file_name: str) -> List[str]: - with open(file_name) as f: + with open(file_name, encoding="utf-8") as f: return [ require.strip() for require in f if require.strip() and not require.startswith('#') @@ -22,7 +22,7 @@ def parse_requirements(file_name: str) -> List[str]: def read(*parts): - with codecs.open(os.path.join(here, *parts), "r") as fp: + with codecs.open(os.path.join(here, *parts), "r", encoding="utf-8") as fp: return fp.read() diff --git a/tests/unit_tests/manager/test_local_index.py b/tests/unit_tests/manager/test_local_index.py index 5880b6f5..cc2e0999 100644 --- a/tests/unit_tests/manager/test_local_index.py +++ b/tests/unit_tests/manager/test_local_index.py @@ -31,6 +31,82 @@ def test_faiss(self): name='faiss', top_k=3, dimension=DIM, index_path=index_path ) + def test_faiss_hnsw_sq8(self): + """Test HNSW+SQ8 index: add, search, tombstone deletion, rebuild, persistence.""" + cls = partial(Faiss, dimension=DIM, index_type="hnsw_sq8") + + # --- Basic add and search --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + self.assertEqual(index.index_type, "hnsw_sq8") + self.assertEqual(len(index.search(data[0])), TOP_K) + # Nearest neighbor of data[0] should be itself (id=0) + self.assertEqual(index.search(data[0])[0][1], 0) + + # --- Tombstone deletion filters results --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + # Delete id=0, search for data[0] should NOT return id=0 + index.delete([0]) + results = index.search(data[0]) + result_ids = [r[1] for r in results] + self.assertNotIn(0, result_ids) + # ntotal still includes tombstoned vectors + self.assertEqual(index.count(), SIZE) + + # --- Rebuild clears tombstones --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + index.delete([0, 1, 2]) + self.assertEqual(len(index._tombstones), 3) + index.rebuild(list(range(3, SIZE))) + self.assertEqual(len(index._tombstones), 0) + + # --- Persistence: tombstones survive save/load --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + index.delete([0, 1]) + index.close() # flush index + tombstones to disk + + # Reload and verify tombstones were restored + new_index = cls(index_file_path=index_path, top_k=TOP_K) + self.assertEqual(len(new_index._tombstones), 2) + results = new_index.search(data[0]) + result_ids = [r[1] for r in results] + self.assertNotIn(0, result_ids) + self.assertNotIn(1, result_ids) + + # --- Create via VectorBase factory --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = VectorBase( + 'faiss', top_k=3, dimension=DIM, + index_path=index_path, index_type='hnsw_sq8' + ) + data = np.random.randn(100, DIM).astype(np.float32) + index.mul_add([VectorData(id=i, data=v) for v, i in zip(data, range(100))]) + self.assertEqual(index.search(data[0])[0][1], 0) + def test_hnswlib(self): cls = partial(Hnswlib, max_elements=MAX_ELEMENTS, dimension=DIM) self._internal_test_normal(cls) From 98c42d846d902c2a9ac8bf502f9a5857659a207d Mon Sep 17 00:00:00 2001 From: eitandub22 Date: Thu, 7 May 2026 11:43:40 +0300 Subject: [PATCH 02/38] Fix Faiss.rebuild() for hnsw_sq8: preserve tombstones instead of clearing them HNSW+SQ8 does not support structural deletion (IndexHNSWSQ has no reconstruct path), so vectors marked as deleted remain in the graph permanently. The previous rebuild() cleared self._tombstones, which silently allowed those deleted vectors to reappear in search results. Fix: rebuild() now skips tombstone clearance for hnsw_sq8. Tombstones are bounded by cumulative eviction count (~8 bytes/ID), so keeping them is safe even at scale. Also fix flush() to remove a stale .tombstones.npy file when the set is empty, preventing a phantom reload on a fresh index. Regression tests added for: - tombstones survive rebuild (not cleared) - deleted IDs remain filtered from search results after rebuild - tombstone file is written after rebuild+flush and survives reload Co-Authored-By: Claude Sonnet 4.6 --- gptcache/manager/vector_data/faiss.py | 31 +++++++++--- tests/unit_tests/manager/test_local_index.py | 50 +++++++++++++++++++- 2 files changed, 73 insertions(+), 8 deletions(-) diff --git a/gptcache/manager/vector_data/faiss.py b/gptcache/manager/vector_data/faiss.py index ac4c4fb6..74ac89f8 100644 --- a/gptcache/manager/vector_data/faiss.py +++ b/gptcache/manager/vector_data/faiss.py @@ -58,6 +58,9 @@ def __init__( self._dimension = dimension self._top_k = top_k self._index_type = index_type.lower() + self._hnsw_m = hnsw_m + self._hnsw_ef_construction = hnsw_ef_construction + self._hnsw_ef_search = hnsw_ef_search # For HNSW: tombstone set of deleted IDs (since HNSW can't do remove_ids) self._tombstones = set() @@ -163,11 +166,24 @@ def search(self, data: np.ndarray, top_k: int = -1): return list(zip(dist[0], ids)) def rebuild(self, ids=None): - """Rebuild the index, optionally keeping only the specified IDs. - - For HNSW+SQ8, this clears the tombstone set since the rebuild - creates a fresh index from the remaining live vectors. + """Rebuild the index, removing physically deleted vectors where possible. + + For flat: clears the (unused) tombstone set — physical removal was + already done by ``remove_ids`` in ``delete()``. + For hnsw_sq8: ``IndexHNSWSQ`` does not expose a decode path for stored + SQ8 codes, so structural compaction is not possible here. Tombstones + are intentionally **kept** so that evicted IDs continue to be filtered + out of search results in all subsequent calls to ``search()``. + + The tombstone set is bounded by the total number of evictions over the + cache lifetime (each eviction adds at most one entry). At 8 bytes per + int64, even 1 million cumulative evictions costs only ~8 MB. """ + if self._index_type == "hnsw_sq8": + # HNSW cannot physically remove vectors. Tombstones remain active + # and must NOT be cleared — clearing them would allow deleted + # vectors to reappear in search results. + return True self._tombstones.clear() return True @@ -193,10 +209,13 @@ def delete(self, ids): def flush(self): faiss.write_index(self._index, self._index_file_path) - # Persist tombstones alongside the index + tombstone_path = self._index_file_path + ".tombstones.npy" if self._tombstones: - tombstone_path = self._index_file_path + ".tombstones.npy" np.save(tombstone_path, np.array(list(self._tombstones))) + elif os.path.isfile(tombstone_path): + # Remove stale tombstone file left over from a previous flush so + # that a subsequent load does not restore already-evicted IDs. + os.remove(tombstone_path) def close(self): self.flush() diff --git a/tests/unit_tests/manager/test_local_index.py b/tests/unit_tests/manager/test_local_index.py index cc2e0999..bcc14cb2 100644 --- a/tests/unit_tests/manager/test_local_index.py +++ b/tests/unit_tests/manager/test_local_index.py @@ -1,3 +1,4 @@ +import os import unittest from functools import partial from pathlib import Path @@ -64,7 +65,7 @@ def test_faiss_hnsw_sq8(self): # ntotal still includes tombstoned vectors self.assertEqual(index.count(), SIZE) - # --- Rebuild clears tombstones --- + # --- Rebuild preserves tombstones (HNSW cannot physically evict vectors) --- with TemporaryDirectory(dir='./') as root: index_path = str((Path(root) / 'index.bin').absolute()) index = cls(index_file_path=index_path, top_k=TOP_K) @@ -75,7 +76,9 @@ def test_faiss_hnsw_sq8(self): index.delete([0, 1, 2]) self.assertEqual(len(index._tombstones), 3) index.rebuild(list(range(3, SIZE))) - self.assertEqual(len(index._tombstones), 0) + # Tombstones must NOT be cleared — HNSW keeps deleted vectors in the + # graph; clearing the tombstone set would make them reappear in search. + self.assertEqual(len(index._tombstones), 3) # --- Persistence: tombstones survive save/load --- with TemporaryDirectory(dir='./') as root: @@ -96,6 +99,49 @@ def test_faiss_hnsw_sq8(self): self.assertNotIn(0, result_ids) self.assertNotIn(1, result_ids) + # --- Rebuild keeps deleted IDs filtered in search --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + index.delete([0, 1, 2]) + index.rebuild(list(range(3, SIZE))) + # Tombstones stay — deleted IDs must not appear in search results + self.assertEqual(len(index._tombstones), 3) + results = index.search(data[0]) + result_ids = [r[1] for r in results] + self.assertNotIn(0, result_ids, "id=0 must remain filtered after rebuild") + self.assertNotIn(1, result_ids, "id=1 must remain filtered after rebuild") + self.assertNotIn(2, result_ids, "id=2 must remain filtered after rebuild") + + # --- Tombstone file persists after rebuild+flush and survives reload --- + with TemporaryDirectory(dir='./') as root: + index_path = str((Path(root) / 'index.bin').absolute()) + tombstone_path = index_path + ".tombstones.npy" + index = cls(index_file_path=index_path, top_k=TOP_K) + data = np.random.randn(SIZE, DIM).astype(np.float32) + index.mul_add( + [VectorData(id=i, data=v) for v, i in zip(data, list(range(SIZE)))] + ) + index.delete([0, 1]) + index.rebuild(list(range(2, SIZE))) + index.close() + # Tombstone file must still exist — tombstones were preserved + self.assertTrue( + os.path.isfile(tombstone_path), + "tombstone file must be written since tombstones are preserved after rebuild" + ) + # Reload — deleted IDs must still be filtered + reloaded = cls(index_file_path=index_path, top_k=TOP_K) + self.assertEqual(len(reloaded._tombstones), 2) + results = reloaded.search(data[0]) + result_ids = [r[1] for r in results] + self.assertNotIn(0, result_ids, "id=0 must remain filtered after reload post-rebuild") + self.assertNotIn(1, result_ids, "id=1 must remain filtered after reload post-rebuild") + # --- Create via VectorBase factory --- with TemporaryDirectory(dir='./') as root: index_path = str((Path(root) / 'index.bin').absolute()) From 5575de097fd050ac4a9c188c21a9a584ecb2d4a0 Mon Sep 17 00:00:00 2001 From: eitandub22 Date: Sun, 10 May 2026 11:09:40 +0300 Subject: [PATCH 03/38] Support batched import and float16 embedding storage Add batch_size to Cache.import_data to support embedding functions that accept lists and return (N, dim) embeddings; adapt SBERTMRL to return (dim,) for single inputs and (N, dim) for batches. Persist embeddings in SQLStorage as float16 (reconstruct to float32 on load) to reduce disk usage ~2x. Update benchmark_qqp to ingest data in configurable batches with progress output. Also update .gitignore to exclude CLAUDE files and .env. --- .gitignore | 6 ++++- examples/benchmark/benchmark_qqp.py | 12 +++++++-- gptcache/core.py | 28 +++++++++++++++++++-- gptcache/embedding/sbert_mrl.py | 4 ++- gptcache/manager/scalar_data/sql_storage.py | 8 ++++-- 5 files changed, 50 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index a972ff9a..7bae2e30 100644 --- a/.gitignore +++ b/.gitignore @@ -138,4 +138,8 @@ dmypy.json **/example.db **/.chroma docs/references/* -!docs/references/index.rst \ No newline at end of file +!docs/references/index.rst + +CLAUDE.md +.claude/* +.env \ No newline at end of file diff --git a/examples/benchmark/benchmark_qqp.py b/examples/benchmark/benchmark_qqp.py index 72359c18..181ed6cc 100644 --- a/examples/benchmark/benchmark_qqp.py +++ b/examples/benchmark/benchmark_qqp.py @@ -32,6 +32,7 @@ NUM_TP_TEST = 2000 # True-duplicate queries (goal: high hit rate) NUM_FP_TEST = 2000 # Non-duplicate queries (goal: low hit rate) SIMILARITY_THRESH = 0.90 +INGEST_BATCH_SIZE = 64 # Questions per embedding call during ingestion def create_encoder(mode): @@ -186,10 +187,17 @@ def run(mode): dup_pairs = list(duplicates.select(range(NUM_INGEST))) db_questions = [pair["question1"] for pair in dup_pairs] - print(f"\nIngesting {len(db_questions)} questions...") + print(f"\nIngesting {len(db_questions)} questions (batch_size={INGEST_BATCH_SIZE})...") start_insert = time.time() dummy_answers = [f"Answer_{i}" for i in range(len(db_questions))] - cache.import_data(questions=db_questions, answers=dummy_answers) + for start in range(0, len(db_questions), INGEST_BATCH_SIZE): + batch_q = db_questions[start : start + INGEST_BATCH_SIZE] + batch_a = dummy_answers[start : start + INGEST_BATCH_SIZE] + cache.import_data(questions=batch_q, answers=batch_a, batch_size=INGEST_BATCH_SIZE) + done = min(start + INGEST_BATCH_SIZE, len(db_questions)) + elapsed = time.time() - start_insert + print(f" Ingested {done}/{len(db_questions)} " + f"({done / elapsed:.0f} vec/s)", flush=True) insert_time = time.time() - start_insert print(f"Ingestion complete in {insert_time:.2f}s " f"({len(db_questions)/insert_time:.0f} vectors/sec)") diff --git a/gptcache/core.py b/gptcache/core.py index 4a17c29b..ef569d72 100644 --- a/gptcache/core.py +++ b/gptcache/core.py @@ -87,19 +87,43 @@ def close(): if not os.getenv("IS_CI"): gptcache_log.error(e) - def import_data(self, questions: List[Any], answers: List[Any], session_ids: Optional[List[Optional[str]]] = None) -> None: + def import_data( + self, + questions: List[Any], + answers: List[Any], + session_ids: Optional[List[Optional[str]]] = None, + batch_size: int = 1, + ) -> None: """Import data to GPTCache :param questions: preprocessed question Data :param answers: list of answers to questions :param session_ids: list of the session id. + :param batch_size: number of questions to embed in one call. + Values >1 pass a list to ``embedding_func`` and expect a 2-D + array back (shape ``[batch_size, dim]``), which is the case for + all embedders that accept list input (e.g. ``SBERTMRL``). + Defaults to 1 (original one-at-a-time behaviour). + :type batch_size: int :return: None """ + if batch_size > 1: + embedding_datas = [] + for i in range(0, len(questions), batch_size): + batch = questions[i : i + batch_size] + result = self.embedding_func(batch) + # batch call returns (N, dim); single call returns (dim,) + if hasattr(result, "ndim") and result.ndim == 2: + embedding_datas.extend(result) + else: + embedding_datas.append(result) + else: + embedding_datas = [self.embedding_func(question) for question in questions] self.data_manager.import_data( questions=questions, answers=answers, - embedding_datas=[self.embedding_func(question) for question in questions], + embedding_datas=embedding_datas, session_ids=session_ids if session_ids else [None for _ in range(len(questions))], ) diff --git a/gptcache/embedding/sbert_mrl.py b/gptcache/embedding/sbert_mrl.py index c83f1568..5d0bf461 100644 --- a/gptcache/embedding/sbert_mrl.py +++ b/gptcache/embedding/sbert_mrl.py @@ -72,7 +72,9 @@ def to_embeddings(self, data, **_): norms = np.linalg.norm(truncated, axis=1, keepdims=True) normalized = truncated / np.maximum(norms, 1e-9) - return np.array(normalized.squeeze(0)).astype("float32") + result = normalized.astype("float32") + # Return (dim,) for a single string, (N, dim) for a batch + return result.squeeze(0) if result.shape[0] == 1 else result @property def dimension(self): diff --git a/gptcache/manager/scalar_data/sql_storage.py b/gptcache/manager/scalar_data/sql_storage.py index d1b55d69..550240fe 100644 --- a/gptcache/manager/scalar_data/sql_storage.py +++ b/gptcache/manager/scalar_data/sql_storage.py @@ -227,7 +227,9 @@ def _insert(self, data: CacheData, session: sqlalchemy.orm.Session) -> Column: question=data.question if isinstance(data.question, str) else data.question.content, - embedding_data=data.embedding_data.tobytes() + # Store as float16: ~2x size reduction vs float32 with no + # measurable recall impact for L2-normalized embeddings. + embedding_data=data.embedding_data.astype(np.float16).tobytes() if data.embedding_data is not None else None, ) @@ -315,7 +317,9 @@ def get_data_by_id(self, key: int) -> Optional[CacheData]: return CacheData( question=qs.question if not deps else Question(qs.question, res_deps), answers=res_ans, - embedding_data=np.frombuffer(qs.embedding_data, dtype=np.float32), + embedding_data=np.frombuffer(qs.embedding_data, dtype=np.float16).astype(np.float32) + if qs.embedding_data is not None + else None, session_id=session_ids, create_on=qs.create_on, last_access=last_access, From 7b7ea29908a4693bab0cbc68ff5370f18997818f Mon Sep 17 00:00:00 2001 From: eitandub22 Date: Thu, 28 May 2026 11:28:33 +0300 Subject: [PATCH 04/38] Add exact-match processor and ONNX export Introduce an exact-match processor, ONNX dynamic export script, and related unit test; update core, adapter, config, embedding, and manager modules to support exact-match/ONNX workflow. Add benchmark/example result files and scripts (including moved smoke benchmarks) and update .gitignore for docs and onnx_dynamic artifacts. This change adds instrumentation and data for evaluating exact-match performance and ONNX-based embeddings. --- .gitignore | 5 +- bench_real_10k/gap_closure.json | 132 +++ bench_real_10k/qqp_queries.json | 1 + bench_real_10k/results.json | 435 +++++++++ .../benchmark/bench_baseline/results.json | 341 +++++++ .../bench_eviction_baseline/alpha_1.5.json | 78 ++ .../expensive_0.25.json | 78 ++ .../bench_eviction_baseline/results.json | 78 ++ .../bench_eviction_baseline/size_2000.json | 78 ++ .../bench_eviction_baseline/size_500.json | 78 ++ examples/benchmark/bench_final/results.json | 518 ++++++++++ examples/benchmark/bench_step2/results.json | 341 +++++++ examples/benchmark/bench_step3/results.json | 123 +++ examples/benchmark/bench_step4/results.json | 124 +++ examples/benchmark/bench_step5/results.json | 103 ++ examples/benchmark/benchmark_eviction.py | 290 ++++++ examples/benchmark/benchmark_qqp.py | 887 ++++++++++++++---- examples/benchmark/close_gaps.py | 373 ++++++++ examples/benchmark/dump_qqp_queries.py | 74 ++ examples/benchmark/sweep_efsearch.py | 160 ++++ examples/smoke/README.md | 16 + .../benchmark_sqlite_faiss_hnsw_sq8_onnx.py | 5 + .../benchmark_sqlite_faiss_mrl_hnsw_sq8.py | 10 +- .../benchmark_sqlite_faiss_onnx.py | 5 + gptcache/adapter/adapter.py | 71 ++ gptcache/config.py | 19 + gptcache/core.py | 38 + gptcache/embedding/onnx.py | 113 ++- gptcache/manager/scalar_data/manager.py | 2 + gptcache/manager/scalar_data/sql_storage.py | 21 +- gptcache/manager/vector_data/faiss.py | 69 +- gptcache/manager/vector_data/manager.py | 5 +- gptcache/processor/exact_match.py | 133 +++ scripts/export_onnx_dynamic.py | 112 +++ .../unit_tests/processor/test_exact_match.py | 123 +++ 35 files changed, 4795 insertions(+), 244 deletions(-) create mode 100644 bench_real_10k/gap_closure.json create mode 100644 bench_real_10k/qqp_queries.json create mode 100644 bench_real_10k/results.json create mode 100644 examples/benchmark/bench_baseline/results.json create mode 100644 examples/benchmark/bench_eviction_baseline/alpha_1.5.json create mode 100644 examples/benchmark/bench_eviction_baseline/expensive_0.25.json create mode 100644 examples/benchmark/bench_eviction_baseline/results.json create mode 100644 examples/benchmark/bench_eviction_baseline/size_2000.json create mode 100644 examples/benchmark/bench_eviction_baseline/size_500.json create mode 100644 examples/benchmark/bench_final/results.json create mode 100644 examples/benchmark/bench_step2/results.json create mode 100644 examples/benchmark/bench_step3/results.json create mode 100644 examples/benchmark/bench_step4/results.json create mode 100644 examples/benchmark/bench_step5/results.json create mode 100644 examples/benchmark/benchmark_eviction.py create mode 100644 examples/benchmark/close_gaps.py create mode 100644 examples/benchmark/dump_qqp_queries.py create mode 100644 examples/benchmark/sweep_efsearch.py create mode 100644 examples/smoke/README.md rename examples/{benchmark => smoke}/benchmark_sqlite_faiss_hnsw_sq8_onnx.py (94%) rename examples/{benchmark => smoke}/benchmark_sqlite_faiss_mrl_hnsw_sq8.py (93%) rename examples/{benchmark => smoke}/benchmark_sqlite_faiss_onnx.py (94%) create mode 100644 gptcache/processor/exact_match.py create mode 100644 scripts/export_onnx_dynamic.py create mode 100644 tests/unit_tests/processor/test_exact_match.py diff --git a/.gitignore b/.gitignore index 7bae2e30..dbae0cc1 100644 --- a/.gitignore +++ b/.gitignore @@ -142,4 +142,7 @@ docs/references/* CLAUDE.md .claude/* -.env \ No newline at end of file +.env + +docs +onnx_dynamic \ No newline at end of file diff --git a/bench_real_10k/gap_closure.json b/bench_real_10k/gap_closure.json new file mode 100644 index 00000000..14afbae0 --- /dev/null +++ b/bench_real_10k/gap_closure.json @@ -0,0 +1,132 @@ +{ + "encoder": "mrl-256d (nomic-embed-text-v1.5 truncated)", + "index": "hnsw_sq8 (loaded from existing artifact)", + "cell_dir": "C:\\Users\\USER\\Desktop\\university\\Fourth_year\\Second_semester\\Caching_in_LLMs\\GPTCache\\bench_real_10k\\cell_D", + "ntotal": 10000, + "n_tp": 2000, + "n_fp": 2000, + "threads": 1, + "faiss_version": "1.13.2", + "evaluator": { + "name": "SearchDistanceEvaluation", + "min_range": 0.0, + "max_range": 4.0 + }, + "gap1_threshold_sweep": { + "rows": [ + { + "threshold": 0.85, + "rank_threshold": 3.4, + "tp_rate": 1.0, + "fp_rate": 0.6115, + "tp_hits": 2000, + "fp_hits": 1223 + }, + { + "threshold": 0.88, + "rank_threshold": 3.52, + "tp_rate": 0.99, + "fp_rate": 0.3015, + "tp_hits": 1980, + "fp_hits": 603 + }, + { + "threshold": 0.9, + "rank_threshold": 3.6, + "tp_rate": 0.969, + "fp_rate": 0.185, + "tp_hits": 1938, + "fp_hits": 370 + }, + { + "threshold": 0.92, + "rank_threshold": 3.68, + "tp_rate": 0.928, + "fp_rate": 0.1105, + "tp_hits": 1856, + "fp_hits": 221 + }, + { + "threshold": 0.94, + "rank_threshold": 3.76, + "tp_rate": 0.805, + "fp_rate": 0.0605, + "tp_hits": 1610, + "fp_hits": 121 + }, + { + "threshold": 0.95, + "rank_threshold": 3.8, + "tp_rate": 0.7225, + "fp_rate": 0.046, + "tp_hits": 1445, + "fp_hits": 92 + }, + { + "threshold": 0.96, + "rank_threshold": 3.84, + "tp_rate": 0.6055, + "fp_rate": 0.0355, + "tp_hits": 1211, + "fp_hits": 71 + }, + { + "threshold": 0.97, + "rank_threshold": 3.88, + "tp_rate": 0.482, + "fp_rate": 0.0255, + "tp_hits": 964, + "fp_hits": 51 + }, + { + "threshold": 0.98, + "rank_threshold": 3.92, + "tp_rate": 0.3435, + "fp_rate": 0.0195, + "tp_hits": 687, + "fp_hits": 39 + } + ], + "target_fp": 0.065, + "chosen": { + "threshold": 0.94, + "rank_threshold": 3.76, + "tp_rate": 0.805, + "fp_rate": 0.0605, + "tp_hits": 1610, + "fp_hits": 121 + }, + "cell_a_reference": { + "threshold": 0.9, + "tp_rate": 0.817, + "fp_rate": 0.0635 + } + }, + "gap2_exact_match": { + "n_repeat": 600, + "exact_frac": 0.3, + "repeats": 3, + "baseline_ms": { + "p50": 179.48979999346193, + "p90": 248.00921001005926, + "p95": 282.4772400126676, + "p99": 355.46919797227014, + "mean": 192.03786627754906, + "iqr": 45.588799999677576, + "n": 1800 + }, + "shortcut_ms": { + "p50": 0.0425000034738332, + "p90": 0.052799994591623545, + "p95": 0.060704996576532715, + "p99": 0.10512198554351924, + "mean": 0.04592800019761651, + "iqr": 0.007600006938446313, + "n": 1800 + }, + "speedup_p50": 4223.289066410827, + "speedup_p95": 4653.2782463226, + "exact_match_hits": 1548, + "exact_match_misses": 272 + } +} \ No newline at end of file diff --git a/bench_real_10k/qqp_queries.json b/bench_real_10k/qqp_queries.json new file mode 100644 index 00000000..33424ab7 --- /dev/null +++ b/bench_real_10k/qqp_queries.json @@ -0,0 +1 @@ +{"n_ingest": 10000, "n_tp": 2000, "n_fp": 2000, "db_questions": ["How do I control my horny emotions?", "What can one do after MBBS?", "What is the best self help book you have read? Why? How did it change your life?", "What will be Hillary Clinton's policy towards India if she becomes president?", "Which is the best book to study TENSOR for general relativity from basic?", "What are the coolest Android hacks and tricks you know?", "Which are the best motivational videos?", "How do I lose weight fast?", "How does an IQ test work and what is determined from an IQ test?", "Is it safe to use Xiaomi mobile phones?", "What are the best books on cosmology?", "Why did it take so long for NASA to find water on Mars?", "Where can I learn to invest in stocks?", "What's the best way to spend a long weekend?", "How do people join ISIS?", "What are some of the most beautiful houses in the world?", "What is the best lesson we should learn from life?", "If Trump were elected, would he pardon Edward Snowden?", "How do I draw bending moment and shear force diagram for beams?", "What's the easiest way to learn Java programs?", "What are the best websites for entrepreneurs?", "Is it safe to travel to Italy now?", "How should I make myself brave?", "What are the reasons that people dislike Hillary Clinton?", "When/how did you realize were not straight?", "What the best science documentaries?", "Why do we, as human beings, use water for?", "How can I join to IB India?", "What are some good ways for international students in the USA to overcome culture shock?", "What if every human can read the other person's thoughts? How would life be in such a scenario?", "How will the ban on existing 500 and 1000 rupee note affect India? What are the pros and cons?", "What are the life lessons that Batman teaches us?", "Can mechanical energy be conserved?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Taklamakan Desert?", "How can I lose 4kg weight?", "How do I create a stage name for myself?", "Can you grow a tree in zero gravity?", "\"Why does Quora mark my perfectly semantic question as, \"\"Needs Improvement\"\"?\"", "Why is Saltwater taffy candy imported in Japan?", "What are your new year resolutions for 2017?", "How will Donald trump's Victory would affect India's relationship with USA?", "How can I improve my English in all aspects?", "How do I prepare for interviews?", "How will Donald Trump's presidency affect international students?", "What are stars made of?", "How can I lose 10 Kilos?", "How do you post a question on Quora?", "Why should we learn photography?", "Which are the best books to learn C++?", "How can I earn extra money during my free time?", "I am in the second year of my CSE and I want to crack GATE 2017. How do I start my preparation? What topics should I be more concentrated on?", "Where Can My Business Capital injection Come From?", "What is Newton's third law of motion? Can you explain what is an action and a reaction with examples?", "What are micronutrients and macronutrients? How do you distinguish the difference between micronutrients and macronutrients?", "What are the best online coding bootcamps?", "To all the busy and successful people: What does your daily schedule look like?", "What does Americans think of Vietnamese people?", "How will Trump's presidency affect the Indian students who are planning to study in the US?", "What Indian government will do to old 500/1000 rs notes once they will collect it from people?", "Where or what is the strangest place you have ever had sex?", "What is a credit score?", "Which is the best hollywood movie you have seen?", "What is black money and how can it effect the economy of a country?", "What is the difference between fact and opinion?", "What will the people who have Black Money in Swiss Bank do after the demonetisation of ₹1000 & ₹500 note?", "Do we need smaller states?", "What are the best places in delhi to chill with your best friend?", "How is technology helping us?", "What are ways of earning money online?", "What is the role of a brand manager?", "If more vacuum energy appears with expansion and it has no limit, can infinite of this energy be created? If yes is energy infinite?", "What's the best smartphone in the market right now?", "How is depression cured without a therapist?", "At what time should I drink green tea to be fit?", "How is US president Donald Trump important for India?", "What does it take to be a top writer on Quora?", "Could I buy a civilianized version of a fighter jet?", "How can I access hackforums.net?", "How to convert red, yellow, and white RCA cables to HDMI?", "How can we earn money from Google?", "Which is the best online shopping websites?", "Do astronomers' know where the center of the universe is?", "Why should I study physics?", "Why does the inequality sign change when both sides are multiplied or divided by a negative number? Does this happen with equations? Why or why not?", "How can I modify apk files?", "Which exercise type help you to increase your height?", "What is the average IQ of a human?", "\"What are the \"\"must have\"\" dishes in your city?\"", "What is the purpose of US military assistance to Egypt?", "Are the notes of Rs. 2000 really embedded with a GPS chip?", "Has Ancient History been scientifically tested? Is it all real? Did it happen differently than we were told it did? Did it even happen at all?", "Why did Trump win the Presidency?", "Why wasn't Leonardo DiCaprio not nominated for Titanic?", "Can we expect time travel to become a reality?", "How do mountain ranges form, and what are some of the major mountain ranges in Oklahoma?", "Is there a directory of landline individual phone numbers?", "Which operating system do Google engineers use?", "What is 0 divided by infinity?", "Is there proof that alien life exists?", "What is the exam pattern for CAT 2016?", "Modi's announcement on banning 500 and 1000 currency notes. How would it affect economy?", "What is the best way to learn and practice C programming?", "Astrology: I am a Capricorn Sun Cap moon and cap rising...what does that say about me?", "How was NEET phase 2, compared to phase 1?", "Why are Muslims prohibited to eat pork?", "What can I do after having diploma in mechanical engineering?", "Who is the best Indian fielder ever?", "How do I hire a legit hacker?", "What do you do to make your baby laugh?", "\"How is the movie \"\"The Man who knew infinity\"\"?\"", "What are some excellent signals and system books suggestions?", "Is trump playing to lose?", "Who will be the USA next President?", "What are some good methods to studying?", "How is Donald Trump in person?", "What is culture integration? What are some examples?", "What are some characteristics of eccentric and concentric contractions?", "How would one train in mountaineering and become a mountain guide?", "If energy is not conserved in an expanding universe, is potential energy infinite (the energy that can be created is infinite)?", "Which one is the best, Linux Mint or Ubuntu?", "How can I overcome fear in public speaking?", "What is the scope for MBA marketing graduates in sales & marketing in hospitality industry?", "What is the best programs for mechanical engineerings?", "Do you believe in fate or free will?", "What are the things I need to learn hacking?", "What are the best weight transformation stories?", "How do I stop being addicted to porn?", "Why did India opt for Rafale aircrafts over other fighter jets?", "What if South Indians form their own separate country?", "Can we time travel anyhow?", "I have a drug test tomorrow and I smoked marijuana 2 weeks ago. How can I increase my chances of passing?", "Can you actually spy on someone else's WhatsApp account?", "Why do the minions in Despicable Me love bananas?", "What are some lesser known TV shows/sitcoms which are really good?", "How do I get to know my crush better?", "What are the medical tests I have to undergo before my marriage?", "What is the most overrated movie of 2016?", "How are people earning billions from home by simple Uber app hack?", "How much it cost for a hair transplant in India?", "How can I avoid human verification in 8 ball pool hack? Is it possible?", "When something is conjured in the Harry Potter universe, is that item simply transported, or actually conjured?", "How can I become a journalist?", "Which is the best engineering field that I can choose?", "Is Donald Trump going to go to jail for flying his jet illegally?", "What are ways to increase organic traffic on Facebook Page?", "Can I hack WhatsApp of someone?", "How do I change the date of birth on my birth certificate?", "What are some examples of traditional economies?", "What is the Delta Force used for?", "How can I learn programming from scratch?", "How can changing 500 and 1000 rupee notes end the black money in India?", "What is the best fat burning pills?", "How can I make an extra $1000 a month?", "Which is the best mutual funds to invest in India?", "What are some ways to lose 40 pounds in two weeks?", "How do I become an introvert?", "What reasons would there be for Christopher Columbus be considered a villain?", "What's the best way to travel the world?", "Can I.Q. be improved?", "What is it like to go to prison?", "What is Pakistan's equivalent university to IITs? And where do those stand compared to IITs?", "Why Supreme Court directed all cinema halls across the country to play the National Anthem before the start of a film?", "How can you improve your communication skill?", "Are GMO foods safe?", "What are some mind-blowing outdoor gadgets tools that most people don't know about?", "Which are the best automation testing tools?", "What would your advice be to your 25 year old self, knowing what you know now?", "What's the relationship between body's pH value and cancer?", "How do I setup a minecraft server?", "How shall I become a software developer in India?", "Who are some celebrities that have a Quora account?", "Does Congress party digging their grave slowly as they are opposing everything done by PM Modi like saying Jay Shriram or dping surgical strikes?", "Which is the best car in world?", "What is an interesting fact that you know and I don't, but shouldn't?", "What is your favorite Star Wars film?", "How can I run a 3 phase motor in a two way supply?", "How can I become a good web designer?", "In what year will we see successful in-space refueling or repair of a large satellite by a small satellite?", "What is the best teacher student story you know?", "How do Indian military and Paramilitary forces keep killing peaceful civilians protestors in Jammu Kashmir?", "What is a money tree at a party?", "Will I get a dental Seat with the score of 400 in neet 2?", "What is the fastest tank in the world?", "What are the chances that the electoral college will decide to vote against Trump if Hillary wins the popular vote?", "How good is the MacBook Pro for gaming?", "Why is India failing so miserably in the 2016 Rio Olympics?", "How do you think demonetisation will affect Indian economy?", "How do I deal with self incompetence?", "How do I transfer WhatsApp messages from Android to iOS?", "Is World War 3 coming?", "Is there a way to get a domain for free?", "What is the best experience you had with your besties?", "How do I recover deleted browser history?", "Who can win the US presidential elections?", "I have scored 650 marks in MAT exam what will be my percentile?", "How can I make rs 10000 per month with 1 lakh rupees in India?", "What are the good books for kids?", "What makes you a human?", "What is the best software company in Chennai?", "What are some good songs to make a texting lyric prank?", "Do you think it's right to bring up your child into this messed up world?", "How can I escape boredom?", "Which is the best way to prepare for SSC CGL at home or by ourselves without coaching?", "How do I speed up my laptop?", "What is the worst thing you've ever done to another human being?", "What are the best places to visit in Wayanad, Kerala?", "How do I see who viewed my instagram videos?", "How did you expand your vocabulary?", "What is the future of mobile apps? Is the Market saturated?", "How do I lose 25 kg by exercise?", "\"Why do people say \"\"God bless you\"\"?\"", "What is the technology of double camera in iPhone 7?", "I always feel sleepy in my lectures. What can I do?", "I have a incurable disease. My wife left me because she can have more fun without me. She hung in for a while. Why?", "What are the boundaries of the FBI’s geographic jurisdiction?", "How can I prepare myself to world' s top university?", "Is it worth buying Kindle in India and what books can one read using Amazon Kindle?", "How can I learn English in a short time?", "Why does Quora show the questions that I have already upvoted in my feed?", "Can white hair turn into black hair?", "How can I get rid of bad habits?", "What are some nice places to hangout in Pune?", "Gyms and Workout Facilities: Are taking protein powder supplements good for health?", "How do you make money with Quora?", "Is Hillary Clinton going to go to jail?", "Will Rs. 2000 currency note really come with A GPS chip? Or it is just a rumor?", "How does a long distance relationship work?", "What are the pros and cons of banning currency notes of 500 and 1000 in India?", "How to run WhatsApp on PC without BlueStacks", "Who is the best-looking woman from your country?", "Why is Saltwater Taffy candy imported in Mexico?", "Which university is best in Germany for doing MS in Computer Science?", "What is the best age for having first sex?", "Which part of the human body would you redesign?", "How do I lose weight fast?", "What is the best site to download films?", "How do I get FM radio on my iPhone?", "What is acupuncture and how does it work?", "Is Donald Trump going to be the next US President?", "How do satellite communications work?", "Does petroleum jelly help eyelashes grow?", "How can you improve your communication skills?", "How do I reset my gmail password when they are not highlighting my recovery email option?", "Who joined the Korean war?", "What are some of the best novels that should be read by everyone?", "How was education during the Japanese occupation in Singapore like?", "What is the diet of the weasel?", "What can you say about Filipino people?", "Why are mobile phones getting uselessly fast? When the real thing is how long its battery can last.?", "What might be the business plan in launching reliance jio?", "How can I tell when someone unfollows me on Instagram?", "What will happen to the superpower status of the USA, if Donald Trump wins the 2016 Presidential elections?", "Is Hormone Replacement Therapy safe?", "How do I make money off amazon bussiness?", "What are some best quotes you have heard?", "How can we improve India's current education system?", "How could I improve my English?", "What should I do to last longer in bed?", "Which is the best wearable technology so far?", "Do Muslims think non-Muslims are going to hell?", "What is better according to you- Coca Cola or Pepsi ? why?", "What are your views about governments decision to stop flow of 1000 and 500 rupee notes.?", "Could England leave the United Kingdom? And if so, what would happen to Wales, Northern Ireland and Scotland?", "What is it like to work at Factual?", "Why do people insist on driving slowly in the left (passing) lane?", "Why isn't the unexamined life worth living?", "Why do people use Quora instead of Google to find answers to questions?", "What are we doing here on Earth?", "How can I learn communication skills?", "How do I recover data from an external hard disk?", "Which countries have nuclear weapons?", "What is the perfect website that lists all forms of word noun, verb and adverb?", "Why most of the people in India don't pay income tax?", "Why should women support Donald Trump?", "What's the best entry book for topology?", "Can I install Mac OS on my Dell laptop? How?", "Does the Indian education system need a reformation?", "What has life taught you?", "Will GST change Indian economy?", "What's your favorite song right now?", "How do I get the best deals for a cruise?", "What is the best strategy to crack JEE Advance in first attempt?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Andreanof Islands earthquake in 1957?", "What was there before the Universe?", "How can I boost my intelligence to think on my feet?", "Why do people often ask questions in Quora while they can Google it themselves?", "What is the best place to stay in Mumbai?", "Which kind of phone was your first cell phone?", "How can I improve my english language skills? I am basically from gujarati background.", "In what way do you think the reservation system can be diminished in India?", "What should the inside of an eggplant look like?", "Is it possible to remove everything mentioning Hillary Clinton or Donald Trump from my Quora feed?", "Were there any humans before Adam and Eve?", "Fix@~ 1.8009315079 AVG Antivirus technical support phone number?", "Is it better to have loved and lost than to have never loved at all?", "Which is the best course for digital marketing?", "How do I approach a beautiful stranger girl?", "What is the actual height of bollywood stars?", "What are the benefits of getting married?", "How do I reset my gmail password when they are not highlighting my recovery email option?", "How do I really make money online?", "Are there comprehensive tutorials to learn to use JetBrains IDEs to their full advantage?", "Which foods help gain weight?", "What is the easy way to make money online?", "Why is salt water taffy candy unknown in Japan?", "What is the best option for a mechanical engineer after bachelor of engineering?", "What can I do after my MBBs?", "What are the best places for honeymoon in winters?", "How may I know whether my wife is cheating on me?", "Why do people see manaphy as annoying?", "Why do people in relationships cheat?", "How can I improve my English speaking ability?", "How do l see who viewed my videos on Instagram?", "How does one prepare for the UGC net/jrf examination?", "How can the drive from Edmonton to Auckland be described, and how do these cities' attractions compare to those in London?", "How does it feel to be a Christian in Pakistan?", "Donald Trump has won the presidency election. How does it affect US relations with India?", "What do you think of NCERT books?", "Is anything wrong with being an atheist?", "What are the things to do before you die?", "What is the difference between an artist and an artisan?", "Which is the best phone for Audio Recording?", "How much i can earn from blogging ?", "Would any women out there date a man 3-4 inches shorter than you without heels?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Mojave Desert?", "What will be the repercussions of banning Rs 500 and Rs 1000 notes on Indian economy?", "What do the breeders represent in Mad Max?", "In your opinion, what is the difference between style of current BJP & Previous Congress Govt.?", "What is the proof of purgatory from the bible?", "What are the easy ways to earn money online?", "What can you do with Bachelor of Business Administration degree?", "What should be done to manage food cravings?", "What are some best examples of hypocrisy at its best around the world?", "How can you delete your Yahoo account?", "What happens to a question on Quora if it is marked as needing further improvement?", "What is the best photo you have taken with your cell phone?", "Why doesn't everyone I ask to answer a question answer it on Quora?", "Many people say Islam is a religion of peace. Do you agree or disagree?", "Does plucked hair ever stop growing back?", "What are the best 5 films you have ever watched?", "What is it like for people to constantly mistake you for a different race/ethnicity than you really are?", "How is the victory of Donald Trump going to affect the international students aspiring to pursue their Masters in US?", "Who, out of anyone in the world, would be the best president of the United States?", "Do Buddhists believe in god?", "Why can't India get more medals in Olympics?", "What exactly is presence of mind?", "Why do people have lots of trust issues nowadays?", "Who would win a fight? Bruce Lee or one of today's top MMA fighters? And why?", "What are the best places to visit in Kanhangad, Kerala?", "How can I get a rank in CA CPT?", "What happens if a war between India and Pakistan were to take place?", "Will the economy of India collapse due to the banning of ₹500 and ₹1000 notes?", "What should I do to improve my interpretation skills?", "What are signs of low blood sugar?", "What are the best ways to utilize my Linkedin Premium Account?", "How can I stop making excuses?", "Who is best lingerie online shopping store in India?", "What is Gilgamesh?", "How could you hack someone’s mobile phone?", "Is space travel all a hoax because rocket science is too hard as to be impossible?", "What are some examples of balanced forces?", "Why was Cyrus Mistry removed as the chairman of Tata Sons?", "Which is the best bike in Royal Enfield series?", "How do I stop being possessive about my girlfriend?", "What are the basics to digital marketing?", "What is best way to earn money without working hard?", "Do you know of startups that focuses on providing local tour guides with a specific focus on off-the-beaten track culture, arts, foods, etc?", "Can terrorism be wiped out from the world?", "Is climate change the same as global warming?", "How can I stop myself from watching too much of porn?", "What will you plan for the new year?", "What is the best way to learn vocabulary?", "How should I improve my english communication skills?", "How should I loose weight?", "What are the uses of laptops?", "What causes people to go insane?", "What are the safety precautions on handling shotguns proposed by the NRA in Arkansas?", "How can you improve your communication skill?", "Give names of some of the best horror movies?", "How do I make India as corruption free?", "What are the problems faced by solo travellers?", "Which are the best movies ever?", "What age is considered too old to get a PhD?", "What are some good restaurants in Nagpur?", "What does it mean when your period is three days late?", "How can one overcome a phobia?", "What does it take to be a freelancing content writer?", "Who killed John lennon?", "What do you feel is your purpose in life?", "How can I increase the traffic to a website?", "What happens to gum when you swallow it?", "Which is the best institute for distance MBA in India?", "How do I stop being socially awkward and introverted?", "What are some ways to get rid off addiction to WhatsApp?", "What are Newton's laws of motion?", "What are uses for Darmstadtium?", "How can I stop my addiction of eating fast food?", "Does PV Sindhu deserve such huge money? if that money was raised before Olympics we could have won more medals", "Is Batman an antihero?", "Why is Saltwater taffy candy imported in The Bahamas?", "How did people accurately know what time is was when they first started with clocks?", "Should students take part in politics? If yes, why?", "How do I stop procrastination?", "Why doesn't the Moon fall down on Earth due to gravitational force?", "Why does quora mark my questions as needing improvement?", "What is file system in Linux?", "How can a newly recruited teacher make a name for himself very fast when it comes to attracting students for his tuition services?", "What are the best books to learn Kali Linux?", "What daily habits can someone adopt to lead a more productive life?", "Who is your favorite movie star?", "How is black money curbed with the ban of 1000 rupee notes and introducing new 500 and 2000 rupee notes?", "Which country has the best education system and why?", "How is Hillary Clinton a better choice than Donald Trump?", "What is the easy way to make money online?", "What will be Hillary Clinton's India policy if she wins the election?", "What are closed timelike curves?", "What tips would you give to someone who is just becoming involved in growth hacking?", "Is timetravel possible?", "What are the competitors to Blue Apron?", "Why is Merkel so insistent on taking refugees into her country?", "What are the safety precautions on handling shotguns proposed by the NRA in Maine?", "What are good ways to decrease your calorie intake?", "Can you make money in Amway?", "What do people of Pakistan think about Indians?", "What is the scope of ECE in India?", "What is half wave plate?", "How do I fix my garage door spring?", "What's your favorite color?", "Where can I test my IQ online? Is there any free source?", "What will happen if Donald trump wins, and its effect on Indian students who are studying in US?", "How can I increase my penis?", "What is difference between beta version software to original software?", "How do you reset your Yahoo password?", "How to get away with someone to whom you have killed?", "Where can I find free export import data of shipping for international trade business?", "Which is the best Coding bootcamp for people in India?", "What are signs that a person is emotionally unavailable?", "How can the ban of 500 and 1000 rupee notes increase the Indian economy?", "As an engineering 3rd year student what should I start preparing for IAS exam?", "How much Pepto Bismol should I give my dog?", "Who is going to win the 2016 US presidential election? Why?", "Why do some people write the asked question at the top of their answers?", "What are some great books to learn Korean?", "What is the easiest and painless way to commit suicide?", "What is the best phone I can buy under the price of 15000?", "Will Israel declare war on New Zealand?", "Why do some people still believe that the earth is flat?", "Can anime exist in a parallel universe and can we visit them far in the future or in the afterlife?", "How will you know you love someone?", "What is your opinion on PM Narendra Modi's decision to ban INR 500 and INR 1000 notes?", "What are the most sexy videos on vimeo?", "What would happen to the universe if suddenly time stopped?", "How do you reset your iPhone without the passcode?", "Why do I have blackheads all over my nose? How can I get rid of them?", "Is there any way to stop terrorism?", "How can I make 100 dollars a day?", "If Harry Potter was the rightful owner to the elder wand, why did he destroy it in Harry Potter and the Deathly Hallows Part 2?", "What will be the best place to visit in December in India?", "How do I recognise true volte mobiles?", "Is Sai Baba really a god?", "Where can make money online free?", "Can a IAS officer give order to an IPS officer?", "What are some coolest camping gadgets that exist that most people don't know about?", "How do you delete a question you asked on Quora", "What is the best way to start off an essay?", "I've decided to invest monthly 5k in mutual fund. Which is the best mutual fund available right now?", "What are the ways for a stupid person to earn money online?", "How I can speak English with fluency?", "What is life's purpose?", "How could you turn $100 million into $1 billion+ in 15-20 years?", "What is the function of a hard drive?", "What is it like to be raped?", "What is it like to drive a train?", "Has Jawaharlal Nehru done enough to celebrate his birthday as children's day?", "Which are the best book to learn programming for beginners?", "Who would win a *conventional* war between China and Vietnam right now?", "If the earth is round, why doesn't one fall off the surface at the South Pole?", "How can I realistically make money online?", "Is pornography a form of art?", "What is the future scope of mechanical engineering?", "How do I review a research paper?", "What are the most followed topics on Quora in 2016?", "How can you access a private Instagram account?", "Is it true that if you don't use it, you'll lose it?", "How do I get rid of the giant pimple on my butt?", "How do I control sleep while studying?", "Do you think that caste based reservation should be cancelled?", "How can i earn through youtube?", "What are the best e-learning platforms for education?", "What would be impact on India if Donald Trump becomes President?", "Are there real witches out there?", "Modi Ji was very positive about the Lokpal before coming to power. Why hasn't he appointed a Lokpal committee yet?", "How will Hillary Clinton do differently in foreign policy?", "Who would win WW3?", "What are the pros and cons of implementing a uniform civil code in India?", "Which phone is best to buy under 15k?", "What I should learn to be a game developer?", "What are some great places to visit in and around (50 km radius) Chennai?", "What are some interesting anecdotes?", "Who is currently winning the presidential election?", "What are good business ideas with low investment in India?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Sanriku earthquake in 1611?", "What is the best way to clean a flat screen monitor?", "How do I lose weight?", "How do I see who's viewed my Instagram profile?", "If vacuum gravitational and dark energy is created without limit as universe expands?", "What's the best way to learn about linguistics?", "Why do dogs bark at ragpickers?", "What place should I visit in Gurgaon?", "What is the best way to prepare for TCS Aptitude Test?", "How do I know if a guy likes me or not?", "What are my options for earning money online?", "Have there been female SEALs?", "How do I get started learning IELTS?", "What is the best moisturizer for dry skin?", "Why did Modi ban 500 and 1000 rupees notes and not 100 rupee notes?", "Can humans become immortal?", "Why do people ask questions on Quora that can easily be answered by Google?", "How do I get into an archaeological survey of India?", "What should be my resolution for 2017?", "Why are my all questions marked for improvement?", "Why isn't anyone paying attention to the sexual assault lawsuit filed against Donald Trump?", "How you ever been raped?", "Which was the best tank of the 1960s and 70s? Leopard 1, M-60,AMX-30, Chieftain or T-62", "How can I get over a spoiled friendship?", "Who would win in a war between the Impirium of Man (WH40k) and the Galactic Empire?", "Which Ivy League is the easiest to get into?", "What is the funniest question ever asked to you in Quora?", "What programming languages should be learned to become best programmer?", "How can I start as a freelancer?", "How will World War 3 be like?", "Why did Twitter elect to shutdown Vine rather than sell it?", "What online sources should I use to learn Esperanto?", "Which is the weirdest question you have ever come across on Quora?", "Which is best affordable camera to start photography?", "How do you hack someone's Snapchat?", "What will American public education look like in the future?", "What is inelastic collision? What are some examples?", "Does dark matter exist on earth?", "Do girls prefer bad boys or gentlemen? Or both?", "What's the funniest highbrow joke you've ever heard?", "Why do we worship Shivling?", "How do I stop stalking my ex on social media?", "Is there any legit online job i could do at home?", "Does anyone still use monocles?", "How do you prevent mirror from fogging up?", "What is the best thing an stranger has done for you?", "How can I upgrade my English Writing skills?", "Should I be scared if my butt squirts blood every time I defacate?", "Can someone love two people at a time?", "What is your favorite genre of music?", "Is CAT after b.tech in mechanical engineering useful?", "Is there any good reading room available near Ace Academy, Abids?", "Why can't desalination solve the drinking water problem for India?", "What is the best way to reduce weight?", "Is tarzan real?", "Who is your Favorite band?", "Can Donald Trump become a dictator?", "How can I improve my English writing skills? Which books do you suggest?", "Can a brain transplant be done?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "How do you find the magnitude of the a net force using a formula?", "Why are hematomas caused when drawing blood?", "What is a Google Doodle?", "Can humans as a species run out of drinking water?", "I am 18 and have nothing to do in my life. What should I do?", "Kerala, India: What are some typical traits of Malayalis?", "Why is there a lot of news regarding Singapore and China relationship turning bad recently? Are those news true?", "When do you know when it's time to break up with someone?", "What are some free ways to promote a website?", "How can I locate my cell phone with the phone number?", "What does it say about the US to have elected someone like Trump as their president?", "Do long distance relationships work?", "What should I do now with my love life?", "Which book helped you get self esteem?", "What are the best simple ways to loose weight?", "How does the demonetized notes of 500 and 1000 effect the real estate?", "Which rays have capacity to come out of black hole?", "How can I earn money part time online?", "Are we born good or evil?", "How can I improve my memory problem?", "How do I learn stock market investing?", "Do you have any tips for coping with anxiety?", "Which are best inspirational movies?", "How do I become a international arms dealer?", "What are the top most SEO Company in Delhi?", "What is the difference between baking soda and baking powder?", "Can I make an Android app with Python?", "How does India's economy work?", "How do you make hair grow faster overnight?", "Where do atheists get their morality?", "Which is your favorite anime?", "Is this NGC (Nano Gps Chip) real?", "What are some secrets that a girl would rarely share with a boy?", "What movie is the best movie of 2016?", "How can I earn money part time online?", "Is average human intelligence decreasing?", "How I can ask question on Quora?", "What are the best Italian cooking methods?", "What is the best advice you have ever been given?", "Is Hillary Clinton going to make immigration easier?", "Daniel Ek: When is Spotify coming to india?", "What is best fitness app for Android?", "What are the best books or site to prepare essays for XAT?", "How do I balance the need to be comfortable and push myself out of my comfort zone?", "How should I start preparing for the CFA Level 1 exam?", "What is the best programs for mechanical engineerings?", "Religion: If you could ask God one question, what would it be?", "What is the black knight satellite?", "W do people give a shit?", "How do I get more coins in 8 ball pool miniclip?", "How do I think like Sherlock Holmes?", "What is the toughest question ever asked in a interview?", "Can I join the military if I have terrible memory and recall?", "What would happen if we had no sun light for one week?", "Why do certain people show up on my Instagram search?", "What are the best ways to lose weight? What is the best diet plan?", "What is your review of the 2016 MacBook Pro?", "How can I improve my studying?", "Does true love exist?", "How do you know you are in love with someone?", "What are the coolest and amazing inventions of the 21st century?", "How do I overcome my anger problem?", "How does concentric contractions differ from eccentric contractions?", "Someone hacked my Instagram account using some type of software. How do I block them?", "How do astronauts on the ISS get sexual relief?", "Is WWE Really fake?", "What was the greatest day in you life?", "What does relieving illness symptoms through drugs have to do with curing disease?", "If a man texted five minutes after the first date to say he had fun, why won't he text me the next day? How can he be trying to play it cool now?", "How can someone overcome servere social anxiety?", "If God knows everything, God knows the future. If God knows the future, how can there be free will?", "What are some mind-blowing technologies tools that exist that most people don't know about?", "How can eating prunes help during a constipation?", "I need a term loan, where do I get one?", "What are the functions of communication?", "Is Hillary Clinton in good health?", "I am visiting US on a tourist visa. I have a valid driving license from India. Can I drive in US with Indian license?", "How would you feel if the government banned soft drinks?", "What would happen if Donald Trump died right now? What would happen if Hillary Clinton died right now? Would the other party get the election?", "How did Mother Teresa help the poor?", "How do I become a math genius?", "What are some of the weirdest things that made you happy?", "What is a cumulative distribution function?", "What is the best way to invest or trade in Bitcoins?", "How many countries are there?", "How's life like at IIT?", "What is the best e-Commerce platform in/for India?", "What will be your new year resolution for 2017 and your plan of execution?", "\"What are some moments in your life which you can label as \"\"Thug Life\"\"?\"", "Could dark matter fill 'empty' space and be displaced by matter? Could the Milky Way's halo be the state of displacement of the dark matter?", "How will the ban of old 500 and 1000 rs notes help in bringing out the black money?", "How do I apply for pan card (lost)?", "Who will be the Next PM of India after Modi?", "If Hillary Clinton wins the Presidency, can she pardon herself for previous wrong doings?", "What do you do when you got free time?", "I want to unsubscribe from Quora. How can I?", "Has life been found on any other planet?", "How do I purchase a One Plus 3T from Amazon using a Bajaj Finserv EMI card?", "I need a free guided meditation of Sadhguru?", "Why there are few memes making fun of Narendra Modi?", "How do I stop computer addiction?", "What are few best exercise to lose weight?", "What is relation between linear velocity and angular velocity?", "How will Trump's victory effect India?", "How long does meth stay in a persons blood?", "What could be the best laptop in budget upto 50k?", "What is it like to smoke pot?", "How can green tea help you reduce belly fat?", "What's your biggest fear?", "What is the major difference between Windows and Ubuntu?", "Why has Narendra Modi not appointed any Lokpal yet?", "Has there been scientific evidence that ghosts exist?", "What is are some factors for 3?", "What is the deal with Trump's hair?", "What will you do if you become invisible?", "Where can I learn WordPress from scratch?", "Why do people call Trump racist?", "Where can I get wide range of floor tile, wall tile and porcelain tiles in Sydney?", "How do I repair a cracked Apple iPad screen?", "Do Vietnamese have Chinese blood?", "Why didn't Harry resurrect Snape when he was using the resurrection stone?", "How can one prove that there's no god?", "I want to start a food startup in Pune, what would be the business model and target audience?", "Who are some of great coders from Tamil Nadu?", "Who will win the next 2019 general elections in India and why?", "Does hypnotism really exist?", "How does long distance relationship work?", "Which test IELTS or PTE is better for a person with good knowledge of English?", "Do Oyo rooms allow unmarried couples in Chennai?", "Which is the best laptop under 60,000 in india?", "How do I get addmision in MIT?", "Do atheists fear dying?", "How has india changed under Narendra Modi?", "What made Facebook different than the other social networks?", "What are the best thriller movie in Hollywood?", "Why a large percentage of Muslims in India is against BJP?", "What is the fact behind Bermuda triangle?", "Is there infinite energy in zero point energy or it is just a mathematical result with no physical existence?", "What's making your life so difficult?", "Why do people write long answers on Quora?", "What are some good songs that make you cry?", "Where can I find a hacker?", "What are the consequences of cutting a Pitbull ears?", "How long does it take to learn programming (C #)?", "Is ISBF really affiliated to University of London?", "Why is education compulsory?", "What is an implicit function?", "Is it better to run/work out in the morning or in the evening?", "Does iCloud store all of my data used in Safari?", "What is actually a data science?", "What do you do when you've lost your looks and people keep putting up pictures of you without your consent on social media?", "Do you hate obese people and why?", "What should I eat to gain weight?", "What are some mind blowing technology tools that most people don't know?", "What is the best way to calculate retention rates?", "How can you improve your intelligence?", "How can I increase my English fluency?", "Is it just as sexist to support Hillary Clinton because she is a woman as to not support her because she is?", "How can I improve my english language skills? I am basically from gujarati background.", "Why does India need a Uniform Civil Code?", "Why do I like girls bare feet?", "How can I get internship at Deutsche bank?", "What are the best ways to lose weight?", "How should I start IAS preparation after graduation?", "What is Ellen DeGeneres' phone number?", "In the future will India and pakistan be together?", "How can I post on Quora and then add details?", "how do I delete questions from quora?", "How do I know that someone loves me?", "How much time will it take to get my Jio Sim activated?", "Which are some of the best web data scraping tools?", "What is it like to work at a startup?", "What are the best ways to communicate with an alien?", "How safe is it to take ibuprofen and Tylenol together?", "What are some of the most interesting facts about Antisocial Personality Disorder (ASPD)?", "With TWTR below its IPO, is it a good time to join Twitter as an engineer?", "Why was China never ruled by British or any other colonial powers?", "How do I retrieve my Gmail password?", "Why do TV networks compete?", "How can I grow long hair?", "What do I do when I can't control my anger?", "Why is Donald Trump not racist?", "Is learning Chinese difficult?", "Where are the best coworking office space in Bangalore?", "How practical is drone delivery project?", "What are the best online coding bootcamps?", "What's better at the age of 22? Being single or commitment in a relationship?", "What are the pulses challenges and prospects of food security?", "I feel tired of life. What can I do?", "Why don't space shuttles create a sonic boom?", "Which do you think is worse? Saying something and wishing that you hadn't or saying nothing and wishing that you had? Why?", "What are you most passionate about and engaged with and why? *", "How has religion developed globally?", "How we can travel faster than light?", "Do you think the Police in the US is too militarized?", "Can I make it to the top IIMs with a year gap after graduation?", "How do you get rid of acne scars on your chest?", "Why Muslims are considerd minority even though other minorities are not?", "Which is the best Android phone under rs 8000?", "What`s the best way to get rid of porn addiction?", "Why can't Pirate Bay just be stopped by raiding their servers?", "Do many people fake smiles when they get their pictures taken?", "What is the most believable paranormal experience you have had or heard of?", "What is the best way or resources to learn english like a native speakers?", "Where can I get very nice and original flavor cupcakes in Gold Coast?", "What is correlation?", "Will Trump really build that wall and make Mexico pay for it?", "Why can't India enter Pakistan and kill Daood Ibrahim like the US did to Laden?", "I have completed my mechanical engineering with below 60%. What should I do to get a job in good company", "What's your favourite tea?", "Which is the best medical coding training institute in Bangalore?", "What is the difference between loving yourself and narcissism?", "I really like this girl. How can I tell if she likes me?", "How are views of blog posts counted on Quora Blogs?", "Is Kejriwal govt better then Sheila Dixit govt?", "How can I learn at a higher speed?", "How can I stop worrying about what other people think of me?", "What the best way to improve English?", "How do you immigrate to Canada with your family?", "Does drinking Diet Coke or Coke Zero help during a diet?", "What is isolationism? What are some examples?", "How can I improve my vocabulary?", "Do autistic people know they are autistic?", "What will happen if Pakistan will be declare as a terrorist state?", "\"Do caterpillars know that they're going to become butterflies or do they just build the cocoon and think, \"\"WTF am I doing?\"\"\"", "How can I increase the traffic on my website?", "How much is the salary of IBPS PO?", "Which is the oldest religion in world?", "Can we see light, or do we see objects that reflect light?", "Why should someone buy M3M Urbana Premium, Gurgaon?", "Which is the best place to eat food in a budget (good food too) if you are in Chennai?", "What do Americans think of China & Mainland Chinese people?", "Islam: According to islam, are all non-Muslims going to hell?", "Who would Hillary Clinton and Donald Trump choose as their running mates?", "Are there really mermaids?", "How do I get my teeth white?", "What is right to life liberty and pursuit of happiness? What are some examples?", "What is the best civil engineering company for a job?", "How can I be better at drawing?", "Can graffiti artists spray graffiti in rockdale county, ga?", "How can long distance relationships be successful?", "What are some funny student council speech ideas?", "How can I change my profile pic on Quora?", "What are good workouts to lose belly fat?", "What kind of contraceptive measures do female pornstars take in order to avoid getting pregnant?", "Which sites are banned in india?", "Which is the best PC game that you have played in 2016?", "Which is the best camera phone?", "Why is Saltwater taffy candy imported in Switzerland?", "What is the most awkward situation you have ever been in, involving a girl?", "What are some good movies like intersteller?", "My questions on Quora all need improving. How do you ask a question on Quora?", "Have you ever looked into a mirror in a dream or OBE?", "Can time travel ever be possible?", "Of the four Amritapuri sites for the ACM-ICPC, which is the best to visit?", "Which is the best website builder online?", "Which is a good laptop costing around INR 60k?", "Does the Chinese really hate the Vietnamese? If yes, why?", "I am new to GitHub, so how should I start contributing to open source projects on GitHub?", "What are the best Hollywood movies to watch in 2016 (released ones)?", "Who are your favorite authors?", "Do abiotic and biotic factors influence the ecosystem? If so, how?", "Who is good for India, Trump or Clinton? And Why?", "How can I hack someone else's WhatsApp account from a different place?", "What are some of the best camping tools and gadgets?", "Which book should I refer for GATE (INSTRUMENTATION)?", "How do I prepare for UGC NET English Literature exam?", "What will Michelle Obama do after the Obama presidency?", "What is the best way to forget a girl I had a crush?", "How one can control impulsive emotions?", "How can I increase the page rank of my website?", "How does one start a hedge Fund?", "Can people see if you have viewed their instagram?", "How shall I prepare for CA final Nov 16 exams", "A and B throws a Fair dice one after another. Whoever throws 6 first wins , What is the probability that A wins ?", "Can we really earn money online? How?", "Where can I hire a hacker?", "What is the best thing any one has ever done for you?", "What is one of the greatest books you have ever read?", "What is the most overrated movie of 2016?", "How can I make money from Quora?", "How do crop circles form?", "What would be the best programming language to DIY learn today?", "What is the importance of The Dreaming in Aboriginal culture?", "If you knew what you know now, what would you have done to make a change in your life?", "How can I get girls to like me?", "I am 61 and now get bullyed?", "How can non-living things give birth to living things?", "Why were credits moved from the beginning of a movie to the end of a movie?", "\"Who is the main character in \"\"The Great Gatsby\"\" by F. Scott Fitzgerald?\"", "What would be your New Year resolutions for 2017?", "What is your view on Bob Dylan winning Nobel prize for literature?", "How did fivethirtyeight.com get its predictions about the 2016 race so wrong?", "Special Relativity: Is length contraction real? If we have 2 observers with different speeds they would see a different length contraction on the same object. How is that possible?", "Has life been found on any other planet?", "How can overcome the fear flying?", "What is botnet?", "Which medical college is better between SMS Jaipur and AIIMS Jodhpur?", "Why does Wikipedia ask for donations rather than having ads?", "Why did Indian government stopped making 1000 rupee note and started making 2000 instead?", "Could people have supernatural powers?", "What is the best way to get a postgraduate scholarship in a British university? PS: I'm Syrian.", "What would happen if we supply diesel to a petrol car and vice versa?", "What are some legit ways to earn money online?", "How can I know that I am in love with a girl?", "What type of diets can you follow to lose 5 pounds in 2 weeks?", "Which is the most used programming language in the world currently?", "What programming language is best (easiest) to learn first?", "How can one make money online?", "Which is the most loved country in the world?", "Why isn't there a video game development company in India that actually makes video games?", "Did Mukesh Ambani already know about the currency change?", "Where do we go to when we die?", "Why can some Quora users add more details to questions than me?", "Instant support @! 1800:||:2,5.1:||:49.1,9 for Avg Antivirus Tech Support phone number?", "What are the best games you can play by yourself with just pen and paper?", "Did Neil Armstrong see aliens on his voyage to the moon?", "What Wifi modem should I buy for BSNL broadband connection at my home?", "Why should I visit Kerala?", "Is sex that important for life?", "What does 60% aggregate in PCM mean?", "What is a HIDA scan?", "What is the best picture you have seen ever?", "How can you lose 5 pounds in 2 weeks safely?", "What is the best way to be in a calorie deficit and lose weight successfully?", "How do I get my focus back?", "How do I start with Android development?", "What is the sense of life?", "Why am I so awkward around people?", "What do you feel most insecure about?", "Advantages of Myriad Pro as copy?", "How does 5 stroke engine works?", "Can you date your female friend?", "Do Japanese hold grudges on Americans for Hiroshima and Nagasaki?", "How can one become a good writer?", "\"What is the meaning of \"\"flagged as needing improvement\"\" on Quora?\"", "If my brother is vaporizing weed in the house, would I be able to smell it?", "What are the things that one should do before they die?", "How does one become a male model?", "How can I see who viewed my Instagram video?", "How can I add text next to an image using HTML?", "How do I know my husband is cheating on me?", "How do I get out of the friend zone?", "Movie Lists: What are the Ten Hollywood flicks that we should (must) watch before we die?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Nanshan?", "How should I start learning how to code with zero knowledge in programming?", "How do you know if you're unconditionally in love with someone?", "Science without religion is lame. Religion without science is blind. What does it mean?", "Is there any relation between gravity and time? If yes then what it is?", "If you could ask God one question upon entering heaven, what would it be and why?", "Why does Lady Rainicorn speak a foreign language?", "How do I cancel Quora?", "Is it true that India is faking a surgical strike?", "Has Quora turned into a political hack for Clinton?", "What are the employment prospects for an electrical engineer in Silicon Valley?", "Which IT companies in Germany directly hire experienced employees from India?", "Can you tell me about the aliens?", "What caused the British empire to loose its countries?", "How do I commit suicide with no pain?", "What interesting things could an invisible person do?", "I have an untreatable and life-long disabling neurological disease. What is the easiest and most painless way I can commit suicide?", "What do you think of demonetization in India?", "How do I know If I'm really in love?", "Does red bull drink contain bull sperm?", "When an employer asks what would you like your salary to be, how do you respond exactly?", "Why is uplink frequency higher than downlink frequency?", "What are small embedded systems projects that will help my resume?", "Is there any evidence of alien life in space?", "Who are the Quora users with the most followers from each country?", "How will Trump's presidency affect Indian students who are planning to do a PhD in the US?", "What is a lucrative career for an introverted, creative, neurotic person who is bad at STEM?", "Why is my Quora feed always showing the same questions?", "What's a good workout plan to lose belly fat?", "\"What is the meaning of \"\"af\"\"?\"", "How should I study in first year of MBBS?", "How do you get better grades?", "How can I tighten my body and get rid of tummy/belly fat?", "How do I get my old WeChat account back?", "How can one make money online?", "What is the best way to learn to play the guitar by myself?", "Why is everyone pouncing on Donald Trump for not paying taxes?", "What are some books that are worth reading?", "How was Chris Wallace as a moderator in the Presidential debate?", "How can I grow taller fast?", "What can you do in lucid dreams?", "How do I download Microsoft Office for free?", "Who are your best friends and why?", "What is the difference between normal petrol and speed petrol?", "Which is the best book for learning C for Beginners?", "What do you want to accomplish before you die?", "If I have 24 hours to live, what should I do?", "Why do people re-ask questions on Quora that have already been answered multiple times?", "How do I convince investors for my startup idea?", "What are some amazing facts about the Ramasetu?", "What are some causes of sores in the labia minora?", "What would you do as the President of the United States if you were somehow elected?", "What are the best study strategies?", "Are you a dog person or cat? Why?", "Does technology adversely affect relationships?", "Would you rather live in an urban or rural area?", "How can I lose 25 pounds in a month?", "My girlfriend broke up with me so she could sleep around, how can I get over this?", "How can I learn body language?", "What is the internet? Can we build another one?", "What are some of the wittiest pieces of sarcasm?", "What is link juice?", "Do you think Trump will be the next president?", "Which is better to judge a movie, IMDB or Rotten Tomatoes?", "What is the benefits of gst bill?", "What are the reasons behind nuclear energy being non-renewable?", "Are human beings meant to be monogamous?", "How do I upload the video on the you tube?", "What is the expected cut off for KVPY SA Aptitude Test 2016?", "What are the best books for IIT JAM math and what is the best strategy for preparation?", "How do you get rid of moles at home?", "How can we meet to PM Narendra Modi?", "Does sex feel good for women?", "Cosmetology: What are the best private label cosmetic companies?", "Which is the best college for biotechnology in India?", "Is de Broglie's subquantic medium the strongly interacting dark matter which fills 'empty' space? Is it the DM that waves in a double slit experiment?", "Has anyone ever had to wash the dishes in a restaurant because they couldn't pay the bill?", "Is the Earth flat?", "What do professors and students think about the Make School?", "What are the best do-it-yourself Tumblr blogs?", "What is ultimate purpose of life?", "Is it safe to travel alone in Vietnam?", "Does any other country have a caste system apart from India? If yes, how did they overcome these barriers?", "How do I sell a patent?", "What is the best gift one can give to their parents?", "Can we hack gmail or Facebook account?", "What type off music do you listen?", "If Michelle Obama had run for president, would you vote for her? Would she have beaten Clinton in the Primary?", "Which country is the best place to work in?", "How do you determine the surface area of cuboid?", "Evolution: Why do people from different races(or region) have different facial features?", "Why is the value of Japanese Yen so low, as compared to other developed countries, even though Japan is one of the biggest manufacturers and exporters?", "Is it possible to join the Indian navy from the merchant navy?", "What are web applications?", "Are there any conspiracy theories that are probably true? Any conspiracy theories that turned out to be true?", "Which are some best coaching centers for CA ipcc in delhi?", "Has international aid led to overpopulation?", "What is it like to be a foreigner living in Beijing?", "What is the scope of supply-chain Management in India?", "How do I stop being insecure ?", "How does Quora count the number of views in an answer?", "What are some of the longest words and their meanings in the English language?", "Is a loan-based crowdfunding platform a financial institution?", "I'm gay I feel in love with a straight boy. He is also my friend. What should I do?", "I'm 24, I want to be a entrepreneur. How do I start?", "What is the best way to prepare for the theoretical part of the CA Final Exam?", "How do I become an army general?", "How imminent is World War three?", "Can I block a topic on Quora?", "What is the incident that changed your life?", "What is ISO 9001:2000?", "Given that some insects respond to anesthetics, is it reasonable to conclude that they feel some facet of what we call pain?", "What will be the effect of banning 500 and 1000 Rs notes on the Indian economy?", "What are the best places to visit in Bangalore?", "How one can deal with a breakup?", "Who will win upcoming USA election?", "You've got 24 hours to live, how will you spend your last day on Earth?", "How do I recover a lost Gmail password?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Gobi Desert?", "What GATE rank is required for taking a PhD from IISc in ECE?", "Do many people fake smiles when they get their pictures taken?", "How many views and answers are required to become Top Writer in Quora?", "What is the latest update in SEO?", "What are the best life secrets and tips?", "Who will win this presidential elections 2016?", "What is ultimate purpose of life?", "What is the best way to learn Russian online?", "Why do I care so much about what other people think of me?", "Why are relationships so hurtful?", "What is complementary and alternative medicine?", "What is Balaji Viswanathan's opinion on the Indian Prime Minister Modi's new policy about illegalization of 500 and 1000 currency notes?", "Where do I find sample movie scripts?", "How can I hack my friends phone?", "Why did Indian government stopped making 1000 rupee note and started making 2000 instead?", "Which is the best QuickBooks Tech Support Number in New York, USA?", "Where can I get very friendly assistance in Sydney for buying or refinancing a property?", "What are the bitter truths of going yo the US for an MS as an Indian? By Nikhil Patel", "What is the best recipe for German potato salad without bacon?", "What's the best way to convert PDF to JPG without sacrificing image resolution?", "What would have happened to election if Bernie Sanders was Democratic nominee?", "Does a long distance relationship really work?", "What is the difference between Static Websites and Dynamic Websites?", "How many times you do sex in a week?", "What are some common misconceptions about the military?", "Does Hinduism support evolution?", "What exactly is power factor?", "What is currently your favorite rock song? And why?", "I have bought a laptop on paytm ang I got a cash back of Rs.7000. Can I transfer this amount to my bank account?", "If India is a secular country, why is it spending taxpayers' money on subsidy for Hajj pilgrimage?", "How do I apply for UK visa from India as a visitor? And what are the things I need to provide?", "What is the best way to hide a body?", "What is the meaning of current?", "What is the fee structure of BIT Sindri?", "How was KVPY SA 2016?", "Why can't we convert salt water into pure drinking water in large scale?", "Saying there is infinite energy in zero point energy and infinite virtual particles in vacuum energy, is this a real or just a mathematical thing?", "What is the best tangible gift you've ever received?", "How is life after doing MBA from an IIM?", "What is the best way to earn money through online?", "What is wurtz reaction?", "What's the possibility of planet Earth running out of drinking water?", "What is the embarrassing of your life?", "Will apple release a new MacBook Pro soon?", "What is an easy way make money online?", "What are some podcasts that will make me smarter?", "If I save 50,000 per year, how should I invest?", "How do l download images in Google art project?", "Who invented the compound light microscope, and what was the importance of this invention?", "How can I lose my weight fast?", "What's the sole purpose of life?", "What could be the effect of GST bill on Indian economy?", "What can I do to earn $100 per day?", "Why is Nyquil good for sore throat?", "Is the superfluid dark matter proposed by Justin Khoury what ripples when Galaxy clusters collide and what waves in a double slit experiment?", "Where can I get very nice and original flavor cupcakes in Gold Coast?", "What I can do to last longer during sex?", "How can I make myself appear offline on facebook?", "What are some of the best jokes you've ever heard?", "How can I ask a question without getting marked as ‘need to improve’?", "Why did Bob Dylan win the Nobel Proze in literature?", "How do programmers avoid backache?", "OnePlus 3 or Nexus 6p, Which one should I buy?", "Why is gay marriage considered legal?", "What era would you rather live?", "What are the beautiful gift for girls?", "Where can I buy best quality customized cupcakes in Gold Coast?", "Is it healthy to eat egg whites every day?", "Why do people still believe the world is flat?", "How do I use Internet?", "My boyfriend gropes me in his sleep. Is this normal?", "Why do artistic gymnasts apply a coarse substance to their hands?", "How can I prepare for CA CPT?", "Which kingdom includes organisms that are all mutlicellular?", "What are the best ways to improve my English because I'm not good in English?", "Does green tea help to lose weight?", "What are some best short stories?", "Who all are the seven kingdoms?", "How will WWIII most likely break out?", "What is your review of Passengers (movie) starring Jennifer Lawrence and Chris Pratt?", "How do I get rid of anxiety and build self-confidence?", "How can we make a model of a rocket?", "Am I Good At Drawing for a 14 Year Old with No Experience?", "How are views of blog posts counted on Quora Blogs?", "What is the salary of the field of pharmacovigilance ?", "What do you feel about noise?", "Why can't I take a pregnancy test in the afternoon?", "My syllabus is more or less done. What should I solve and what or how should I revise for the JEE 2017?", "How can I get better grades in mathematics?", "How do I untune a guitar?", "Why is ISRO very successful?", "How to promote travel website?", "Is there any reason to love someone?", "Which is the best smartphone I can buy under 15000 in july 2016?", "Why do goldfish eat other goldfish? How can I prevent this from happening?", "What is the best sex experience you have ever had?", "How should one improve one's presence of mind?", "I am 16 years old and I want to become a professional footballer? What should I do?", "What is soil erosion?", "Why is a crush called a crush?", "Which are some of the best pictures ever taken?", "How can I change my Life?", "How do I write blue letters in Instagram bio?", "How do we start a business?", "Why can't India lift Article 370 from Jammu & Kashmir?", "What are the best books to prepare for CLAT 2017?", "What will happen now that Trump's president?", "How Can I focus on one objective?", "What startups are hiring in Pune?", "What are reviews for Food Grade Diatomaceous Earth?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Yalu River?", "What has been the best moment in your entire life?", "How could robotics change the world?", "How Do I become slim?", "Does gravity act at an infinite distance?", "What series should I watch after Suits and The Mentalist?", "CALL@@@@@### US Talk@AVG^! |! ^1800*@251*@4919 AVG Antivirus Tech Support phone number?", "What is the way to hack WhatsApp?", "What are your top 10 favorite songs of all time? Why?", "What is average IQ?", "Why do people try to ask silly questions on Quora rather than googling it?", "Which is the best English translation of the Qur'an?", "How should India respond to Pakistan on recent URI attack?", "Help! I need motivation to lose weight. I need to lose 30 kilos?", "How can I speak fluent english and get confident?", "What is your New Year Resolution?", "How can I hack any ATM machine?", "What is the difference between toxin and poison?", "What are the best books for UPSC?", "What can I do to get better grades?", "How do I stop thinking about my ex gf?", "Will demonetization of Rs. 500 & 1000 currency notes curb/eliminate corruption, black money and terrorism in India?", "Is it safe to visit North Korea?", "Hollywood MOVIE DOWNLOAD SITE?", "What are the best places to visit in Goa on a 2.5 day trip?", "Which is the best Android smartphone in 10000 INR?", "I have one, an Mayan flute, with gold in, what is it's story?", "Are galaxy filaments the state of displacement of the strongly interacting dark matter which fills 'empty' space?", "What are the best places to visit in Kerala? What is the best way of transportation there?", "What are some things that make Indians sad?", "What is your definition of reality?", "How can I increase traffic very soon on my blog?", "What factors differentiate Usain Bolt from others that make him run so fast?", "How can I overcome my shyness and social anxiety?", "What the practical example for polytropic process?", "How can learn English?", "How banning 500 and 1000 rupee can affect black money?", "How can I change my DOB in birth certificate?", "What are the best success motivation books?", "Should euthanasia be legalised? Why?", "What can I do to get my penis to grow?", "How do I spend my time efficiently?", "I have a Mayan snake flute, with gold inlaid, what is its story?", "How would you create your own country?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Banda Sea earthquake in 1938?", "How does one become a hacker?", "Is it really possible to make money with binary options?", "Which is the best free antivirus for my laptop? Why makes it the best?", "How can I get rid of my mobile phone addiction?", "What is the best kept secret?", "What is it like to be transgender and regret transitioning at some point?", "If a question doesn't need improvement, why does Quora mess with your questions?", "What are some mind blowing bike inventions technology that most people don't know about?", "What is the incentive to join ISIS?", "How would you define India in one line?", "Can you see who viewed your Instagram?", "If I smoked meth wednesday morning can I pass a drug test on friday evening?", "Is war with Russia imminent?", "How can I locate my stolen phone?", "Will Glyx 13 proceed with phase 3 trials in sequence or simultaneously?", "How can I get white skin if I'm brown?", "How can I prepare myself for GSoC 2017 in three months?", "Why do dogs pee on vehicle tyres?", "What is your creative New Year's resolution for 2017?", "How do I deal with the jealousy?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Dasht-e Margo?", "What will happen if people having black money don't return it to bank, fearing being caught? This comes after latest 500 & 1000 rupee notes banning.", "Should India declare a war on Pakistan and Why?", "What's white privilege?", "Are perpetual motion machines possible?", "When will the next Macbook Pro (2016) be released?", "Which is the best philosophical book ever written?", "What is the best way to reduce abdominal fat?", "What are some of the best possible tips to read someone's mind whom we are talking to?", "What should be my approach to ace SSC CGL 2017 with 7 months in hand without coaching?", "What would happen if both Trump and Pence were assassinated before taking office?", "How do I reduce face fat?", "What kind of profile do I need to get in good universities of Germany for MS in Mechanical Engineering?", "What is the relationship between them?", "What is the one thing that you would like to do if you had an unlimited amount of money?", "How do we make a distinction between porn stars and prostitutes, are they both the same or different? Do they deserve respect in society or not?", "How long until the human race will go extinct?", "Which is the best book of bridge design?", "How does one become a bug bounty hunter?", "Why do some smart people abuse drugs?", "Why is my question marked as needing improvement when it is perfectly clear and well written?", "What book is recommend for learning Swedish?", "Can we travel back in time?", "What is some proof that the Illuminati is real?", "How do I go about being a UX designer?", "How do you make a animated GIF?", "Do you have an accomplishment that you are most proud of? If so, what was it?", "What is the best iPhone FM transmitter?", "What is the best way to make a Thanksgiving turkey?", "How do I follow any topic or person anonymously?", "What is the IELTS all about?", "What is the best addiction?", "How can I learn to speak a language fluently?", "Where can I found best quality and freshest meat in Sydney?", "How much blood can a human donate in a day?", "Who is the most beautiful woman on Game of Thrones?", "Travel Tips: Where should I stay in goa if I want a lifetime memorable experience?", "How many dimensions are there in our universe?", "Can India ever get hold of Dawood Ibrahim? How and when?", "Why do men like to send women dick pics?", "How can I find hidden talent inside me?", "Can I use a Reliance Jio 4G SIM in a 3G phone?", "What are the easy ways to earn money online?", "How do I solve problems around me?", "What will be the implications on Earth if there was / will be no moon?", "What are some of the words/things that are commonly mispronounced?", "What is the best way to learn phrasal verbs?", "Is it possible make time machine?", "Which is the best place for a honeymoon trip around the world?", "Which is better, Beatles vs Rolling Stones?", "What are the cons of mesh topology?", "How do you react when someone asks your salary?", "What is the smallest known star in the universe?", "Which is the best refrigerator service center in Hyderabad?", "Which companies doing reverse logistics in pharmaceutical?", "Why do Indians eat with their fingers? Isn't that disgusting?", "What percentage of questions on Quora have no answers?", "Would you vote for Trump or Sanders, and why?", "What are the features of MS Excel?", "What are the similarities between Mexican and Indian Food?", "What is purpose of life?", "What is the best programming language for beginners to learn?", "What is the history of super glue?", "Can I prevent a Quora user from editing my question on Quora?", "How do I move to another country?", "How is unity in diversity possible in India?", "How could I lose a few pounds quickly?", "What is the world's best special operations force?", "\"What were your experiences when you had \"\"roll no.1\"\"?\"", "How do I make brownies?", "Were the ancient gods real life aliens?", "When is iPhone 8 coming?", "Why November 14, birthday of Jawaharlal is celebrated as Children's day? What exceptional thing did he do to be considered as dearest to children?", "What does it mean when a person shouts out Allah akbar?", "What is the difference between a hard and a soft credit inquiry?", "Do men actually like lingerie?", "Will Trump destroy America?", "Is the Indian mainstream media (MSM) one of the worst in the world?", "Is money more important than time?", "In which bank should I open my savings account?", "Is rock music passé?", "Why do bullies bully?", "What is primary purpose of life?", "Why is Saltwater taffy candy imported in China?", "What are the major stereotypes people have about Czech Republic and to what extent are they true?", "Who is the most inspiring person to you?", "Why was Jaya lalitha buried and not cremated?", "How does presynaptic α2- receptors and prostaglandins E series control sympathetic nervous activity?", "How can I make money while am still in college?", "What are some good books to learn astronomy?", "What are the likely impacts of Internet2 in business?", "How do you spend your weekend doing something useful in Bangalore?", "Why do North Indians like English more than Hindi?", "How does the ban on 500 and 1000 rupee notes helps to identify black money and corruption?", "How do I increase flexibility?", "Why were Germans compared to Huns during World War I?", "What do you think about decision by the Indian Government to demonetise 500 and 1000 rupees note?", "If universe expansion is caused by potential energy that transforms into kinetic energy with no limit, then, is there infinite potential energy?", "If you are given a wish to choose one super-power, what will you choose?", "What do terrorists gain by killing innocent people? Why don't they target the high profile people like politicians?", "What does Balaji Vishwanathan think about 500/1000 notes banning and issuance of ₹2000 notes?", "What does someone like you have to do in your spare time?", "What led Indian government to remove 500 and 1000 rs notes from circulation? Will be able to remove black economy?", "What is the best Harry Potter book, and what is the best Harry Potter movie?", "What is the best way to prepare for CA final law and audit?", "What are all the online coding bootcamps in India?", "Why is my Yorkie/Corgi mix afraid of cats?", "How do you stop an 8 week Husky puppy from biting my shoes?", "How would a Trump presidency affect schools accessibility for international students?", "Can I give my dog Benadryl for his allergies?", "What are your new year resolutions for 2017?", "What is your worst habit?", "\"What is the importance of the genre in \"\"The Scarlet Letter\"\" by Nathaniel Hawthorne?\"", "How can I claim warranty on a Kindle purchased from Paytm India?", "What books have you read continuously over your lifetime because they are that good?", "Where can I learn python programming for trading?", "How do I clean the screen of my Toshiba TV?", "What would the sky look like if Andromeda was colliding with the Milky Way right now?", "Is Akshay Kumar, the Bollywood actor, a Canadian citizen?", "What is the amazing facts about Indian railways?", "How can I make money as a musician?", "What's the sole purpose of life?", "Where can I get wide variety of formal dresses, bridesmaid dresses & evening dresses in Gold Coast?", "Does first time sex pains a lot for a girl?", "What are the best guitars for the price?", "What's the best way to start learning robotics?", "What are solids? What are some examples?", "Who is a Solutions architect?", "What are the security features in new currency notes?", "What are the best ways to earn money from home?", "What are best wallpapers for PC?", "Does Donald Trump actually want to be the president?", "How do I prepare for civil service?", "Can I make a friend on Quora?", "How much time will it take to learn web development?", "Can you play PS3 games on a PS2?", "Which phone should I buy under INR 15K?", "How should I make myself wake up early?", "How should one study Direct Taxes for CA final?", "How do I maintain motivation to lose weight?", "Are Indian nuclear scientists really being murdered? Is the government of India investigating?", "How can I get out of stress?", "What is the temperature of black hole?", "Which is better B.Tech in biotechnology or chemical engineering?", "What is the biggest challenge for a CEO?", "\"Why doesn't Trump begin speaking the \"\"truth\"\" by releasing his tax returns?\"", "Which is the best RO water purifier in India?", "Why don't we find Gujarati people in the Indian Army?", "Women, would you date or feel attracted by a man who is shorter than you?", "How do I get internship in Google India?", "Which is the best anime to watch?", "Can we prove 0! =1?", "How can I lose weight quickly in 2 weeks?", "What is the role of a business analyst in the CS/IT industry?", "Which is the best mosquito repeller?", "What's it like to live with an alcoholic?", "How many no of engineering colleges are in Delhi NCR?", "What is YHWH? Why is it written without vowels?", "How do I ask out coworker/friend?", "What do you think will be the effect of Modi Government's decision of invalidating the RS 500 and RS 1000 notes?", "Is the BJP really communal?", "What can I wear to my brother's wedding?", "How do I get hard erections?", "Will I grow taller at 15?", "How can I stop temptation to watch porn?", "What are some of the best websites to download movies?", "Why do antibiotics cause acne?", "Was Sherlock Holmes gay?", "Is it too late to go to medical school at 24?", "Can humans be immortal?", "Can I dynamically declare an array in C++?", "What are the application of thermodynamics in dairy industry?", "Which is the best coaching classes for SSC in south Delhi?", "In Pokemon GO how should one prioritize powering up CP vs evolving?", "Can I rent my room on AirBnB with F1 visa on OPT?", "What is the best compliment for a girl?", "How can I speak English fluently and fast?", "What is insanity workout?", "Why did American people elect Donald Trump as their president?", "How can I find if someone has deleted whisper app?", "What was the main cause that ended World War One?", "Why should I try hard at high school?", "How does 1 Billion Rising stop violence against women?", "Is education and success correlated?", "How are long distance relationships maintained?", "Is it good to be self centered?", "How does it feel to parent a pet?", "Is the Macbook pro 2016 overpriced?", "Could God who is truly all powerful create a rock that he himself could not lift?", "Does money has more importance in life?", "What is your new year resolution for 2017 or goal for 2017?", "Is it possible to change direction with constant velocity?", "Is Illuminati a real theory?", "Why's it easier watching snooker than playing it?", "Is Zee news a BJP owned channel?", "Did the Indian government ban the 500 Rs & 1000 rupees notes?", "How different would the world be if Hitler never existed?", "Which game do you prefer? Dota 2 or League of legends?Why?", "Super Smash Bros. Brawl: What is the best strategy against Wolf O'Donnell?", "Is having bad teeth a precursor or indicator that I will develop Alzheimer's disease? I have bad teeth.", "What is the truth behind withdrawal of 1000 and 500 rs notes in India?", "How do you get over social anxiety?", "Where can I find best hotels in Nainital?", "Why does WCDMA come under 3GPP? Is it evolved from CDMA? If yes then why not in 3GPP2?", "What is the best way for making money online?", "How many lines of code do good programmers produce in a day?", "How do biotic and abiotic factors differ?", "What are songs that you can listen to throughout your entire lifetime and never get tired of?", "How can open new cell tower over land in India?", "Which one has better study material: FIITJEE or VMC? Why?", "What are your New Year's resolutions for 2017?", "What are the new features included in iPhone 7?", "Has Ancient Persia been scientifically tested?", "If Hillary Clinton is elected POTUS, would the U.S. go to war with Russia and/or Syria?", "Is 299 a good enough GRE score?", "What if Donald trump is indicted of criminal charges, related to Trump University? Would he be impeached?", "What is your New Year Resolution?", "How do I find investors for my medical startup?", "How do I check the status of my flight on US Airways?", "What are the pros and cons of transpirational pulls?", "How does a Ouija board work?", "How can I hack my husband WhatsApp?", "What is meant by limbo?", "How do I become emotionally and mentally strong?", "How much did AngelList pay to acquire Product Hunt?", "How do you hack someone's Snapchat?", "What I should do while in Ireland?", "What are some of your best sexual experiences?", "What did it feel like when you first had sex?", "What is that one decision that changed your life forever?", "Why do companies keep rebooting movie franchises?", "Where is the best Whirlpool air conditioner repair center in Hyderabad?", "Why are sex and physical intimacy so important in a relationship?", "\"What are the perks of being the \"\"The Most Viewed Writer\"\" in Quora?\"", "What are the sexiest job of a man according to girls?", "How do you get over somebody you cant live a day without?", "Is it true that you age slower in space? If so, why?", "What will President-Elect Donald Trump do in his first 100 days in office?", "\"Why do people say \"\"bless you\"\" whenever someone sneezes?\"", "How can I learn Java at home?", "Falklands War (1982): Why did Argentina dare to attack Great Britain?", "\"Will the Nexus 5 receive the Android 7.0 \"\"Nougat\"\" update?\"", "How can I earn money by writing a blog?", "Which laptop is best under 25000?", "What is a perfect number and which number is the largest perfect number?", "How do I send the approval code for Facebook to a new cell phone number?", "Difference between laminar transitional and turbulent flow?", "What are some interesting facts about the Harry Potter series?", "How can I lose weight quickly? Need serious help.", "How do I overcome my anger problem?", "How India can get a permanent seat in UN security council?", "How will Trump make America great again?", "Can hamsters eat cucumber?", "Why are human beings so intelligent compared to all the other kinds of animals?", "What does it mean if caffeine makes you sleepy?", "What is the difference between moral rights and legal rights?", "What makes a great cup of coffee great?", "Can meth be out of your system in 48 hours?", "What are some good blogs/websites for all-around general knowledge?", "How can I prepare for GATE 2017 without coaching?", "How do I become a better thinker, innovator and a problem solver?", "How does one get started with competitive programming?", "How can you learn english fast and easy?", "How could I gain weight?", "How can an Indian become a professional poker player?", "Which phone is best IPhone 6s or Galaxy s6 edge?", "Can someone travel back in time?", "What are the best places to visit and things to do in San Diego, CA?", "Why Ayurveda is so boring and unscientific?", "How can I meet God?", "What are some ways to lose weight fast?", "How does Tim Hortons coffee compare to Starbucks coffee?", "What are the safety precautions on handling shotguns proposed by the NRA in Minnesota?", "How will the ban on 500₹ and 1000₹ notes impact the Indian economy?", "What are your new year resolutions’2017?", "What are the best new car products or inventions that most people don't know about?", "What's the most interesting thing you've done this year?", "How do you avoid highways on an iPhone map?", "Why do other political parties of India oppose demonetization?", "What are the best Coding Bootcamps in Canada?", "Do Anti-Virus companies create Virus to stay in buisness?", "How do I promote my youtube videos?", "Are we all hypocrites? Really?", "What are the career options after electrical and electronics engineering?", "Which is the most dangerous chemical?", "What is covalent bonding? What are some examples?", "Which hashtag will I use to get more likes in Instagram?", "How is black money curbed with the ban of 1000 rupee notes and introducing new 500 and 2000 rupee notes?", "What is your favorite subject? And why?", "Why do answers on Quora get collapsed?", "Does Congress party digging their grave slowly as they are opposing everything done by PM Modi like saying Jay Shriram or surgical strikes?", "Why most of the people in India don't pay income tax?", "Which are the best NITs in India?", "Which books are essential for GMAT exam preparation?", "How do I get free Instagram followers?", "Why are people adjourned to fast a day before an operation in a hospital?", "Which is the best book for Beginners to learn Python?", "How do people join ISIS?", "What is the difference between 3G & 4G?", "If the universe is expanding, what is it expanding into? And how will this effect us?", "What was the most interesting police case you have ever heard of?", "How do I lose fats and excessive weight from body?", "Why are the powers of the Indian President are unknown/less, compared to prime minister?", "How do I buy shares and do bussiness with shares?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Andreanof Islands earthquake in 1957?", "Can resonance destroy things?", "Is there a possibility that Michelle Obama will run for president in 2020?", "How can I flip my computer screen 90 degrees?", "How can some people still believe the world is flat?", "Does all Muslims hate Narendra Modi?", "How is the life of an Indian airforce officer?", "What are the best ever books that everyone should read in his/her lifetime?", "Can we pursue biotechnology after B.tech in mechanical engineering?", "What are some interesting facts that I should know?", "How can I study for longer hours without falling asleep?", "How do i lose weight?", "Which companies use Mixpanel?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Chihuahuan Desert?", "What are the possible implications of Demonetization of 500 and 1000 rupee notes?", "What is the cure for chronic eczema?", "What are the world's happiest countries?", "Which is the best University for Indian students to study mbbs in Ukraine?", "Why is the idea of enforcing immigration law so offensive to liberals?", "What are the best C++ books?", "What are some event ideas for a college fest?", "Is there a hope for a Voltron movie?", "What is the most delicious chocolate?", "Which is the best private bank to open a saving account in India?", "When is the last day of Earth?", "What are the health benefits of turmeric curcuminoids?", "How do I write a good provisional patent application?", "What are your favorite inspirational songs?", "Which are the top places to visit in Kerala?", "How many times should I meditate?", "How do you find out if a shy guy likes you when you are a shy girl?", "What would happen if war were declared between India and Pakistan?", "How many wives did Akbar have?", "Which is the best QuickBooks Tech Support Number in Las Vegas?", "How can I deactivate or delete my Gmail account?", "How do I grow a beard fast?", "Which is the best book to learn Python?", "If you could ask everyone you meet only one question, what would it be?", "How do you improve your writing skills?", "How can I find the right girl for me?", "What is the purpose of the RecordReader in Hadoop?", "Do men have an easier life than women?", "What is the best place I should visit in the winter in India?", "Too Much of Anything Is Bad. Do you have experiences that too much of Quora is bad for you?", "What is the best way to make passive income online?", "What is principle of cutting tools?", "Have you ever lived with ghosts?", "People say I lack imagination, when I clearly don't. How should I respond to them?", "How can I get rid of my acne?", "Where do people go when they die?", "How do I get rid of scalp acne?", "What are the safety precautions on handling shotguns proposed by the NRA in the entire U.S. including it’s territories and possessions? 3", "How can I study in B.TECH 1st year efficiently? I am not able to study. Please help.?", "What are the most embarrassing moments in life?", "What's your review on harry potter and the cursed child?", "How can one stop masturbation?", "So how does banning 500, 1000 rs and introducing 2000 rs will curb corruption?", "What’s some advice for a 18-year-old solo female traveller?", "What goes through your mind when you are about to give a speech on television in front of millions of people watching you?", "I forgot my Facebook email and password how can I log in?", "How can I meet our Prime Minister Mr. Narendra Modi in person?", "How do I get rid of cellulite on my butt?", "Will banning 500 and 1000 notes can stop the black money?", "What are the ways to earn money while studying?", "Do Hollywood actors and actresses really engage in sexual intercourse while shooting sex scenes?", "How can I hack a Facebook account?", "Is this true that Rs 2000 note in India are embedded with NGC chips?", "How small can a black hole be?", "How could we overcome our fears?", "What's the best way to report identity theft?", "Humor: What are some of the greatest examples of presence of mind?", "What book should be made into a movie?", "What are the best destination for a solo traveler in India?", "What is peak value of 220V a.c.?", "What is the funniest book you have ever read?", "Who acquires works of art for hospitals?", "What is the best way to avoid questions needing improvement on Quora?", "How can I recover my Gmail account when I don't remember the password or phone number I started it with?", "What are the units of measurement for density? How are they used?", "What are the best biographies about Bruce Lee?", "The best of 2016: Which are the best Bollywood movies in 2016?", "What is the best way to get free traffic to my website?", "How should we improve communication skills?", "How do l make a magnet Motor?", "\"What was the best answer for \"\"Why we can hire you\"\"?\"", "What if India and Pakistan went on war today?", "Was there time when the Big Bang happened, or not?", "What is the one thing which you feel to be changed in Quora?", "Which has more career opportunities, biotechnology or biomedical science?", "How did you start using Quora? And why?", "Is Economics a good major? (UPENN student)", "How does it feel to be a pornstar?", "What is the best gift I can buy for my girl to make her feel special on her birthday?", "Why does Sonakshi Sinha still get to work in movies?", "Which is the worst movie you've ever watched?", "How should I overcome depression?", "How do I get rid of a girlfriend?", "Is it a sin to lose one's virginity to a hooker?", "Is it necessary to have a mobile app for my startup?", "What is ur opinion on pre marital sex?", "What is the best Fitness Band?", "What are some best travel hack?", "What is the best web scraping tutorial with Python?", "How did Pancho Villa die?", "What are the functions of Rough ER?", "What are advantages of drinking warm water with lemon and honey in the morning?", "What causes diarrhea?", "How can I meet Narendra Modi?", "How should one prepare for campus placements?", "Why should America convert into the metric system?", "Will there be a camera better then our eyes?", "How can I pick a lock?", "Why do so many people ask questions on Quora instead of searching the answers on Wikipedia?", "If you could change anything about today's system of education, what would you change and why?", "What are the causes for the rise of fascism?", "What is a neutron star?", "Statistical significance level is used in medical research?", "What features should a good robo-advisor have?", "How can I move apps from internal memory to an SD card?", "How do people still think the Earth is flat even though it's proven wrong?", "What is a masala bond?", "How did the 2008 economic recession happen?", "What are the best new Car gadgets technology that most people don't know about?", "What lessons should the Democratic Party learn from the 2016 Presidential elections?", "How should I prepare for JEE in the last 3 months?", "What are the differences between white wine vinegar and white distilled vinegar?", "How can I lose weight safely?", "What is the best Bollywood movie of 2016?", "How do you increase page authority and domain authority?", "What is the best story have you ever heard?", "How did you lighten your dark underarm?", "Why is America more religious than other rich countries?", "How different are Spanish dialects spoken throughout Latin America and Spain?", "How do you know if you're really in love?", "What are the mysteries of the Bermuda Triangle?", "What scripting language is useful for web development?", "What are the best ways to get rid of acne?", "What were the Victorian era's traditions like?", "What accomplishments did Hillary Clinton achieve during her time as Secretary of State?", "How can I increase traffic to my site and what are some suggestions on how to get more of it?", "Why does 0! Equal 1?", "Which is the most unusual pet in your opinion that people actually like to keep?", "What is the best book for practicing Gre verbal?", "How do I lose weight through diet only?", "How can I get messages that have been deleted from my dm on Instagram back?", "How can I find the real true purpose of my life?", "When will Pakistan and India become friendly again?", "What is the best way to learn and practice C programming?", "How can I increase the speed of studying?", "Has anyone experienced flirting or making love with an air hostess?", "In which form will World War 3 take?", "What are you doing while on Quora?", "Why sex is important in life?", "Is there any difference between International Studies and International relations?", "Does chronic stress, cause Anhedonia?", "How do I prepare for CA CPT along with 12th?", "How can I compute the area of the red?", "What are the safety precautions on handling shotguns proposed by the NRA in Kansas?", "What happens to a question on Quora if it is marked as needing further improvement?", "What is the most interesting thing that ever happened to you?", "Before the Big Bang was it in complete darkness?", "What is your best memory with your siblings?", "What are some mathematical puzzles?", "How do I delete all my posts from Facebook?", "When should I have sex?", "Is it possible to travel back or forward in time?", "How do you get wavy hair overnight?", "What is it like to be a lawyer?", "Why is anal sex so enjoyable?", "What places should I visit during my visit to Kerala during July?", "Can we use Jio 4G sim to 3G handsets?", "Who is a better Prime Minister of India, Narendra Modi or Manmohan Singh?", "How can I get better grades in school?", "How do I tell my grandmother that her son has died?", "How do I come up with programming project ideas?", "How can I calculate my CGPA in the degree results?", "What is physical meaning of divergence?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Great Basin Desert?", "What's the best way to dispose of a body?", "What is modulation? What are the pros and cons?", "Does Katrina Kaif deserve the Smita Patil award according to you?", "How do I develop my presence of mind?", "What kind of music do you prefer?", "What pushes people to suicide?", "How can I increase a website traffic?", "Why is atheism popular in India?", "CALL@@@@@### US Talk@AVG^! |! ^1800*@251*@4919 AVG Antivirus Tech Support phone number?", "Is there any public evidence that proves aliens do exist?", "Is March 6th, 2015, a good time to buy Apple stock?", "How do I trace a phone call?", "Why does Virtual DJ keep crashing?", "What are the best places to stay in Udaipur?", "Are ghosts real, or are they just the mind?", "How can discontinuing 500 and 1000 rupee will help to control black money?", "What measures can be taken to increase the height at the age of 18 of a boy?", "Does first time sex pains a lot for a girl?", "What is the best online IQ test?", "How do you wake up early without an alarm clock?", "What are the chances that the electoral college will decide to vote against Trump if Hillary wins the popular vote?", "What do you understand about what Mike Maloney describes as the biggest scam in the history of mankind?", "What is the best way for converting a website (which is not owned by me) into an iOS app?", "I'm 44 years old. I want to invest in mutual funds in india. Which is the best mutual fund?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Chile earthquake in 2010?", "What are the various ways through which one can earn money online?", "How do you like history?", "How many medals should we expect from India this summer Olympics?", "How do I ask a girl for coffee?", "Why doesn't India introduce a law on population control like China did?", "\"Why does this app is named as \"\"Quora\"\"?\"", "Why we take carbon12 is standared for atomic weight?", "Have you ever slept with any stranger?", "Which is the best tourist place in Kerala?", "What is the most effective way to suicide?", "Do apps like Clean Master really work?", "Has anyone seen a UFO in Kalamazoo, Michigan?", "What is your favorite Twitter account?", "What does it mean when you have purple fingernails?", "Is it too late for us to do anything about global climate change?", "Why is Manaphy angsty?", "How would you switch out an isotope?", "What are some interesting reactions of people who you know own black money after the ban on 500 and 1000 rupee notes?", "What should I do to improve my English ?", "Do you think someone can be in love with two persons at a time?", "What's the dumbest joke you've ever heard?", "How can I get someone on Quora to answer a question quickly?", "What are the prerequisites to study artificial Intelligence?", "What are the best books available for data structures and algorithms?", "How can I realistically make money online?", "How can I improve my pronunciation in English?", "What is the best way to overcome a drug addiction?", "Do you think zodiac signs affect a persons personality?", "How do scientists know the earth has a molten center?", "Can dragons kill White Walkers?", "What is your analysis of the US Presidential political debate 9/26/2016?", "\"What is your opinion on the question, \"\"What is the Purpose of Life?\"\"\"", "Does dental implant surgery hurt?", "How do I get rid of these constant Migraines?", "How can one use Google Opinion rewards to get Pokémon GO coins?", "How do you overcome depression and loneliness?", "What is the intentional fallacy?", "Are there any website like Quora?", "Will Obama be seen as a worse or better president than Bill Clinton?", "How can I specifically improve my English?", "What are your top five albums of all time?", "How did you become wealthy?", "How will Donald Trump's presidency affect Europe?", "How do I motivate myself during hard times?", "Why are snooker maximum breaks rare in competition?", "How do I switch my WordPress website to a one page website?", "Is the Brahma of Hinduism, Abraham of Christianity, and Ibrahim of Islam, the same? Why the differences in approach to each of the religions?", "Do you think there's life on other planets?", "What are some examples of an open source application software?", "How can I slowly lose weight?", "What would happen if Ukraine joins NATO?", "How do I get a credit card?", "How can I satisfy my girlfriend with sex?", "Why did Tata Sons removed/sacked Cyrus Mistry as the chairman?", "How do I download all the videos from Investopedia?", "What's the difference between a suit and a tuxedo?", "What is your favorite alcoholic beverage, and why?", "Tcs usa salary?", "Is there life after death?", "Do women really like big penises?", "What actually is the purpose of life?", "How do I start learning digital marketing?", "How do i control emotions at work place or public place?", "What are some small ways to make or save money?", "In the real world, how is scientific notation used?", "What is the most expensive item that people are willing to buy for your dog?", "What is the best way to market a novel?", "What is your biggest regret or mistake?", "Did Fermat have a proof for his Last Theorem, or was he just bluffing?", "What is the best and quick way to lose weight?", "Where can I find an efficient rubbish removal service?", "What are the facilities provided to an IES officer?", "According to statistics, what country is most close to gender equality?", "Does masturbation cause loss of memory?", "How can I find a way to grow taller (maximize my height)? I'm 16.", "Why does PewDiePie have so many subscribers?", "How do I break up with my suicidal girlfriend?", "How do I control being talkative?", "What is a procedural language?", "How do you know if you're in love with someone and might only be denying the fact to yourself?", "How could I get financial help for a startup?", "Why is Saltwater taffy candy imported in The Bahamas?", "What do you think you were in a past life and why?", "What is the best way to control our emotions?", "What is your review of Harry Potter and the Cursed Child?", "Is housing a human right?", "What is the equity risk premium?", "What are some great things to do on a Friday night?", "What is most important for starting a new business?", "Why hollow shaft can transmit more torque than solid shaft?", "Which is the best smartphone for up to 20000?", "Why is it not deemed cultural appropriation for Poc to wear weaves?", "What is the best place to visit in Kerala in June?", "What are the future trends in biotechnology?", "Will we have another recession?", "Has anyone ever had purple eyes?", "Which European countries offer (tuition) free education in English to international students?", "What is the quickest and less painful way to commit suicide?", "What is silicon photonics?", "What are some of the best US universities in the field of computational solid mechanics for pursuing a MS?", "How can I get order on Fiverr?", "Is Hillary Clinton's enabling of voter fraud and inciting of violence at Trump rallies by DNC affiliated groups affecting independents?", "Would you sacrifice your life for a complete stranger?", "What are the best websites to sell gently used clothes on?", "Do the Greeks still worship Greek gods?", "What are the best ways to reduce belly fat without going to gym?", "How can I overcome feeling overwhelmed?", "What are the signals a boy gives if he's interested in a girl?", "How much does an IT fresher earn?", "What are the good websites to learn C programming for begineer?", "Why do most of the developers in Silicon Valley prefer OS X over Linux or Windows?", "What are the pros and cons of the Industrial Revolution?", "\"Who was the \"\"Tank Man\"\" or \"\"Unknown Rebel\"\" in the Tiananmen Square Protests in 1989? What became of him?\"", "How will the passing of GST bill help Indian Economy?", "How much time would it take a beginner to learn web developing?", "What should you do when you feel like a loser?", "Is a third world war coming?", "How secured is the new 2000 and 500 currency notes?", "How many people have ever lived?", "Which are the best GMAT coaching institutes in Delhi/NCR?", "Who are your favorite composers?", "How shall I prepare for CA final Nov 16 exams", "Does House Baratheon have any future?", "What do you think about Juan Manuel Santons getting the peace Nobel prize?", "How do I get a question posted?", "When we fall asleep, what happens to our brain?", "How will Brexit impact the flow of goods and people between Northern Ireland and the Republic of Ireland?", "What is the best book about brand for startup?", "How do I choose a profession?", "Which are the best online courses on digital marketing in India?", "Why are some people on Quora able to write really long descriptions for their question?", "Why can't the government just print more money to resolve its debts?", "Why is my period 8 days late?", "How can I start a hedge fund?", "Why do all of my questions on Quora need improvement?", "Who is the most dumbest person in the world?", "Why can't you delete your own questions on Quora?", "Is there anything that can be done to prevent a child from inheriting its parents bad eyesight?", "What is a teacher?", "How should I write blog?", "If today was your last day to live and you had unlimited money, what would you do?", "What are the best places to visit on a 3-day trip in and around Kerala?", "What are the advantages of computers?", "\"How do you view the Indian government's decision to fight \"\"black money\"\" by scrapping 500 rupee and 1000 rupee notes?\"", "Does swimming increase your height in twenties?", "Why does it appear Women are more likely to be bisexual or engage in bisexual sex than men especially over the last 20 years?", "Is it possible to self teach yourself to sing?", "What are the safety precautions on handling shotguns proposed by the NRA in Arkansas?", "How do I start a company with no money?", "How can I motivate myself to exercise?", "How do I increase organic traffic to website?", "I'm planning on exercising quite a lot, as well as not eating or drinking at all. Will I lose a lot of weight in six months?", "Why is the TV show The Big Bang Theory not on Netflix, Hulu or Fire TV?", "Is vacuum energy infinite? If it is, how and why? Is it dark energy?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Sahara?", "How should I study (give me a study plan) for 1st year mbbs?", "How can I gain weight?", "If energy can't be created or destroyed, how can dark energy increase with the expansion of the universe?", "What is it like to marry someone you don't love?", "How can I get rid of the fat on my stomach?", "What are some best Hollywood romantic movies to watch?", "Are there any apps or programs that help someone practice coding skills?", "What makes successful people different from average people?", "Daniel Ek: When an we expect Spotify in India?", "How is concentration gradient used in biology?", "What happens to current account holders, how much money they can deposit in bank of old 500 1000 notes?", "Which are the top IT certifications?", "Why did Mercedes discontinue the SLS AMG?", "Can you suggest me the top medical universities in Ukraine, Europe?", "Why is my period 8 days late?", "What can I do to improve reading speed?", "Can anyone give me the vivid description of the IIIT-H Lateral exam?", "How do people get fat?", "How do I become successful in my life?", "Which is the best anime to watch?", "How do I track my friends location on phone?", "How do delete Quora quesitons?", "As an engineering 3rd year student what should I start preparing for IAS exam?", "Why are black runners significantly faster than those of other races?", "What fiction and nonfiction books are essential? Why are they essential to read?", "What should I check before purchase domain name and hosting name?", "What is the best way to upload an audio file to YouTube?", "What is Star Trek?", "Why did God create Earth?", "What is the difference between a registered dietitian and a nutritionist?", "Do people really contact spirits through the use of a ouija board?", "What is your view on the move to scrap 500 and 1000 rupee notes? What will be its effects?", "How do I add images in Quora?", "What are some mind-blowing inventions tools that most people don't know about?", "What's the meaning of life?", "What's the importance of reading books?", "If energy is not conserved in an expanding universe, can infinite energy be created? Is it potential energy or potentiality infinite?", "What is the need for java interface?", "How do I prepare ink for inkjet printer?", "What was the universe before Big Bang?", "What do you think about the Indian Government policy of not circulating INR 500 and INR 1000?", "What is the scope of Bcom hons?", "What is the best Used car for under $7000?", "What is the worst thing you saw your kids do that you wish you had never seen?", "Where does the term excuse my French come from?", "Why does it hurt when the person you love doesn't love you back?", "What is the best site to find native speakers of English to practice speaking with?", "Will the World end?", "Life cycle of logical database design?", "How do I change my profile photo in here on Quora?", "Why can't a body move faster than the speed of light?", "What does the rough ER do?", "How can I get a complete list of all my gmail accounts?", "What does earn value mean?", "Which is the best bank in Nepal?", "How do I lose weight fast?", "What is line voltage and phase voltage?", "Why is not India performing well in Rio Olympic?", "Is it worth spending so much money on Iphone?", "What are some things a woman should know about men?", "When is the best season to travel to Singapore?", "Does masturbation reduces memory?", "Where can I get designer collection of affordable floor tiles in Sydney?", "How many views and answers are required to become Top Writer in Quora?", "How do I study the bible?", "How does media change the people’s mindset?", "Will France become Muslim one day?", "Has any couple met on Quora and fallen in love?", "What is the best definition of UX designer?", "Who are the most intelligent people to follow on Quora?", "What is the afterlife like?", "Can a black hole consume another black hole?", "How can I loose 5kgs weight in a week without exercise?", "What are the ways of saying no to a girl after meeting her first time in an arranged marriage?", "What is the best series finale TV program you have ever seen?", "Why do people believe in flat earth?", "How can I convince a conservative that transgenderism isn't a mental disease?", "Which is the best app to download games?", "What are the Hollywood movies that are a must watch?", "What is the strangest question on Quora?", "Where can I hire a real bad ass hacker?", "Does long distance relationship work?", "How can I speak fluent English with accuracy?", "What is the easiest way to become an actor?", "As a novice writer, what are some tips to get beyond writer's block?", "What’s the best way to learn Japanese?", "Can you get high in the slightest bit if you accidentally ingest a few microscopic specks of weed?", "Why do some parents abuse their kids?", "What is the difference between blazer, suit, and tuxedo?", "How can I make use of my knowledge to contribute to code in Github?", "What are ways I can make money online?", "What should I do before I sell my laptop?", "How would I start my own consulting business?", "What is to hymn?", "How many versions of Quran are there in this world?", "What is a palindromic number?", "What makes the Godfather movie trilogy so great?", "Why are Apple products more expensive than other similar products?", "What is the best movie of all time? (In your opinion)", "What is the evidence of purported surgical strikes by India on Pakistan?", "What are the best recipes for small batch chocolate chip cookies?", "What are the easiest ways to make good money using the Internet?", "How can you find out who is calling you from a private number?", "Is it healthy to eat one chicken every day?", "How is discontinuing 500 and 1000 rupee note going to put a hold on black money in India?", "Where is the proof of alien life?", "What is F1 visa processing time?", "What is the role of nucleic acids in living things?", "Why are whites jealous of me? Should they “get a grip”?", "How is India reacting to the terror attack on Uri Camp in September 2016?", "Who is love specialist astrologer?", "Is Salman Khan a good actor?", "Will Jon Snow's parentage be made public?", "What are some amazing bike inventions that exist that most people don't know about?", "How can I earn money part time online?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Arica earthquake in 1868?", "What is the best way to make money on Quora?", "How do I get rid of frizzy hair?", "Where can I see my asked questions in Quora?", "What banks do open accounts online?", "What would you change about Quora?", "How is the HTC One E9+?", "Will my debit card work with NETELLER?", "Do insects like ants and coxkroaches feel pain?", "Should I do a PG diploma in industrial robotics or an advance diploma in software testing?", "How do lightning arresters work?", "How do I prepare for tech mahindra online test?", "I'm overweight. How can I begin to lose weight?", "How can I teach myself to sing?", "What is the best sex tourism destination in India?", "What do you think of the decision by the Indian Government to demonetize 500 and 1000 rupee notes?", "What would be the impact of GST in india?", "Where did the name Hollywood undead come from?", "How do I get rid off from porn addiction?", "What is muscular dystrophy?", "Where can I find a qualified hacker?", "Eighth Generation Consoles: What are the differences between XBox One and Playstation 4 and which do you prefer?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Nanshan?", "Which is the best QuickBooks error support number?", "Which are the top universities in the world?", "What is Helen Keller famous for?", "Which are the best anime pay pornsites?", "Could the Great Lakes ever empty during a serious drought?", "Why do programmers prefer two large monitors?", "What did you think of Trump's speech after getting elected?", "Does India contribute to the ISS (International Space Station)?", "How can I increase traffic on my blog?", "Why haven't other countries put man on the moon?", "What’s your top 10 list of horror movies?", "What do you search for in life?", "What are some good retirement plans?", "What are greatest thriller movies?", "How much time will spotify take to land in India?", "Who enjoys more sex men or women?", "What are the innovative Ideas to curb pollution from Delhi?", "What is the best way to self motivate myself?", "Is it legal to fire a woman from a place such as a strip club, a topless bar, or a Hooters if she gains weight or becomes pregnant?", "Why is Cricket not popular in US even though it was a British colony?", "If you could only keep five possessions, what would they be?", "Is time travel already possible on Earth?", "What do you think of Prime Minister Narendra Modi's decision to introduce new INR 500 and INR 2000 currency notes?", "Why does voltage of a battery decrease?", "What are my chances/ How can I improve my chances of getting into an Ivy league or UC school?", "What should I do to get rid of my anxiety and my low self-esteem?", "What is the meaning and purpose to life?", "Which movie have you watched several times?", "Is WWE real or fake? Is the result decided before the match?", "How is Alchemist, Delhi for CAT coaching?", "What will happen to Chinese students studying abroad in America now that Trump is president?", "What is the best bank in Singapore: e.g. DBS, CitiBank, HSBC?", "How will Hillary Clinton influence the relationship between US and India if she becomes the President?", "What are the best moments of Rio Olympics 2016?", "Is it likely to get pregnant during day 3 of my period with unprotected sex?", "How does Google Maps know about traffic details?", "Which is the best way to learn SAP UI5/ SAP FIORI?", "Has the world always been so fucked up?", "Why are so many people on Quora obsessed about IQ? It must surely top the list!", "Why does the Catholic Bible have 73 books?", "From where shall I start to learn hacking?", "How do I become rich in India?", "Will I improve my memory power?", "Which are the best books to learn piano as a beginner?", "What is a Oligarchy? What are some examples?", "Is interface theory of perception accepted in neuroscience?", "Which are best books for preparation of entrance to msc forensic sciences?", "Is Hillary Clinton going to go to jail?", "What is a good site to buy watches online?", "What are the current events in science?", "Is feminism going too far in western countries?", "How is Ford's after sales service, and what are the maintenance costs?", "What is the best way to stay organized?", "What can we learn from the Mahabharata?", "What are some of the most closely guarded secrets?", "How can a skinny guy with a fast metabolism gain weight?", "Can I get pregnant two days after my period ends?", "What are the safety precautions on handling shotguns proposed by the NRA in Florida?", "Which one is better: computer engineering vs computer science?", "How can I fetch more number of answers for my questions on Quora?", "Realistically speaking, what would happen to the USA if Donald Trump wins Presidency in the 2016 elections?", "Isn't Donald Trump the logical culmination of where Republican politics has been heading for many years?", "What does Trump's victory mean for India?", "What are ways to lose belly fat?", "Why do people ask questions on Quora that could simply be googled?", "Why is the flight journey from Dubai to Los Angeles always over Europe, Greenland and Canada rather than directly over the Atlantic Ocean?", "What are the safety precautions on handling shotguns proposed by the NRA in Montana?", "What is the right age to leave two kittens alone?", "What actually is the purpose of life?", "Why did the Indian government demonetize the current 500 and 1000 rupee notes and replace them with new notes?", "What is the best lifetime antivirus software?", "What's the difference between butterscotch and caramel?", "How do you become a professional racing driver?", "How can we become popular on social media?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Tohoku earthquake in 2011?", "How do I think like Sherlock Holmes?", "Russia is being blamed for hacking US computers. Will this lead to nuclear war between the US and Russia?", "Would you date a Muslim guy?", "How do I make blogs?", "Who will win the 2016 presidential elections?", "What are some tips to improve my speed reading comprehension?", "What are the safety precautions on handling shotguns proposed by the NRA in Utah?", "What is the probability of life outside Earth?", "Why torrent is suddenly shut down?", "What are the safety precautions on handling shotguns proposed by the NRA in Alaska?", "Is it possible to fall in love with more than one woman / girl in the same period of time?", "How do apps make money?", "How do I learn quickly?", "What are the weirdest places where you have ever masturbated?", "How can I learn better in school/ How can I get better grades in school?", "How could start with open source development?", "Is yoga really good for the health?", "What do Japanese people think about India?", "How do I make a simple cake?", "What are your views on Modi governments decision to demonetize 500 and 1000 rupee notes? How will this affect economy?", "Where is the best online digital marketing course?", "Does drinking lot of water increase your appetite?", "What is the meaning of living life?", "How do I flow traffic to my website?", "What should an Indian know about Indian Railways and its facts?", "How can I recover from bulimia?", "How do I learn German grammar?", "What can you do with a mathematics degree?", "Politics of India: What is the difference between money bill and financial bill?", "Why do people ask questions on Quora instead of Googling it?", "How do I overcome depression and jealousy?", "What are some interesting questions?", "Which are the top best real estate project in Noida?", "What are the factors on which Google maintains the ranking of URL's?", "How can I prepare for GATE without coaching?", "What causes people to judge a person by the way they look?", "How would the bilateral relationship between India and the USA be under Hillary Clinton's presidency?", "What is ultimate purpose of life?", "Can I get a good job without a college degree?", "How is the life of a RAW agent?", "Is Donald Trump fit to be president?", "Will eating too many carrots turn your skin orange?", "What units make up the rate constant in chemistry? How are they measured?", "If you knew you were going to die tomorrow, what would you do differently today?", "Do facts truly exist?", "What are the best tips to study philosophy at university?", "What are the best ways to clean my glasses?", "If more vacuum gravitational and dark energy is created as universe expands can infinite of these be created as they appear without limit?", "What are the top 10 mobile app development companies in Kuwait?", "Is it better to develop a logo in Photoshop or Illustrator?", "How can I root my Android 5.1 device?", "What is the difference between bachelor of engineering and bachelor of techonology?", "What is the one movie you watched that changed your life the most?", "How do I stop worrying about what others think of me?", "Where can I get professional DJ for School Discos in Sydney?", "What are some of the most interesting or lesser known stories in mahabharatha?", "Can I score 10 pointer in class 10 if I score B2 in all subjects? And if not what is the maximum I can score? Please answer", "When will 'Indian Regional Navigation Satellite System (IRNSS)' be available for use to public?", "I watched Game of Thrones and just completed Suits. Which is a good TV series that I can watch if I liked GOT and Suits?", "Who are your favorite YouTubers?", "How do I get started in politics?", "Is Hillary Clinton's political career over?", "Who is the most overrated Bollywood actor/actress and why?", "What do you mean by enterprise level mobile application?", "How can I improve my communication skills in english?", "Which is the best video game?", "What are some symptoms of eccentric and concentric contractions?", "What are the main differences between de Broglie's matter waves and electromagnetic waves?", "How can I learn Microsoft office?", "What do parents and girls expect from the boy if he wants to marry?", "What is the best career option for an electrical engineer who is interested in coding?", "Is Suicide Squad a good movie?", "Should I stop using pornography as a masturbatory aid?", "How can I control emotional stress?", "I want to export my products worldwide, is there any site to post my products for free?", "I forgot my password and the email address I used to create my Snapchat account. How can I log in or at least change my email address or password?", "Did the surgical strikes really happen?", "What is the best compliment that you have ever received?", "How much turnover a week does the average Pizza Hut delivery make in the UK?", "What are some key points of Indian Economic survey 2016?", "How will the ban of 1000 and 500 rupee notes affect the Indian economy?", "Which moment in your life changed you completely?", "Do you think we should pass a law that makes voting in elections mandatory for all US citizens?", "Who is the greatest enemy of mankind?", "Are Trump supporters disappointed that he has already backed away from some of his campaign promises?", "How can I overcome my problem?", "How much time my Reliance Jio 4G SIM card will take to get activated?", "How do I ask lengthy questions on Quora?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Bataan?", "Which is the best way to control anger?", "Are there any online civil engineering courses like Coursera? With certificates", "Is morality subjective or objective?", "How do I write a good essay?", "How do I know if someone has blocked me on whattsapp?", "Which are books that one should read in there life time?", "Who is your favorite superhero and why?", "Who is your favorite Star Trek character? Why?", "How do I gain weight in naturally way?", "How do I create a blog in Quora app on iOS platform?", "Why is the national flag of Libya all green before 2011?", "How do I attract more visitors to my website?", "What are all the places that I can visit in Chennai and around?", "What are the best smartphones under 10000 in 2016?", "Why are people on Quora obsessed with their IQ?", "How can I make PowerPoint presentations more interesting?", "How do I find my gmail password?", "How does the ban on 500 and 1000 rupee notes helps to identify black money and corruption?", "How can learn English?", "I'm 5'2, is it possible to run the 100m in under 12 seconds?", "How do I get good muscular body?", "How can I get away with promoting my novel on Quora?", "What is the best way to rank your website in top searches in Google? Can anyone suggest me some great SEO tips and techniques?", "Should my chin move when singing verbrato?", "Wwe is real fight?", "What are the good career option after b.tech in electrical engineering from an NIT?", "Why are we afraid of change?", "How can I remove a nasal tone from my voice?", "Which is more important: competition or cooperation?", "Who are the some most influential politicians in the world?", "What are the mysteries of the Bermuda Triangle?", "What can I do to make my hair thicker?", "What do I need to make a website?", "Which are the best resonable rates beach facing resorts to stay in with your family in Goa?", "What is the best programming blog?", "Can a bound morpheme be more than one syllable?", "How important is sex in a successful relationship?", "How I can speak English fluently?", "What is the difference between Graded Potential and Action Potential?", "Where can I learn shooting in Chennai?", "What are the best digital marketing courses for mid-senior level marketing managers?", "What's it like having siblings?", "My questions haven't changed. Why are they now being marked as needing improvement?", "How do I get my English better?", "Is a question in Quora limited to 150 [text] characters and question details to 300 characters?", "Which is the most used programming language in the world currently?", "What is the best way to flush methamphetamines out of your system?", "How do I make exercise a habit?", "How do you win a lady's heart?", "How should I plan a trip of few days to Goa?", "What are the most embarrassing moments in life?", "What is the value of pi ?", "How do I get Organic traffic for my blog site?", "Who invented pliers? How were they invented?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Vailfivia earthquake in 1960?", "What are benefits of learning Android?", "What is the right procedure to make green tea?", "Is sodium an element or a compound?", "How do I lose weight in a short time?", "How can I slowly lose weight?", "How do I start looking for colleges?", "How many Muslims are in the Indian defence forces?", "Is Annie Clark from St. Vincent a pansexual?", "How do I make a resume?", "What are some good and short (30–90 days) distant learning course for fashion design in India?", "Why is child labor wrong?", "How do Optical Image Stabilization and Digital Image Stabilization differ?", "Can someone yawn or sneeze while he is asleep?", "What are the effects of demonetization in India?", "I am working in an IT company and want to prepare for Bank Po. How can I do that?", "What are some good anime movies?", "What is the best way to compare and contrast meiosis and mitosis?", "How can i meditate?", "What are the differences between Chinese culture and western culture?", "Why MS Dhoni leave captaincy of ODI & T-20?", "Are corn tortillas healthy? What are the health benefits?", "How can I improve my academic performance?", "What are some good term projects for a circuit analysis course?", "What is a medical abortion?", "Is it possible to remove the caste based reservation system from India, by the government of India?", "My penis is bent downwards. Is this alright?", "Which are some beautiful landscapes in Pakistan?", "What are some of the best inventions in 2016?", "Why do people not allow comments on their posts?", "Specifications-wise, which is the better console: Xbox One or PlayStation 4?", "What's the best movie you have seen so far?", "How does someone start their own country?", "Which beverage is consumed more - tea or coffee?", "How exactly does banning Rs 500 and Rs 1000 notes curb the problem of black money?", "Is there no life on other planets?", "Why didn't Draco confirm Harry, Ron and Hermione's identities when they were brought to Malfoy Manor?", "Where can I find a commercial cleaning service in Sydney?", "What are the perfect Halloween movies?", "How can you define maturity?", "Which is the best server side language to learn for Web development?", "How can I hack other's Whatsapp account remotely?", "How can I improve my German grammar?", "Why is Saltwater taffy candy imported in China?", "Why do empty cans make the most noise?", "Why does Quora always mark my questions as needing improvement?", "What is a way to stream a torrent online?", "What is the oldest religion?", "What are some less known facts about pyramids?", "Which are the best gear bicycles in India under 10000?", "What are some good Japanese films?", "How does one move from the UK to the US?", "Why is the media against Trump?", "What is the best way to get over depression without professional help?", "How does fat exit the body?", "Do you feel people on Quora get easily offended?", "How can I remove a tick in my dog's ear?", "What did Steve Jobs do?", "Is it a symptom of OCD to repeat words? (Repetitive, words and speech)", "What is the chemical formula for hydrogen gas? How is it determined?", "If we have evolved from apes then why there are apes around us?", "How do I get back lost hair?", "What is the way to hack WhatsApp?", "Will GST change Indian economy?", "Is declartion statement reuired in a resume?", "How can I increase traffic on my blog?", "When and how did World War 1 and 2 occur?", "Why does Quora say that my question needs improvement when I wasn't even the one who asked it?", "Is it possible for a country to buy another country?", "What were the most influential political causes of World War I?", "How can I manage my anger?", "How would someone start there own political party?", "How can I earn money during college?", "What was your JEE Mains score?", "Can using birth control cause complications in future pregnancies?", "What is a way to make money online?", "How can you lose weight really quick?", "In reality can anybody change the outcome of the election to let Donald Trump lose from December 19th?", "How do I recover app lock deleted photos?", "What does Donald Trump's win mean for Indian students in USA?", "Can electricity flow through vacuum?", "How can I lose weight through diet and healthy eating?", "Are people answering on Quora lonely and/ or unemployed?", "What are some examples of 4NF (fourth normal form)?", "How can someone open up a business in USA?", "Mysql with JavaScript?", "Where can I found experienced technicians in Sydney for any air conditioning installation?", "Which is the best training institute for Java in Bangalore?", "Which is best book for Java?", "How can I increase my thirst for water?", "How do I keep a conversation going?", "Which is the funniest joke you've ever heard?", "If you could live anywhere in the world where would you live and why? Pics appreciated!", "How will abolishing rs.500 and rs.1000 notes reduce corruption and identifying black money?", "What is the present best branch of engineering in India?", "Which is the best earphone under 1000?", "What's your love story?", "What can be the best Valentine's Day gift?", "How does the negative feedback reduce the noise effects?", "What is the most important thing in our life?", "What is a cell wall?", "How can I continue to improve my English?", "What are the job-oriented courses for mechanical engineering freshers?", "Should Donald Trump be president of the USA?", "What should be a good name for College magazine?", "What is the difference between an engagement ring and a wedding ring?", "What can India do in the Indus Water Treaty?", "What will be the job prospects for petroleum engineers in the next 5-10 years?", "What are examples of barriers to communication?", "Are introverts more likely to experience depression compared to extroverts?", "Can you please list all the books you have?", "Can 3G mobile support relience Jio sim?", "What is personality development?", "How do i get started on machine learning?", "What are some ways to learn how to forgive yourself?", "Given a time machine, where would you travel, the past or the Future? Why?", "I really like this girl, but she has a boyfriend. What should I do?", "What is the last thing you want to do before you die?", "Can u get pregnant the day after your period ends?", "What are some examples of 3 stanzas in poems?", "What are the best colleges for mass communication in India?", "What is an example of causal hypothesis?", "How profitable is it to own a long term care?", "Which engineering entrance exams should one appear?", "What film do you recommend I see?", "Is there any proof of the existence of aliens? Has anyone seen aliens?", "What is a reason for world war?", "Why does South Korea have such a high suicide rate?", "What is the side effect of sleeping pills?", "What is something you hate about Quora?", "What is considered to be vegan and is pita bread a vegan option?", "Why is it so difficult to lose weight?", "What are your 2017 New Year’s resolution(s)?", "Which is the best mobile under 15000", "How do I test my imagination?", "How do I contact supervisors for graduate admissions?", "Why is Islam against tattooing?", "What's the difference between t value and p value?", "Should I buy a LG k10 or a Huawei p8 lite? Because right now only these 2 phones are within my budget.", "What should the future of education look like?", "What are some interesting facts about Leonardo da Vinci?", "Do taxi drivers prefer you to sit in the front seat or that back seat when you are alone?", "What’s the meaning of your name?", "Is it possible to cross breed humans with any of the mammal?", "Who would win in a fight, Bruce Lee or Muhammad Ali?", "What are xenobiotics? What are some examples?", "What led to Cyrus Mistry ouster from TATA GROUP?", "If we throw a ball in a very fast moving vehicle, why does it come straight back to our hands and not fall behind us?", "Why did Apple make Swift Open Source? How does it affect Android?", "Do atheists believe in karma?", "How to get rid of pimples in your mouth?", "What are the best ways to win salary negotiations?", "How can I delete this account? Please answer", "What are some best movies of all time?", "Is plasma membrane considered to be an organelle?", "Did matter exist before the big bang?", "Where can I watch the fall colors in or near the Bay Area?", "How do you potty train large puppies?", "What can I do after completing BDS?", "What thinking do you have about Chinese food? Do you like it?", "Is love real or just an illusion?", "Which is the best laptop under INR 30,000?", "Can I get pregnant a week after my cycle?", "How can I realistically make money online?", "What is the c# best book for beginners?", "How do you repair a laptop headphone jack?", "Why were vietnam war vets treated so badly when returning home?", "What should one do to find purpose of one's life?", "How did Trump win the presidency?", "What are the work of a general contractor?", "Is Narendra Modi a corrupt politician?", "What can I do to clean out my system from meth?", "Where should I stay in Goa?", "Why is the Quora page so slow to load?", "Which is the best institute for GMAT preparations in Delhi?", "What's the butterfly effect?", "How does WhatsApp make profit?", "What are the keys to becoming a successful realtor?", "What is the best cookie recipe?", "What is the possibility of war between India and Pakistan after surgical operation?", "How can someone become rich?", "What is non proliferation treaty?", "If wormholes exist, even theoretically, is it possible that the light we receive from some of the distant objects might actually come through these?", "What has been your most embarrassing moment from childhood?", "What is borderline personality disorder?", "Where can I get affordable package in Sydney for floor tiles?", "Why are Oreos so addictive?", "How can I find out if my little brother is vaporizing weed in his room?", "Is the decision to abandon Rs. 500 and Rs. 1000 denominations notes by PM Modi justified? Will it help in any way to curb the Black Money?", "Why can't India ban the import of Chinese products in India?", "How can politics be studied?", "How can you Earn from YouTube Videos?", "What is the future of Iran?", "What colour is water?", "How do you write a thank you letter to a soldier?", "How will the demonetization of Rs 500/1000 notes finish the black money in the market exactly?", "What's it like being a lesbian?", "What is the origin of the British flag?", "What would happen if England left the United Kingdom?", "What can I do after completing Bcom?", "How should I react when people are rude to me?", "Why is the government abruptly banning the 500 Rupees and the 1000 rupees currency notes in India?", "How do I tell if someone is a psychopath?", "Why do good things happen to bad people, and vice-versa?", "What's the purpose of a human life?", "Given the trajectory of human advancement over the past 100 years, what will the next 100 years look like?", "What is you favorite TV program?", "Can we expect time travel to become a reality?", "What are the best arguments against libertarianism?", "How would you define love?", "What would be effect of 500 and 1000 Rs notes ban?", "Can we travel back in time?", "It always true that honesty is the best policy?", "What is your favourite anime character and why?", "What parts make up a microscope? What is the function of each part?", "What are the best pop songs ever written?", "Is there a war coming?", "When, exactly, does the modern era start in history?", "What is meant by operating system?", "Why were the 500 and 1000 rupee notes demonetized?", "Is Donald Trump purposefully tanking the election?", "How come nobody is answering my questions in Quora?", "Which is the best quickbooks auto data recovery support number?", "What is colour of water?", "Does hypnotism work?", "What are the top 25 private engineering colleges in India?", "Can we expect time travel to become a reality?", "Who named our planet earth, and why earth?", "Why are there so many Jewish lawyers?", "What is the best way to teach a child how to swim?", "How do I get to speak fluently English?", "How do I start learning programming language? Which one to start with?", "What does everyone think of last night’s New York debate between Donald Trump and Hillary Clinton?", "4. how do I figure out what I’m good at doing?", "How do I earn via writing blog?", "How do I become a really quiet person?", "Where can I find delicious cupcakes at Gold Coast?", "Can anyone working in Wissen Technology give an insight about the company and its work culture? Are Wissen Technology and Wissen Infotech the same?", "Is interface theory of perception by Donald Hoffman true according to neuroscience and evolutionary biology?", "How much does a business analyst earn in india?", "Do you think it's crazy to fall in love with someone you've never met face to face?", "Which are the top Digital marketing agences in India?", "Can anyone think of a positive that will come out of a Trump Presidency for me?", "Who would play you in a film based upon your life?", "What is the worst thing you have done on your life?", "I am in a process to loose weight. How much water should I drink in a day?", "What are the list of some good Indian porn websites?", "Were there forum sites before net neutrality?", "What could 50 French francs buy in 1997 before the euro came out?", "How can I Increase the traffic of my blog?", "How do I ignore what other people think of me?", "How demonetization help tackling black money and corruption?", "Is the PS4 or the Xbox One better?", "Does being unemployed stop men from dating?", "Why don't Quora users simply use Google first before asking a question?", "\"Why are some questions marked as \"\"needing improvement\"\" when clearly they do not need improving?\"", "Did India provide any evidence for the claimed surgical strike?", "Why is there a fake UN-backed Arbitration in Hague?", "Why am I alive in this world?", "Why is the government abruptly banning the 500 Rupees and the 1000 rupees currency notes in India?", "How important should sex be in a relationship?", "What is Quora address?", "Will Modi win in 2019?", "How is india unique from other countries?", "What the biggest mistake you've ever made?", "What are the similarities between Narendra Modi and Donald Trump?", "What is the difference between Google and Quora?", "Do we really need reservation system in India?", "How can I get out of bed on the very moment I wake up?", "What are good things to serve with stuffed bell peppers?", "How do I know that a guy likes you?", "How can I delete photos from my iPhone but keep them in iCloud?", "I love food and have a big appetite. I'm also quite busy. What tips can you give me to lose weight?", "Should I stop using Quora since it has mostly been occupied by BJP IT cell?", "Is there such a thing as the philosophy of philosophy?", "Who's your favourite anime character?", "Which are the best R rated hollywood movies?", "Extraterrestrial Life: What is the most undeniable evidence of UFO ever seen?", "What should I see and do as a tourist in Taiwan?", "What are the best places to visit in Goa on a 2.5 day trip?", "What is taboo?", "Why are all of my Quora questions marked as needing improvement, even though they meet all of the guidelines?", "How can I earn money as a student?", "What is your review of Harry Potter and the Cursed Child?", "What is going on between Pakistan and India as of late 2016?", "How is Lipton Green Tea related to weight loss?", "Which are the best quotes from How I Met Your Mother?", "How can Pilates change your body?", "What is the best joke you have heard?", "What are some of the best jokes you've ever heard?", "How can I find all my Gmail IDs?", "How do I get so many Instagram followers?", "What are the Black Friday deals for 2016?", "Why are people so pretentious?", "Why does every question on Quora need improvement ?", "What do you think about decision by the Indian Government to demonetise 500 and 1000 rupees note?", "Can I get pregnant a week after my cycle?", "Can I write a long question on Quora?", "Which programming language uses mostly and why?", "Are today's parents too overprotective?", "What exactly is the tension between Russia & US because of Russian involvement in Syria? Will there be a proxy war in future?", "Is it true tat the new 2000 denomination currency has some Nano GPS chip? Or is it a rumour?", "How do I find if a guy is interested in you?", "Did India really carry out surgical strikes?", "How do I impress girls?", "What are the advantages of being a TCS employee?", "What are the do's and dont's in a job interview?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Antarctica?", "What is the easiest way to earn money using internet?", "What are some best American TV shows?", "What are the best places to visit on a 3 day trip in and around kerala?", "What are the best additional courses for mechanical engineers for getting job?", "What are the top 25 private engineering colleges in India?", "How do I change career to business analyst from banking role?", "What are the signs of borderline personality disorder?", "Is it possible to make money as a user on Quora?", "How can I increase height after the age of 25?", "How can one overcome procrastination?", "Does carnotaurus have slitted eyes pupils too or doesn't?", "Do you ever thought of doing suicide?", "Is it true that some French people are rude to tourists?", "What are the safety precautions on handling shotguns proposed by the NRA in Washington?", "What made the Battle of Vimy Ridge important to Canada's identity?", "How do I get rid of visible fat on my chest and belly?", "Why does Microsoft Windows slow down over time?", "Why did the Indian government demonetize the current 500 and 1000 rupee notes and replace them with new notes?", "If Mahabharata is to be made with comic super heroes who would cast in which role and why?", "How do I deal with anxieties?", "How can I have a big penis?", "From where shall I start to learn hacking?", "What did the Declaration of Independence do?", "What question on Quora got the most answers?", "What are the best ways to stop or reduce the frequency of masturbation?", "Money (kids): How can a 10-year-old make money?", "Who is better for India: Donald Trump or Hillary Clinton?", "What exactly is the Rapture?", "How can I overcome masturbation and/or porn addiction?", "Which is better: Ps4 or Xbox one?", "What happens when an unstoppable force meets an immovable object?", "Which characteristics of men is attracted by women the most?", "Is there any pill you can buy to flush meth out of your system for a drug test?", "Where can I find marijuana in Nagpur?", "What does the MATLAB application do?", "What is the retirement age in private sector?", "What would happen if earth stopped rotating?", "Business: What are the best business ideas?", "What is the one thing that makes you most angry?", "Is it too late to go to medical school and become a doctor?", "How can I make money from the Inspire 1 drone?", "What are candles made of?", "Do you regret joining the military? If so, why?", "How can I know if I'm in love?", "What should I do to prepare for the upcoming nuclear apocalypse (for a noob)?", "What should I do if your ex contact you? i Still miss her", "How do you know if a video is copyrighted (other than YouTube videos)?", "How do I stop my cellphone from being tapped?", "How should I improve my writing skill for blogging?", "How do I deal with extreme Social anxiety disorder?", "Which is the best SEO ‪Company‬ in ‪Delhi‬?", "Should we believe in Astrology?", "What is the way to increase the height at the age of 21 years?", "What is a new business to start with less investment?", "What will be the impact of the step taken to ban the 500 & 1000 rupee note on Indian economy?", "How can I earn money from YouTube?", "What is the correct way to turn a steering wheel in a car?", "How can I manage my anger?", "What are the safety precautions on handling shotguns proposed by the NRA in Michigan?", "What is the most common age of Quora users?", "What's the recent news about astronomy?", "Are there any celebs on Quora?", "How do people get banned from Qoura?", "How do I check if milk is adulterated?", "Who is the most inspirational person to you?", "How does it feel having sex for the first time?", "What are the best treats for budgies?", "How long does it take to learn to play piano?", "If I want to change my name what should I do?", "Can corporate tax law make corporations pay their fair share?", "How much do dental implants cost in India?", "If you follow someone on Instagram can they see how many times you have viewed their profile?", "What was the best happening or moment in your life?", "How can you train a Basenji/Chihuahua mix?", "How do I change my profile pic on Quora?", "How can I stop watching porn?", "Which is a good book by John Green?", "How can I reduce fat from right side of face ?", "Why are watermelons red on the inside?", "How should I study (give me a study plan) for 1st year mbbs?", "What will be your new year resolution for 2017 and your plan of execution?", "Can I learn martial arts on my own?", "How can I test my intelligence online?", "What is the meaning of living life?", "How earn second income?", "Prouve me the moon landing is true..", "Is it worth buying iPhone 7?", "What are the best ways to concentrate for study?", "What is the worst war crime ever committed?", "Why do some people on QUORA ask questions that they can easily findout on Google?", "Could Julian Albert be Doctor Alchemy On The Flash?", "What are the most commonly used high frequency trading strategies?", "Which is the best laptop I should buy under Rs.60000?", "What is the most beautiful name?", "What are some of the best places to visit in Kerala in a span of 5 days?", "What are the best internet business ideas I should try?", "What can make you more rich? Poker or horse betting?", "How is linear algebra applied in computer science?", "Where is the proof of alien life?", "Which programming language is the best nowadays?", "Are there any pills that kill the appetite that are safe to consume for a weight loss program?", "How do I effectively teach the kids to read?", "What's the best way to overcome fear of speaking in public?", "How do I upload my profile picture on Quora?", "How can I get followers and comments on my blog?", "What occurs during anaphase? What are some examples?", "How do I gain profit from stock?", "Does penis size really matter during sex?", "How can we write a essay?", "Which one is the best exhibition stall design company in Mumbai?", "What are the major principles in Sikhism?", "What will be the effect of banning 500 and 1000 notes on gold rate and real estate?", "Could a black hole become large enough to consume the entire universe (given infinite time)?", "Why do people want to get out of jury duty?", "What is the most beautiful moments in your life?", "Can we expect time travel to become a reality?", "How do I gain self confidence as I ALWAYS think that I can't do that?", "How can I earn money part time online?", "How do I stop daydreaming all the time?", "What we will learn from travelling?", "Why was time created?", "What question would you ask to GOD if He would answer to only one question?", "What is the best and quick way to lose weight?", "How can we see black colour?", "How can I learn Korean online?", "What are the top ten tanks in World of tanks?", "What Strategy should I use to crack IBPS PO examination in just 3 months?", "How do we currently measure the speed of light?", "What are the best sites for torrent download?", "How will you know you love someone?", "What's the most expensive property in the world?", "What is best day to book flights online? Why?", "I'll adopt in the future, should I tell my future kids they're adopted?", "Which are the best sites to practice programming?", "Why is the speed of light a constant?", "What is funniest joke you've ever heard?", "How do I prepare for IIT JAM geology?", "What is the weirdest website you have seen?", "Why does Japan have so many earthquakes?", "Can you provide me the list of the best hollywood movies you have seen?", "Why my question is marked as needing improvements?", "Regarding the first episode of Black Mirror, would any British Prime Minister do anything like that, under any circumstances?", "What if Bernie Sanders had won the Democratic nomination, would he have been chosen as president?", "What does it feel like to die and come back to life?", "What are the best ways of marketing your website for free?", "How does demonetization of the 500 and 1000 notes bring down the real estate price?", "Is it necessary to do coaching for GATE?", "How do I stop caring for people who don't really care for me?", "How would you speed your B2B sales up by slowing the process down?", "How do you get a copy of bankruptcy discharge papers?", "How do I find my old Gmail account back?", "What is sigma and pi bonds?", "At what time should I drink green tea to be fit?", "Why are there evil people?", "What do you do when your father is beating your mother in front of your eyes?", "What is the most embarrassing thing you have done in front of your crush?", "Should Edward Snowden be considered a hero?", "How should I take myself seriously?", "Do atheist believe in ghosts?", "Where can I find a website to watch movies with English subtitles?", "How can I study history more effectively?", "Why do clouds float in the sky?", "What's the easiest way to learn Java programs?", "Should India go for another war with Pakistan?", "WHICH are successful startups in India?", "Which movies have the best opening 5 minutes and why ?", "Which is the best laptop under 70k?", "How does Hearthstone Arena work?", "What is the difference between colonialism and imperialism?", "What does it feel like to be bisexual?", "How do I measure the thickness of a paper?", "Who are your favorite Quorans and please describe why?", "Is it possible to stop masturbating?", "What are the best places to go out to in Paris?", "How does disc brake works in a bike?", "Is India considered to be a part of Asia?", "How do you kiss a guy?", "What are the advantages and disadvantages of series and parallel connection?", "Do wolves make good pets?", "How do I edit the subjects in my feed on Quora?", "What should be my first Quora question?", "How can I increase my height after 21 also?", "What is the best way to locate Chinese suppliers?", "Is it normal if the girl you are going to marry (arranged marriage) does not talk much with you?", "What are some of your favourite expressions and phrases?", "What is your favorite piece of Arabic literature?", "How will the decision of scrapping INR 500 and INR 1000 notes affect real estate prices?", "I am 24. Is it too late to get into medicine?", "How can you compare and contrast lice and fleas?", "What are the things that one should do before they die?", "My 12.5 year old daughter really wants a phone for Christmas or New year. I would let her get one. Which one out of iPhone 6 or 6s should I get her?", "How do I know that I am a psychopath?", "Why has there never been a female Pope?", "Does ਬੱਬਰ ਸ਼ੇਰ killing a Bengal tiger in a fair fight defy logic?", "Did Mahabharata really happen?", "Did the Coca Cola Company invent Santa Claus?", "Is John cena really dead?", "What are the flaws in Indian Education system?", "Do I need to consult a psychiatrist?", "Is it possible to get admission into a PhD program without a masters degree?", "How do I approach a college girl on campus?", "Can India kill Hafiz Saeed in Pakistan?", "Who are the best people to follow on Quora to learn about investing and financial markets?", "What do you think of this poem that I wrote?", "How does world economy work?", "To foreigners, what are those things that can only be seen in India?", "I am a very I insecure person. How can I build self esteem and confidence?", "What are the best places to visit in Coimbatore?", "Why do people believe in heaven?", "What is the worst thing that has ever happened to you?", "What are some business ideas that I can make +100 000€ in 1 year with 20 000€ of investment? (No online business)", "Can anyone tell me some real life karma experiences?", "How would Hillary Clinton keep USA's relationship with India if she becomes president?", "What does semen taste like?", "Can I send and receive money with an unverified PayPal account in Pakistan?", "\"Was the Irish Potato Famine truly a \"\"genocide\"\", as is so often claimed?\"", "What's your favorite car?", "What should I do to beat boredom?", "How does sex feel like for the first time?", "What dog breed would be ideal for a first time owner living in Mumbai with a 9 to 5 job?", "Conversion of foreign currency in India?", "Why does Indian education suck so much?", "Does binaural beats work?", "Why am I blocked from asking questions under anonymous basis on Quora?", "What products should I use to get rid of acne quickly?", "Who is your favorite movie director and why?", "Is the 2016 MacBook Pro with Touch Bar a worthy buy?", "Which country will Russia support if war starts between India and China ?", "What were the best PC games in 2016?", "How should I improve my english communication skills?", "How can I contact Facebook via email?", "What is the reason why total internal reflection occurs?", "Why can't I delete my question on Quora?", "How can I learn to focus more on my work?", "How can the drive from Edmonton to Auckland be described, and how does the history of these cities compare and contrast?", "What is the easiest language in the world?", "What was the value of Facebook shares in secondary markets?", "What does it take to create a social media android app?", "What are the best career option for women?", "What are the reasons behind rapidly increasing population of India?", "Why do I feel as if I'm going to die and leave everyone?", "Why is talking to a girl in person and online different?", "How banning 500 and 1000 rupee can affect black money?", "What do I need to know before learning algorithms?", "How can there be everlasting peace between India and Pakistan?", "Why do you waer makeup?", "How can I make money through Android Application?", "What are some conspiracy theories you believe are true?", "Who or what is Donald Trump, really?", "How should I Improve my English speaking to speak fluently in front of other can anyone suggested?", "How do I prepare cost accounting on a CA final?", "What has Hillary Clinton actually accomplished in her political career?", "Where could I find fashion accessories?", "What are nuclear weapons?", "What will happen if Queen Elizabeth II dies?", "How do I become financially independent and responsible?", "What is the least painful way for suicide?", "Could I get asylum?", "What are dreams and how are they created?", "How can I improve my speaking?", "How do you remove pimples?", "Why is education important in Jewish culture?", "Is the institution of marriage really worth it?", "What is the best material to prepare for SSC CGL Tier 3 2016?", "Did Donald Trump knowingly mock a reporter for his disability or was he truly unaware of it?", "What's your favorite type of milk?", "Why does the rhizobium bacteria appear only in the leguminous plants and not in other plants?", "How do you lose belly fat?", "What do I do if my best friend is dating my crush?", "What are the safety precautions on handling shotguns proposed by the NRA in Utah?", "Will Hillary Clinton win the US presidential elections in 2016 and prevent us from another war?", "Is any cricketers there on Quora?", "How do I post video on Quora?", "What skills I need to get a job at Google?", "How shoud I start my preparation for IAS?", "How can I lose weight from running?", "How do you make easy money online?", "What is a legit work from home job?", "Why don't airliners have ejection seats for all passengers and crew?", "What classic books would you recommend to a 15 year old who loves reading?", "Should I take mass gainer or whey protein?", "How do I improve my English speaking?", "How can I get more clients for my web development business?", "Which is the best book for data structures?", "What is a best way to get hands on experience in Hadoop?", "If universe is expanding without a limit and dark and vacuum energy are created as it expands?", "How can I make my hair strong and healthy?", "What is the best way to learn anything?", "How can I turn screen overlay off on my Samsung Galaxy S6 edge?", "How do I see who viewed any video on instagram?", "What are transcendental meditation benefits?", "How can I get better grades in school?", "How do I improve body muscles?", "Can I file an RTI against a private company regarding my delayed joining?", "How can I can concentrate well in studies?", "How do you get rid of 'super lice'?", "How do you know when you start to fall in love with someone?", "What are the best photos you've taken using a smartphone?", "Why has Quora banned my real name account as fake?", "\"Why do they say \"\"God bless you\"\" when you sneeze?\"", "How do I hack a Whatsapp of another user without having access to their phone?", "Why did WTO restrict agricultural subsidy?", "How do I change team in Pokémon GO?", "What are your fav Slayer album?", "How do I find my driver license number?", "Do people have the option to pay more tax than they need to?", "How do I get over old regrets?", "Is one direction really over?", "What was the main reason behind Chernobyl Nuclear disaster? Was it possible for this to be prevented?", "Should Quora stop the collapsing of answers?", "What is the psychology?", "How can I prepare myself to be a good software engineer in general? In other words what makes a good software engineer?", "How do information and data differ?", "How can one deal with people that are racists?", "What are your expectations for Christopher Nolan's Dunkirk?", "How do I maintain personal hygiene?", "What we can learn in just 10 minutes that we will remember for the rest of our lives?", "How do I get funding for my idea of an app?", "What are some of the best single board games?", "When was the last time you felt completely stress free or happy?", "What does SC mean in Facebook?", "What motivates all people?", "Do parents really love all their kids equally?", "What are the very lesser known facts about you?", "How do I live for 100 years?", "What are the best songs of 2016?", "What is the difference between a woodchuck and a beaver?", "Does university ranking really matter?", "What do you think about decision by the Indian Government to demonetise 500 and 1000 rupees note?", "What's a way to last longer during sex? (For guys)?", "How do you western think youtube channel china uncensored?", "How do I make a weibo in the phillipines?", "How Did You Ultimately Decide Which Career Path To Take?", "What should a partial dropper prepare for BITS or JEE?", "How can I reset password of Instagram account without email?", "What makes a perfect pizza?", "Which grand theft auto is your favourite?", "What happens to a question on Quora if it is marked as needing further improvement?", "Are there lot of Mexican women that are attracted to East Asian men (Korean, Japanese, Chinese)?", "Daniel Ek: Are there any future plans of releasing Spotify in India?", "What's the DC in the name of Washington DC?", "In HTML/CSS, what is the difference between absolute positioning and relative positioning?", "How do I recover my lost Gmail password if I don't have the same number and don't remember the recovery email?", "If humans evolved from apes, why are there still apes?", "What's your new year resolution for 2017?", "What should I do if I want to join the Google summer of code (I meanwhat else basic things should I learn except a programming language)?", "How can I hack someone's whatsapp account and change their wallpaper on my phone?", "Why is Indian Rupee not strengthening after demonetisation?", "How do I apply for a PAN card?", "Why did Quora switch fonts?", "What is the best way to avoid questions needing improvement on Quora?", "What's it like to work at Deloitte?", "Can one man change the world?", "How long does it take to become a good programmer?", "Which is the best place to visit in Goa with Friends?", "How do I increase height after puberty?", "What do Russians think of the Romanovs?", "Is google wallet safe, secure and reliable?", "What does a hippie do to earn money?", "Why is Sensory Overload painful?", "How do I know when a girl loves me?", "Is it hard to be a parent?", "Who has viewed my Instagram?", "If time travelling is possible, then why are people from the future not coming?", "How do you know if what you're feeling is love or infatuation?", "Will Hillary Clinton win the Presidential election?", "How do I attract “right guy”?", "Who should win the Champions League this season?", "How can one root android devices?", "Why are Indians so influenced by the Western culture, when the Indian tradition has so much to give?", "How can I Increase the traffic of my blog?", "How can discontinuing 500 and 1000 rupee will help to control black money?", "What is the work of an income tax officer?", "What are some of your favorite books?", "What is the best book to learn C++ for a programmer with C background?", "What is the most common format for a familiar essay?", "Why don't we all just speak one language? Wouldn't it be easier?", "How banning 500 and 1000 rupees note will curb the corruption and black money in India?", "How do I improve my speaking?", "What are the weirdest questions you came across on Quora?", "What are good examples of data flow diagrams for an inventory management system?", "Do you think Eminem is the greatest rapper of all-time to ever live?", "Which are the best books to learn C++?", "Should I upgrade to Windows 10 from 7?", "How are IIT professors paid?", "Can I delete my own question after it's been answered?", "What is the disadvantage of option subject anthropology?", "I need a car. Which is a better car between a Honda City and a Hyundai Verna?", "Which is the best Linux for desktops and for mobiles?", "What is difference between isothermal and adiabatic process?", "Is world war 3 likely?", "Why do table fans rotate in the clockwise direction, and ceiling fans anti clockwise? Is there a technical reason?", "What is the difference between router and modem?", "If you could go back in time and give your younger self life advice, what would you say?", "Could a terrorist kick open door on a passenger jet?", "What are some of the funniest jokes you've ever heard?", "What am I good at?", "Does having a calm or cool demeanor gives you an edge to be a good sporting shooter?", "Are all of the American Horror Story seasons connected?", "Why do people ask questions on Quora that are easily to find answers too on Google?", "I want to start writing. How should I start?", "What's best way to go rob a bank?", "How do you track a FedEx package without a tracking number?", "Where is god?", "Why do girls make sound while having sex?", "What are the most sensitive parts on a woman?", "Why World War III are inevitable?", "How do I recover a hacked Instagram?", "Why can't I delete my question on Quora?", "Can time travel ever be possible?", "How can I lose 4kg weight?", "What is a Representative Democracy?", "Where can I get quality services for labels and stickers printing in Australia?", "How do you see all previous deleted posts on Instagram?", "What are inspirational movies to watch?", "What is the most beautiful place you have visited?", "Which is the best earphone with deep bass under 1000?", "Would Donald Trump be a good president?", "Can someone listen to only Metal? (Not ACDC and Led Zeppelin but heavy stuff) Do you or does anyone else you know listen to only Metal? Is it possible?", "What are the best movies you ever watch?", "How do I get my IQ tested?", "Does massage really increase breast size?", "When was the last time that Democrats had a majority of both houses of Congress and the President at that time was a Democrat?", "How will you start your CAT preparation from scratch?", "How does one cope with and eventually overcome Social Anxiety Disorder?", "Can a two child policy remove India's population woes?", "How can I earn money online easily?", "What are the necessary components for starting your own business?", "I can't love the girl who loves me so much, no matter how hard I try. What can I do to leave her without hurting her feelings?", "Does extraterrestrial life exist?", "What are some of the little known facts about the World War 2?", "How did the Hillsborough disaster happen?", "If Sauron had won the Ring War, how would life in Middle Earth have been?", "Which is the best headphone under Rs. 2000?", "How do I increase my concentration?", "How can I promote my porn blog?", "Is the book The God Of Small Things by Arundhati Roy overrated?", "What will be the top 10 Bollywood songs of all time?", "Why is every question I post on Quora marked as needing clarification?", "How do I find a work?", "Why my husband can't cum even if dontchaveceex for almost 2xweeks?", "Who is the greatest political leader in the world and why?", "What is your New Year Resolution?", "What are the difference between the US and Chinese education system?", "How will World War III begin?", "How do you stop a criminal's attempt to kidnap you so you escape unharmed?", "How do I improve my pronunciation of English?", "How do I learn quickly?", "How do I log in my Facebook account if you forgot your password?", "Which company provides website development services in the USA?", "Do you think it's time for India to adopt a one child policy? Maybe a two child policy at the most?", "How can I learn about the basics of computer and information security?", "What are the top three apps for latest free recharge offers?", "How can I give a good presentation?", "What are you grateful for at this moment?", "What are the best way to gain confidence?", "What do you identify as, and why?", "Can a person with extremely low tolerance to weed get a second hand high from vapor?", "How can I stop thinking about something?", "What is the best English to Spanish translation app?", "Is Donald Trump qualified for president?", "How can I edit pictures in Tumblr?", "What is Fyodor Dostoevsky known for?", "How do I have peace of mind?", "Why is wheatstone bridge not used in measuring low resistances?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Karakum Desert?", "What will happen now that Trump's president?", "If universe expands without limit and dark/vacuum/gravitational energy is created with it, is potential energy (the energy that can be created) infinite?", "What are the secrets NASA is hiding from the world?", "I am a student of Electrical engineering,what are career options after B.tech excluding IES?", "How do I acquire a British accent?", "Why we can see from eyes only?", "What is the best method to compare and contrast photosynthesis and cellular respiration?", "What are some top fashion tips tailored for unattractive men?", "What is your 2017 New Year’s resolution?", "Which U.S. presidential candidate is most likely to lead the US into World War lll?", "Which one is the best romantic movie?", "What do you think of libertarian socialist thinkers David Graeber and James C. Scott and their works?", "What are the best 5 things I can do with my first salary?", "How can I be good production engineer?", "How do I continue to improve my writing?", "How do you train a Jack Russell/West Highland White Terrier mix?", "How can I get mentally strong?", "How are international students from Hong Kong going to be affected after Donald Trump becomes president?", "If vacuum gravitational and dark energy is created without limit as universe expands?", "Why is English easy to learn?", "What are some mind-blowing technologies that exist that most people don't know about?", "Is there a white American cultural identity?", "Why hasn't Hillary Clinton given a press conference since December 2015?", "Why is Saltwater Taffy candy imported in Greece?", "How is to work at Bosch Bangalore as a fresher?", "Why different languages developed in different part of world?", "What is the QuickBooks installation support phone number?", "Who is Jake Williams and why is he getting so much famous on Quora?", "How do I kill my sex drive?", "How can I upload pictures to Google images?", "If you could change any one thing from your past, what would it be?", "What is the best programming language to know?", "How Donald Trump's victory will impact India's IT industry?", "You've got 24 hours to live, how will you spend your last day on Earth?", "How did the explores communicate with native that spoke a different language?", "What are your long-term and short-term goals?", "How can I get admission in rice university as a green card holder?", "What is jail/prison really like?", "What is the best way to give a PowerPoint presentation?", "Is there a free WiFi on Rajdhani Express?", "How can I make money online quickly and easily?", "What are the best programming languages to learn today?", "What photo have had greatest historical impacts?", "How does Quora count the views of my/your answers?", "How can I make an atom bomb?", "Do you like to watch stars?", "Can Instagram be hacked?", "How can I become a great magician ever?", "What are the government job options other then IES after doing a B.Tech in civil engineering?", "What is your purpose of life?", "How can I download flash season 3 episode 2?", "How do I get into an Ivy League school as a foreigner?", "What is the significant difference between hard water and soft water? What are their uses?", "How can we see our own galaxy being in it?", "How should I improve my English speaking and writing skills?", "Why does Trump say that the election may be rigged?", "Why do stars orbit in our galaxy at the same speed?", "Why is talking about my fetish online easier?", "How do I increase my learning speed?", "What was your favourite subject at school and why?", "How long does meth say in your urine?", "What are the advantages and disadvantages of banning 500 and 1000 notes in India?", "Have you ever made up a word or language?", "Do young animals care for their old like humans do?", "Does ICAI really slash marks?", "Which is the best book to learn data structures and algorithms?", "Everyone says come out of your comfort zone but what is my comfort zone?", "Does milk flush the meth out of your system?", "How can I read an entire book faster?", "What are the must places to visit in Kerala (6-7 days)?", "How do you recover your gmail account password?", "Which songs keep you always motivated?", "how do I delete questions from quora?", "What all setup I need to be a Distributor of a company in India?", "Why doesn’t anybody answer my questions on Quora?", "What are the fastest ways to lose belly fat?", "What does Jimmy Wales think about Julian Assange and WikiLeaks?", "How can I become rich in short time?", "What is primary purpose of life?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Matapan?", "Does Serena Williams take hormones, steroids?", "Is KVPY an easy exam?", "\"What does \"\"you are so mean\"\" mean?\"", "How can I improve my communication skill and English proficiency?", "What can I do with C the programming language?", "Is God a form of energy?", "How can I deal with selfish people?", "How can I improve my communication and verbal skills?", "How do you make math interesting for kids?", "What is key of life?", "How effective is scrapping 500 and 1000 rupee notes? Will it reduce black money?", "What are the ways to compete in the Olympics in 2020?", "Which exercise type help you to increase your height?", "What is one incident that changed your life?", "How do you differentiate between a Boeing and an Airbus?", "What are the best strategy games?", "What is a Nephilim? (Goliath was one)?", "How can I increase the traffic to a website?", "Can we live in a world without money?", "Which kind of guitar should I buy as an amateur?", "Are the sets of numbers broadcast from private radio stations numbers only are they dark web sites?", "Would you date someone who smokes cigarettes?", "What has Kim Kardashian done to deserve celebrity status?", "What is the best picture you took with your phone?", "How true are near death experiences?", "Which is the most beautiful country in the world in terms of natural beauty?", "How do you add topics upon asking a question on Quora?", "Do you believe that people can change?", "What is the best way to prepare for an HR interview?", "Does not eating help you lose weight?", "Is it possible to time travel to past?", "What should one do in order to escape boredom?", "How do you under DM on Instagram?", "Where is the HTC service center in Sangli city?", "How can I tell if she likes me?", "Are there proofs in calculus? What do you need them for?", "Is the Earth flat?", "How do I get a 4.0 GPA in community college?", "Which is best escort in bangalore?", "What do rich people watch on tv?", "What are some good, sad indie songs?", "How do you increase your credit?", "What are some best laptops under 50k?", "How do I know what interests me the most?", "Is there any popular service similar to Quora?", "Why is lightning considered a plasma?", "What are the best ways to protect yourself from inflation?", "What is the future of the robotics?", "What are your best adventures?", "Are Muslims discriminated in United States as much as observed in the news?", "What’s it like to be gay?", "If I delete my snapchat app will it erase my streaks?", "Is the NHL going to the 2018 Olympics?", "What is one thing most people believe to be true that few do not, and why?", "What are some of the best quotes from a TV series?", "Between Dell/HP/Lenovo/Razer etc., which could substitute the new crazy expensive Macbook Pro 2016 for architecture/industrial, design/graphic design?", "What are the best company slogans?", "Is there any rule that we cannot buy general tickets for trains before 4 hours?", "How can I get more views in my YouTube channel?", "How can high school students earn money?", "What is the best answer for tell me about your self in an interview?", "How do I reduce my anger?", "What are the best career books or resources to decide on a career?", "What are the best books for the beginners to learn Java?", "What do you remember most about your childhood?", "Will upgrading to the 2016 MacBook Pro be worth it?", "Will war happen between India and Pakistan?", "How do I hire great employees?", "How does it feel to be a closeted gay in India?", "Sexual Fantasies: Is it common for men to fantasize about watching their wives having sex with another man?", "Who is Donald Trump's base? Why is he popular? Why are people voting for him? Why do people like and support him?", "What is the diameter of a water molecule?", "Do you think Facebook will die in the next couple years? Why?", "Which is your favourite Tv serial?", "Are we living in a simulation?", "How do I make my study interesting?", "How do I ask a question on Quora? Please help it is very urgent.", "What is the oddest fetish?", "Brief about the training period duration & joining formalities of pnb po?", "What is the best thing to do to start being involved in open source projects?", "What are the best reference books for learning Java?", "Has anyone got MIUI 8 update for Xiaomi Redmi Note 3?", "What is difference between stock and shares?", "What do you think of Prime Minister Narendra Modi's decision to introduce new INR 500 and INR 2000 currency notes?", "How can I make friends on Quora?", "Where are training centers for PMP in Bangalore?", "What are some amazing paradox?", "What are some good colleges through MAT?", "In India, why do some people write the name of their castes/surnames on their cars/bikes?", "What are the best smartphones under 15000?", "What do Pakistani citizens think about Uri Attack?", "Is it possible to make money as a user on Quora?", "Why do people have dreams while sleeping?", "How do I get to speak fluently English?", "What is meaning of love?", "What would happen if India and Pakistan merged?", "What is the best way to know what I don't know?", "What does it mean if a dog vomits white foam?", "Can I block a topic on Quora?", "What will you do in the last day of your life?", "Now after banning of ₹500 & ₹1000 notes, what are the ways in which people can convert their black money into white and how can it be prevented?", "How can we ask someone to partnership with us?", "I want to start writing. Where do I begin?", "Why is Hillary Clinton considered corrupt?", "What are some ways to earn some extra money as a college student?", "Where can I get a legit hacker?", "Why does Set Max show Sooryavansham so much?", "Why do insects like light?", "Will I have a great career if I go for B.Tech in mechanical engineering in a state level college in India?", "What is a good dog breed for somebody who spends 6 hours at school?", "What are good websites for starting a new blog?", "Which is freelancer.com business model?", "Who is winning the presidential election, Trump or Clinton?", "What would be impact on India if Donald Trump becomes President?", "Is a question in Quora limited to 150 [text] characters and question details to 300 characters?", "What feelings do women experience when they hold a cock in their hand for the first time?", "Height: How would a 14 year old increase his height?", "How can I improve eyesight?", "How is this online course on digital marketing?", "How can I be charismatic?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Chile earthquake in 2010?", "What should we answer when a HR questions why should we hire you?", "How do I convince someone to stop smoking weed?", "How I do learn English?", "Why is Saltwater taffy candy imported in Switzerland?", "Did the US lose the War of 1812?", "Who will win IPL 2016?", "How can I resist my feelings towards my crush and try my best not to give any hint that I like her?", "What are masala bonds?", "How do you find the contact e-mail and info based on a Twitter account?", "How much can an app with 1 million downloads & 500,000 monthly active users earn from ads only?", "Which is the best bank to open NRI account in india?", "What could be the best laptop in budget upto 50k?", "What is most important thing in life? Can we categorize it?", "Where do I start if I want to learn back-end web development?", "Should I watch Ae dil hai mushkil?", "What are your thougths on David Lynch?", "How many days before my period can I get pregnant?", "What should I do to improve my English ?", "How can I get back in my Facebook without a vaild email or password?", "Who are the richest people in the world?", "How do I potty train a puppy?", "What are the plot holes and story flaws in Rogue One? What are the biggest flaws?", "How can I make an Opinion Blog on Quora?", "What should I do to get healthy hair?", "Why are the Åland Islands a part of Finland when the language and culture is closer to Sweden?", "What is the least painful and best way to commit suicide?", "How do I get a government jobs easily?", "What is the difference between a business accelerator vs business incubator in layman terms?", "Do black holes disappear eventually or will it keep getting bigger?", "How do I copyright a screenplay?", "How Indian economy got affected after ban of 500 1000 notes?", "What is the difference between information systems and information technology?", "What should I do to get rid of my huge stomach?", "What am I missing out on in life?", "Why do people get multiple life sentences?", "What's the purpose of a human life?", "What are the exams other than GATE that one can clear to do M.Tech. from a good university/college in India?", "How do I get in touch with an ethical hacker?", "How can I add a longer, more detailed description of my question on Quora?", "Why should one be married? Is that really necessary?", "How do I ask out a girl for a one night stand?", "What would happen if India and Pakistan reunites like Berlin?", "Which companies are following the 14 principles of management?", "What questions have never been asked on Quora?", "Why is the complexity of BFS not o(V*E)?", "Do donald trump or hilary Clinton would win?", "How do I start IAS preparation along with BE engineering?", "What countries support ISIS?", "Some best english songs?", "What phone should I buy under Rs 15000?", "What is the purpose of life according to YOU?", "How can I find the real true purpose of my life?", "What are the different ways of masturbating?", "How do I reset or recovery my Outlook password?", "What do you think of Supreme Court's decision of playing National Anthem in all cinemas?", "Why does my boyfriend rushing to get married, when we are not prepared?", "What is the concept of entropy?", "How do you measure an economic development?", "How do I move over unrequited love?", "What are the major differences between Roman and Greek murals?", "Air standard cycles?", "Find the least number when it divides by 7,8,9 gives remainder as 1,2,3 respectively?", "What should I do if I just found out I have HIV?", "What was your most embarrassing experience?", "Could India and Pakistan unite again?", "Are we near World War 3?", "Why did Leonardo Da Vinci paint several Mona Lisas?", "What happens to our body after we die?", "What are the top 10 books one should read in his or her early 20s?", "Is it real that new currency note in India will have GPS chips?", "Howdo I get into Stanford with a poor GPA?", "Why can't blacks and whites get along?", "Where is the list of all the topics on Quora?", "If someone rejects your facebook friend request can you send it again?", "Who is your favorite YouTuber?", "How do I study faster and more efficiently?", "When was the last year that America was great according to the Trump campaign?", "If someone were to make a movie about your life, who would you hope would play you?", "What can I do along with bcom apart from CA?", "What are your expectations for Christopher Nolan's Dunkirk?", "\"What do you think of the documentary \"\"The Coming War on China\"\" by John Pilger? Will America and China have a war in the near future?\"", "How can I make money online quickly and easily?", "What is it like to date a cougar?", "Why did MS Dhoni quit ODI and T20 captaincy but will still play?", "Is demonetization good for India?", "What is the best thing you have ever eaten?", "Should the education system in India change?", "Why does Poisson's ratio always stay between -1 and 1/2?", "Why do planets spin on their own axis?", "What books should I read to learn about Sufism?", "Should I take a multivitamin regularly?", "Why do minions love bananas?", "What is your best sexual experience?", "What are some side dishes to serve with prime rib?", "I'm a girl how do I know if a girl likes me?", "What is the real mystery behind Padmanabhaswamy Temple's seventh vault?", "How can I grow taller fast?", "Where can I get cheap pest control service in Sydney?", "Is it good to remove blackheads?", "What is the best home workout to reduce waist fat?", "What could be the effect of GST bill on Indian economy?", "What programming language should I learn if I want to create games?", "How much do colleges really care about grades from freshman year of high school?", "Why my question was marked as needing imrovement?", "Did Brad Pitt cheat on Jennifer Aniston? Why?", "Where can you conduct public consumer smell testing of essential oil blends without having to pay demonstration fees?", "How do I get and maintain a pilot's license?", "Which is the best movie ever?", "Which are the best laptops under 40k?", "Which Linux distribution is best for programming between Ubuntu and opensuse?", "What is the best whey protein in India while loosing weight for a fat guy?", "How do I upload movie scenes to youtube?", "Have you ever had a dream that you wished would happen in reality?", "What does Gary Johnson have to do to have a chance of winning in November?", "How do I become successful in my life?", "Is time travel possible through cosmic strings?", "When a man becomes a President, his wife is called first lady. If a woman is President, what is her husband called?", "What should I do to earn money online?", "What was the theme of World AIDS Vaccine Day 2016?", "Do women enjoy one night stands?", "I had depression in the past. Reading some melancholic post here brought back some depressing feelings. How do I deal with it?", "How do police find and use fingerprints to catch criminals?", "How do I work on Quora?", "How do I study chemistry?", "What is the most embarrassing thing you have done in front of your crush?", "What are a few things one should know about Urjit Patel?", "Why did the Mona Lisa become one of the most famous paintings of all time?", "Worst experience of life?", "Is nuclear energy non-renewable? If not, why?", "How do I get more views on my answers in Quora?", "What are the things that should be a common sense in terms of mental health but are not?", "\"What are your thoughts on \"\"quantum computing\"\"?\"", "Why do so many animals have a tail?", "What is the purpose of hairs in the pubic region of humans?", "What are some new year resolutions for 2017?", "What is your New Years Resolution?", "How can I help my dog get rid of hiccups?", "Is the Queen of the UK a good person?", "How is popcorn made?", "Can I take out a restraining order against myself?", "How to increase IQ level?", "Why does the refrigerator not work but the freezer does?", "Why is Saltwater taffy candy imported in Australia?", "Why do so many people ask questions on Quora that can be found in a Google search?", "Is the approval of GST a boon, or a bane for India?", "Which are some of the best school campuses in India?", "Is a bald haired women discriminated in our society?", "Why is Saltwater taffy candy imported in Switzerland?", "How do psychopaths feel emotions?", "What are the top hotels in Bhopal for business trips?", "How do you get rid of a addiction?", "What is the relation between Malcolm X and Marcus Garvey?", "What is a positive thinking?", "Which are some good non fiction books I should read?", "What are some interesting ideas for architectural thesis or dissertation topics?", "Why is immortality scientifically impossible?", "What are the best ways to lose weight?", "Is car insurance worth it?", "What is a polar covalent bond and what is an example of one?", "How can i grow facial hair ?", "Is there any method to learn English phrases?", "How can I loose weight in a week?", "How can I get a list of all my Gmail accounts or recover them?", "Why has the definition of marketing changed over time?", "What are 4 similarities between science and technology?", "Why did the Battle of Vimy Ridge occur? Why is it considered a defining event for Canada?", "How do you manufacture a product?", "Why is Quora telling me my questions need improvement when they are not even my questions?", "Why do Americans often drive slowly in the left lane?", "How do I recover deleted Photos from iPhone 6 Plus/6?", "How does the ban on 500 and 1000 rupee notes helps to identify black money and corruption?", "How do you know if someone is lying to you?", "What else can I do to get over a breakup?", "How do I become a fashion photographer?", "How can I overcome suicidal thoughts?", "How do I get more traffic on my website?", "What are the best ways to improve my writing skills in English?", "How one can lose weight without going to the gym?", "How is the temperature controlled at ISS?", "If Obama is a Christian, why then does he support abortion?", "How do I know if I like that guy or no?", "How do I reset my iTunes security questions?", "What is the difference between BSc in biotechnology and B.Tech in biotechnology? What would be the difference in the jobs allotted?", "Should 13 year olds date because I am 13 and I get made fun of for not dating yet what should I do?", "Are the jobs that president-elect Donald Trump saved in Indiana at the carrier plant Union or non-union?", "Can hamsters eat cucumber?", "Who would be the Dominant Species of this planet, if humans disappeared?", "In what aspects is Hillary Clinton better than Trump?", "How can I forget someone I love strongly?", "What's the best diet for health?", "How do I stop aging?", "How can you learn to write in Korean?", "What is Reddit and how do I use it?", "What is the best way to prepare for GRE exam?", "Can Gary Johnson win the presidency in 2016?", "When is it recommended to drink your urine?", "How should I start couchsurfing?", "How do you ask a girl to have sex with you?", "Which team will win the 2018 World Cup?", "What is the best way or resources to learn english like a native speakers?", "Do Mexican women like East Asian men (Korean, Japanese, Chinese)?", "Why are there so many rapes in India?", "What would happen if Russia and China went to war with each other?", "How do I start up new business in India?", "Is bungee jumping dangerous?", "What will happen if Trump wins for president will it be all bad?", "What is best way to learn English speaking?", "What is the best way to reduce eye strain while using a computer or iPhone?", "Is Hillary Clinton crooked?", "Why would someone eat their boogers? Isn't it disgusting?", "Is it wrong for an 18-year-old to be in a relationship with a 50-year-old?", "How do I meditate?", "Does the Facebook shuttle have a stop in Oakland?", "What are the top 10 website that I should visit?", "Would you marry someone who isn't a Virgin?", "Does Lipton green tea Assist in weight loss?", "How do I beat boredom?", "Where can I get good tamil nadu food in Raleigh, North Carolina, USA?", "What TV series changed your life?", "Why is Mamta Banerjee against the demonetization?", "What is your competitive advantage?", "What is the best way to learn Linux networking concepts and practices?", "On Snapchat, how do I know if someone deleted me / removed me?", "Why are American Saltwater Taffy candies imported in Japan?", "How can I find out if my fiance Randy Petrey is on dating sites?", "What role did the Bill of Rights play in ratification?", "Are Hillary Clinton's health issues that serious or is the media blowing it out of proportion?", "What will be the effects of demonetisation of 500 and 1000 notes on the Indian economy?", "How do I get free iTunes gift cards in India?", "How are the steps of the scientific method described?", "What are the benefits of ban on 500 and 1000 rupees note?", "Why did Akshay Kumar take up Canadian citizenship?", "Which university is the best in the world?", "Who is the best chief minister in india?", "Which is the best coaching centre in Hyderabad for IAS coaching?", "How is a common man benifited/affected by GST?", "How do I clean the screen of my Toshiba TV?", "Has the 50AE Desert eagle a almost 99% kill chance with a headshot at close range?", "How can I see who my boyfriend views on instagram?", "What are some ways to delete my Yahoo Mail account?", "What are the postings under SSC?", "How do I predict the stock market?", "Why are there so many faking things in the world, including the fake UN tribunal in Hague ?", "Where should I invest $300k in Canada?", "How is Quora changing the world?", "Can a person be in love with two persons at a same time?", "Which is the best recommended book for CA-CPT?", "How can I remove ink stains from jeans?", "What do intelligent people think about Donald Trump?", "Have you seen this Trump vs Clinton debate clip?", "What impact would you like to leave on the world?", "How do you get out of boredom?", "Why does Quora is not so strict in the way of writing questions like in the case of Stack Overflow?", "How do I know if I have been blocked on messenger?", "Why did Emperor Claudius invade Britain?", "Why are some people afraid of clowns?", "How can a soil bacteria kill the mosquito larvae?", "\"What is the coolest scientific \"\"experiment\"\" one can easily do at home?\"", "What is the right age to start-up?", "Are corn flakes healthy?", "How can I speak fluent english and get confident?", "What is the best language exchange website/app?", "Which is best time to visit Kanyakumari?", "What is the best way to profit from deflation?", "What is Java programming used for?", "What can I do to avoid feeling sleepy in the afternoon?", "What is the best preparation strategy for ugc net english literature?", "How can someone else hack your phone?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Tohoku earthquake in 2011?", "How can I quit smoking forever? I have failed so many times but I am so fed up with smoking everytime. Any suggestions?", "Which is the best Dilip Kumar movie and why?", "How can I earn money online?", "How is the brain different than a computer?", "How does one become a great coder?", "How do i start my TOEFL preparation?", "What is contrast potential and kinetic energy? What purpose do they serve?", "What is the speed of electron?", "How do I start coding for free?", "How can I motivate myself to keep hitting the gym no matter what the distractions are?", "Is losing two pounds a week healthy?", "How can one be more outgoing?", "What is the best uni to earn a master's degree in renewable energy?", "How can India be a secular century when there is no Uniform Civil Code in place?", "Is it true that there is life after death?", "What is the best electric razor.?", "How can I cope with fear of flying?", "What are the oldest Indian manuscripts that have been dated?", "Is there any proof for the existence of extraterrestrials?", "What do exterminators spray for roaches?", "Who would be a better president: Hillary Clinton or Donald Trump?", "Should I apply for pan card online or offline?", "Can you buy a car safely from eBay or Craigslist? How would you go about doing it?", "How do I turn off screen overlay for Android?", "Which is best love or arrange marriage?", "What are the most annoying questions you see on Quora?", "Is it racist to say that you don't want to date an Asian?", "What are your views on Cyrus Mistry being removed as Chairperson of Tata Sons?", "What is the best university?", "How do you do a 3 way call on an iPhone?", "How do I host a website?", "How do I lose weight fast?", "What the best way to improve English?", "Why don't people answer my question on Quora?", "Does Donald Trump show signs of pre-Alzheimer's?", "Can we time travel anyhow?", "Do dreadlocks grow faster than normal hair?", "What would you ask Tim Cook if you had the chance to meet with him?", "What are the advantages and disadvantages of joining TCS as a fresher.?", "What is the difference between missile and rocket?", "Does Quora have filter bubbles?", "What are the major differences between Chinese culture and western cultures?", "Is there an ultimate limit to how much information the human brain can actually hold?", "How do you motivate yourself to study?", "How would it be if Shiva trilogy was made into a TV series?", "Which is the best GATE coaching institute in Kolkata for me?", "What are the best ways to lose weight? What is the best diet plan?", "What's your favourite anime? And why?", "How long does meth stay in a persons blood?", "How can I get rid of acne and scars?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Colorado Plateau?", "Is there any way to recover an e-mail in Gmail after it's deleted from the trash?", "What do you think of the President of the Philippines?", "What is your new year resolution for 2017 or goal for 2017?", "What are the best books for teaching yourself piano?", "If my best friend break with me without telling a reason and after 1 year he start to respect me again, what should I do?", "What are the bitter truths about doing MBA in the US for an Indian?", "What is the reason behind government's ban on 500 & 1000 rupee notes? What are the immediate effects and how useful will it be in curbing black money?", "Does online advertising really work?", "What do Indian Muslims think about Mr. Tarek Fateh?", "What is the role of Indo-Israel relationship in favour of India?", "What are similar books to Harry Potter?", "How can people actually support Donald Trump?", "Why do black holes exist?", "Should Edward Snowden be considered a hero?", "Why do we need coordinate systems other than the rectangular coordinate system?", "What is the QuickBooks payroll tech support number in Washington?", "What is your New Year’s Resolution(s) for 2017?", "Why do police carry guns with lethal bullets?", "What's the point of getting married?", "What all preparation do I need to do to clear the CAT in 2017?", "I'm 18 and have started to do weight lifting. Will it stop my height to increase?", "\"What should I do when my question is marked as \"\"this question may need editing\"\" but I can't find the reason?\"", "What all preparation do I need to do to clear the CAT in 2017?", "How can you improve the fine motor skills in preschoolers?", "What would it take to shut down Fox News?", "How do I prepare for assistant manager electrical DMRC?", "What are the best ways to overcome my social anxiety?", "What IS the best mobile under 20,000?", "Why do always good people suffer more in life?", "Is time travel possible through cosmic strings?", "Is Donald Trump actually running for President or is this a giant game to him?", "What is the one thing you regret doing or not doing the most in your life?", "How should I improve my English speaking and writing skills?", "What do you think are the benefits to humans from protecting wild animals?", "How long does THC stay in the blood of regular users?", "What companies have the best customer service in the world and what principles they follow?", "Why did you join Quora? What are some good reasons to join?", "Have the Ancient Mayans been scientifically tested?", "What is it like to study Psychology at Stanford?", "Who is the best user to follow on Quora and why?", "What is the best advice you can give to a 17-year-old girl?", "How can I get rid of pimples all over my face?", "How can I identify the signs that indicate my dog is dying?", "How can I open my Facebook account I forgot my password and Gmail?", "Can a dog take baby aspirin?", "What is the best laptop for a civil engineer?", "How close were the Israelis to using nuclear weapons in the yom kippur war?", "Following script, (ɖ∀ཡز∂ ɐŧ ƫҿϞɮ☉ ɽφʉʛƕ),look like written Greek?", "Relation between phase & line voltage?", "Does the following script (ɖ∀ཡز∂ ɐŧ ƫҿϞɮ☉ ɽφʉʛƕ), appear like written Greek?", "Did God create the Big Bang?", "Who will win the 2016 presidential elections?", "Why Modi is putting a ban on 500 and 1000 notes?", "What is the purpose of your life?", "What are some must read books about indian army?", "Can anyone read minds?", "Is there a cure / treatment for Fibromyalgia?", "Why India is against CPEC?", "Who are the patriots who left their country to settle abroad?", "What do you think about Modi government banning 500 & 1000 currency note from 9th November?", "What is the best way to start learning programming concepts and skills?", "What are your top three favorite books and why?", "How did Donald Trump get elected?", "What are some good books on physical chemistry?", "What are the best Led Zeppelin live performances?", "How can I improve my writing skills and blog style?", "Why do people make fun of the anime, Ponyo?", "How do you make chocolate chip cookies?", "What would be impact on India if Donald Trump becomes President?", "What are the most interview questions for musicians?", "What are the interesting courses after 12th science with biology other than an MBBS degree?", "How do I start learning guitar?", "If he texted right after our 1st date to say he had fun and I said me too, why is he playing games now and hasn't contacted me 3 days since our date?", "Can I donate blood if I have a tattoo?", "How do I promote my SoundCloud?", "Why do my body suddenly jerk when I am falling asleep?", "How can you design a homemade Miss Frizzle Halloween costume?", "How does a long distance relationship work?", "Who do you think is going to win the 2016 presidential election?", "What do Americans think of British accents?", "What are the highlights of India's new Land Acquisition Bill?", "How can we speak French?", "Who would win in a fight? Ser Arthur Dayne or Robert Baratheon?", "How do I come out of comfort zone?", "Who attended a coding bootcamp in India? How was the experience?", "What do you do if you feel bored about your job?", "When will Spotify launch it's services in INDIA?", "Why is still India a developing country?", "Where are some great places to stay in Goa?", "What conspiracy theories turned out to be true?", "What's your new year resolution for 2017?", "How do I qualify for the boston marathon 2016?", "Which are the top incest movies ever?", "Will a gap after graduation affect admission into the IIMs?", "Should marijuana be legalised?", "What is maturity? Is it only the physical change?", "What are all the skills involved in writing? How are they best cultivated?", "What makes salt able to melt ice?", "Why are thin foils used for wrapping chocolate bars?", "Will ISPs block peoples websites without net neutrality?", "Who do you think would win the election, Trump or Clinton?", "Who view my instagram video?", "How do I find the real time location of a cell phone number?", "What is complementary sets of tools to Salesforce, clarizen, Zendesk, phone2leads?", "Why do my awesome questions never get more than 2 or 3 answers when some others get 50 or more?", "What are the systems of measurement?", "What is the funniest joke you ever heard?", "What is hard drive?", "What is the name of the mountain in the Paramount Pictures logo?", "Under what circumstances would the production possibility curve be a straight line?", "Is vitamin water a great cure for hangover?", "When will there ever be a cure for autism?", "When/how did you realize you were gay/bisexual? Were you in denial?", "How can I increase traffic very soon on my blog?", "Which topic is the most followed in Quora?", "How would I get free maharashtra board e text books?", "What would have happened if Hitler didn't attack Russia?", "Which book is the best for a beginner in Android development?", "How people learn to hack?", "What are some lesser known/interesting stories in Mahabharata?", "Are introverts more successful than extroverts?", "What is the difference between standard deviation and variance? Gives an explaination with example?", "What are your personal top ten music albums of all time?", "What are some ways to kill boredom?", "How do I become a good digital marketer?", "How should I start my preparation for the IAS exam?", "How do I lose weight ayurvedically?", "Whom should one follow on Quora? Why?", "What's the best C# OOP book for beginners?", "What advice would you give to someone who wish to live no more because of depression?", "How is it possible that black holes at radius zero, have infinite density?", "What's your review for the movie Ae Dil Hai Mushkil?", "What is your biggest regret or mistake?", "Why do people on Quora mention their IQ all the time.?", "How could I avoid my laziness?", "When would the World War III break out?", "How do you find a true love?", "How can I enable voice coming out from a Redmi Note 3 with or without earphones while calling, though the volume is already low?", "What are some ways to let go of resentment?", "What are the best ways to improve your intelligence?", "How do I suck it up and lose weight?", "Which phone is best under 15k?", "I'm a 5 letter word. I am normally below you. If you remove my 1st letter, you'll find me above you. If you remove my 1st & 2nd letters, you can't see me. What am I?", "Why do dogs urinate mostly on car and bike tyres.?", "How do I recover a Gmail account when I have the username and password, but don't have the recovery phone number or email or any other information?", "What are the best GMAT coaching in Delhi/NCR where I can get all the facilities?", "What is the best and comprehensive online resources to learn programming?", "For physics, which is the best book to crack NEET?", "Who do you want to be like when you grow up? Why?", "What's a good book to self-study topology?", "What are common dreams?", "How is deductive reasoning done in math? What are some examples?", "Why do people spend so much money on weddings in India?", "What are some diseases of the respiratory system?", "Is it safe to travel to Kashmir in mid-September climate wise?", "It is safe to buy a laptop from Paytm?", "What are the common mistakes people make when they are learning to code?", "Is it possible for girls to grow taller at 21?", "How do you measure a football field in feet?", "What dangers could accure when visiting the deep web?", "How do you make homemade nail polish?", "What is the function of a memory cell?", "How can I stop worrying about what other people think?", "What is meant by maturity?", "\"How can I fix an \"\"Element not found\"\" error in Selenium IDE?\"", "Do high school female teachers know that their male students stare at them sexually?", "What prevents electrons from falling into the nucleus?", "What would happen to everything on earth if the earth started rotating on its side like Uranus?", "Who is eklavya?", "Why should we read more books?", "What is GDP in detail?", "How should I prepare myself for UGC net CS?", "What does the National Labor Relations Board do?", "What are some of the biggest flaws of Quora?", "What is the difference between switch & router?", "Has Ancient Persia been scientifically tested?", "How can I realistically make money online?", "Objectively speaking, what have been some of President Obama's biggest accomplishments and failures during his tenure so far?", "How can I start an online store?", "\"How can I find out who called me from an unknown \"\"No Caller ID\"\" private number?\"", "Who is Abraham Lincoln?", "How to work out the diameter from the circumference?", "What is an easy way to commit suicide?", "What is best age to get married?", "Does everything happen for a reason?", "How can open new cell tower over land in India?", "What is the difference, if any, between nationalism and patriotism?", "Why was the Indian Ocean named after India?", "Is there a difference between native mini display port and just mini display port on Macbook air?", "How can you learn beginner level magic tricks?", "What are the advantages and disadvantages of having an electoral college over a popular vote?", "How do I logout from Quora?", "What is the best digital marketing course online for a beginner?", "How would I make easy money?", "Where can i sell a business idea?", "What is RNA? What are some examples?", "How many days before my period can I get pregnant?", "Is there any scope for a first year NIT student to take admission in better NIT through better rank of JEE MAIN 2017?", "What should be my preparation strategy for civil service exam? Currently I am in 12th", "How can I calm down from everything?", "What is the worst thing that a parent could do?", "What does it feel like to live in a RV or trailer?", "What is meant by surgical strike?", "How do I prepare for TOEFL or IELTS?", "What is the real world example of waterfall model regarding software?", "How can I make money using Tumblr?", "What are the economic determinants affecting the achievement of the 2030 for sustainable development agenda?", "Was Joseph Goebbels, a Nazi propagandist minister, a drug addict? Any information would be appreciated.", "What can we do when we feel depressed?", "Why is Clinton better than Trump?", "How do I increase the size of my penis without surgery?", "Which penny stocks are worth investing in India?", "What are the top 10 websites you visit everyday?", "What is the best way to bypass a proxy server?", "Which is better, job or a business?", "How can I become good at English?", "Why does my urine smell bad? How can I make it smell better?", "Where can I get wonderful floor tiles company in Sydney?", "Is Nicotine naturally in tobacco?", "What is the difference between an object based and an object oriented language?", "What are some unknown facts?", "What advice will you give for a person who is going to study medicine soon?", "How did Albus Dumbledore get the elder wand?", "What are some of the best animated movies?", "Which actor has portrayed Batman most accurately?", "What would happen if I ask adult questions in Quora?", "What makes you want to vote for Hillary Clinton?", "What is your favourite quote of all time?", "\"What age is the \"\"Song of Ice and Fire\"\" for?\"", "Which is the best project for mechanical engineering?", "What are the advantages of Google search engine?", "What is the best way for a native Chinese speaker to learn English?", "Can I get pregnant a day before my period and still have my period?", "Where can make money online free?", "How can discontinuing 500 and 1000 rupee will help to control black money?", "How do i lose weight?", "How do I become normal?", "How do I become an investment banker in India?", "Is it better to be in a relationship or to be single?", "What are the best low capital startup business ideas in India?", "How do I convince someone not to commit suicide?", "What will be the impact of banning Rs. 500, Rs. 1000 notes on Indian economy and Businesses?", "Does anybody think that Donald Trump really paid his fair share of taxes?", "Is there any reliable way to boost internet speed if yes then how?", "What do you think about Modi government banning 500 & 1000 currency note from 9th November?", "How do I work more efficiently?", "What are some resources for learning advanced Java web programming?", "How do I treat a rash on my dog's chest?", "Is it possible to clear the CAT if I start preparing from today?", "What are the best telugu literary books?", "Who is the best-looking woman from your country?", "What hotel booking site gets the best deals?", "What are some must-watch Indian short movies/films?", "Can I get pregnant 14 days after my period started?", "Why Cyrus Mistry has been removed from Tata Group?", "What places should I visit during my visit to Kerala during July?", "How can excessive masturbation lead to low sperm count?", "Is it safe to use castor oil at 37 weeks to induce labor?", "Is it wrong to hate a certain race?", "What should be the strategy for JEE mains in last 3 months?", "How do I add a picture to my question on Quora?", "It is possible to travel by time?", "Why is my heart beating faster for no reason?", "Is Donald Hoffman’s interface theory of perception really the true explanation of reality?", "What are some reviews of Bear Whitetail II Compound Bow?", "Is age a problem for pursuing Phd?", "What is the difference between a blue whale and a whale shark?", "Which are best places to visit in GOA during vacations?", "How can I cure my alcoholism?", "Dealing with unrequited love?", "I am in first year. In which direction should I start my preparation to clear for IAS exam?", "Should people over 98 not be allowed to vote?", "What is SAP hybris?", "Was Einstein an atheist? Why or why not?", "Should India join CPEC? How would it benefit India?", "How do I deal with common embarrassment?", "What is network marketing?", "What is injustice and what are some examples?", "What language do deaf people think in?", "What is the best place to visit in Kerala in June?", "What is the toughest interview question ever asked?", "What is the biggest ocean on the earth?", "How do you feel about college athletes getting paid?", "Can I remove sun tan skin and back to my original skin?", "How did you learn to code?", "Why are my logical questions marked as needing clarification?", "Are Ramayan and Mahabharata real?", "Is gate coaching necessary?", "What do people think about Anonymous?", "How one can learn Guitar by himself?", "After a bad breakup, did you think you would never meet someone again again? Did you later find happiness and a better match?", "Is milk vegetarian or non vegetarian?", "How do I build my intuition?", "How do I bake a cake in a microwave oven?", "What is the Bing Bang? What caused this to happen?", "How would I start a drone business?", "How does the Earth move through and curve spacetime without displacing it?", "How do I know if I'm ready to settle down?", "Is Milanoo a scam? Why or why not?", "How do you sharpen a pencil sharpener blade?", "What's the best way to learn to sing online?", "How do you become a web/developer?", "What's the most erotic feature film you have seen?", "What is the feeling to have sexual intercourse at the first time?", "What are ways I can make money online?", "How do I retrieve my Gmail password?", "What are the best C# books for beginners?", "How can one make money online?", "Why are some people rude?", "Which are the best universities in the USA for doing a MS in Computer Science?", "How does invalidating the current Rs. 500 and Rs. 1000 currency notes help in weeding out black money?", "Life can be boring. What to do?", "Where can I get expert interior house painters in Brisbane?", "What are some of the best pickup lines ever said to you?", "How IS TO get into MIT?", "What is a meaning of life?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Kalahari Desert?", "What do Filipinos think of Rodrigo Duterte?", "How can one get a fuller face?", "How can l improve my English??", "Daily user of meth how long will take to clean your system?", "What are the top engineering college in Madhya pradesh except IIT?", "What is a good age to settle down and get married for men?", "What should I do to make my aptitude strong?", "Is it possible for human to invent time machine?", "How can I really join into harvard?", "I lost my PAN card a year back but I remember my PAN number. How can I apply for new PAN card with the same number?", "Do you think the shape of Filipino consciousness is natural? Explain Briefly.", "What jobs are in art stream?", "What is the most difficult programming language?", "What is the most funny joke you have ever heard?", "Did the USA really make it to the moon?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Syrian Desert?", "Which are the best movies of Hollywood?", "How do you catch and prepare crawfish?", "\"What is the difference between \"\"affect\"\" and \"\"effect\"\"?\"", "Who is the best Batman actor or voice actor?", "How does sex for the first time feel like?", "Why is bright yellow urine considered a sign of pregnancy?", "How is the formula for average acceleration determined?", "What is the best app to track someone's phone location without having the person's device?", "What is the shortest wavelength of visible light?", "How would you rate the movie Rogue One?", "What does a movie studio do?", "Why is Autism Sensory overload painful?", "How can I become a lawyer in the US?", "What are some mind-blowing bikes that exist that most people don't know about?", "How many marks are you getting in KVPY 2016 SA stream? (According to the answer key)", "How can I improve my grades?", "How do you add topics on Quora?", "How can I setup my TV station on IPTV?", "What would happen if our sun was replaced by a black hole?", "Why did Quora add little icons to the home feed (October 2016)?", "How many names had Arjun?", "Who exactly was Fidel Castro?", "When seeing reports of refugees to Europe, why is it that the majority of them are young men?", "What are the best foods for weight gain?", "How does it feel to be unemployed after getting an engineering degree?", "How will I contact a genuine hacker?", "How do I start preparation of ias (in detail)?", "Dont you hate it when parents make you eat more?", "Why do black people age better than white people?", "How can I make money online for job?", "Why am I automatically following people on Instagram who I never chose to follow?", "What can I do to enrich myself?", "How can I improve my English Language?", "What's Narendra Modi like in person?", "What is a car service?", "How do we change a person?", "What is the best laptop under 30k for students?", "What are the prophecies of world war 3 and will it actually happen?", "How do make personal assistant like jarvis?", "How is time travel possible?", "How do I improve my English writing skills?", "What are several sinusoidal equations that model real-world phenomena?", "Why does India feel insecure with CPEC?", "How do I read reference books efficiently for the IAS exam?", "What causes nightmares that seem real?", "\"What happens after something is \"\"sucked\"\" into a black hole?\"", "What are some of the resources to learn about IoT?", "What are the most prominent theories of what caused the Big Bang?", "What is the best programming language I should learn as a beginner?", "Does Instagram block you from sharing someone else's photos?", "What it is like to have sex first time?", "What are the effects of lucid dreaming?", "What is the maximum number of attempts for IIT-JEE exam?", "How do social networking sites earn a profit?", "\"Are there any jazz clubs in Atlanta similar to the one featured in the television program \"\"Luke Cage?\"\"\"", "Can I pass a blood test after meth use?", "What are the theories about the mystery of the Bermuda triangle?", "What is the most important in life?", "How can I find my old password or can I log into Facebook from my Gmail account?", "Which is a good laptop costing around INR 60k?", "What is diffusion in biology?", "My questions on Quora all need improving. How do you ask a question on Quora?", "Has the 50AE Desert eagle a almost 99% kill chance with a headshot at close range?", "What happened to the ancient Egyptian civilization?", "Can I send and receive money with an unverified PayPal account (USA)?", "How do I apply for PAN Card?", "How do you determine the Lewis structure of SO2?", "How do I get rid of scalp acne?", "Which are the top universities in the world?", "What are the exams to give after BCA to become a professor in college?", "Do new 2000 INR really have a NGC (Nano GPS Chip), or is it just a rumour?", "What's the ending of the tv show lost, I don't get it can some one explain it to me?", "How do you wash boots in a washing machine?", "What are some free alternatives to Aha.io?", "How do I improve my pronunciation of English?", "What is the best voice recording app for iPhone?", "Which is the best laptop to buy under 30k in India?", "How can I keep my girlfriend happy?", "How driverless cars will affect the life insurance industry?", "How can I stop being bothered about other people's success?", "What is Plagiarism and how can I avoid it?", "What's the best way to learn real estate investing?", "What trivia (and/or little-known facts) do you find interesting about the USA?", "What are the best was to lose weight?", "How semaphore and mutex are implemented?", "Who is the hottest porn star?", "What are the safety precautions on handling shotguns proposed by the NRA in Rhode Island?", "How can I see who viewed my video on Instagram but didn't like my video?", "Which answer is the most voted one in Quora?", "When can I expect the next season of attack on titans?", "What should I know about visiting Bangladesh as a tourist?", "Is it possible to make time machine and do time travel?", "Is it possible to reset my Instagram suggestions?", "Who's your favorite author and writer?", "Which is the best food to gain weight?", "What would happen if Sheldon Cooper met Donald Trump?", "How can I have a baby boy?", "How much does it cost to operate a website? Does the cost go up, and if so why and who are you paying? Who is profiting from the website?", "How can one improve his writing skills?", "What challenges will humans face on Mars?", "How can I get rid of little bumps on my face?", "Do ghosts really exist?", "Is it possible that the speed of light isn't in fact a constant but perhaps changes with, say, a correlation to the expansion of the universe?", "How many hours do you work daily?", "How can I be successful as an indie game developer?", "Can I improve my credit score?", "What are some interesting YouTube channels?", "Were the Original Arabs of the Arabian Peninsula black?", "Can your PC really get attacked on the deep web?", "What are some dumb questions ever asked on Quora?", "What might be some classified information of the US that even the President doesn't know?", "Is there anyone on Quora who cracked IBPS so (IT) without coaching?", "What happens when a batsman hit a shot and ball hits the spidercam?", "Why did Quora shift to Serif font which is neither recommended nor comfortable for online reading?", "Where can I get a PPF account?", "Do running increase your height?", "What might Vietnam be like today if the south won?", "Why is Bash on Ubuntu on Windows is so underrated?", "Should a 12 year old have sex?", "Why and how is united states involved with the south china sea dispute?", "Which is the best compliment you have ever received?", "What would life be like on earth if it were flat?", "Should I feel guilty rejecting someone?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Great Basin Desert?", "What are procedural programming paradigms?", "What are the good benefits of Jumping Castle?", "What's a good way to promote an Etsy shop?", "Why USA supporting pakistan?", "What is the best interview question ever?", "Will Muslim population overcome Hindu population in India in future?", "How do I get rid of infidelity?", "What was your good deed for today?", "What are the finger names in our hand? How were they determined?", "Is creating satelite blogs and posting SEO-friendly posts considered black-hat SEO technique?", "How do I get my first B2B SaaS startup customers?", "What is it like to face American forces in combat?", "What is the best beginner telescope?", "How do I learn how to implement algorithms and data structures in C++?", "What can I do to stop over thinking?", "What can be added to vanilla ice-cream that most would imagine as appalling, but actually is not?", "How do I remove another Google account from my Android?", "What is the best way to stop terrorism?", "What is an intuitive explanation of Eulers identity?", "Why is the US Women's National team so successful compared to the men's team?", "Are there lot of Mexican women that are attracted to East Asian men (Korean, Japanese, Chinese)?", "How is Donald Trump a better choice than Hillary Clinton?", "Which Indian debit card works for Neteller?", "What is the most efficient way to make money?", "How Do I become a product manager?", "Do you think Donald Trump or Hillary Clinton will be the next president of the US?", "How can I make friends on Twitter?", "How can I fight against laziness?", "How do I post a question in quora?", "Why do so may people ask questions on Quora that can easily be found by a simple Google searh?", "What are the best ways to invest money?", "What are best websites to learn programming concepts?", "Is there an impending cure for Male Pattern Baldness?", "How do you earn money on Quora?", "What are some good websites for book reviews?", "How do I stay motivated?", "Is the U.S. ready for a female president?", "If there is no god then where did the idea of god come from?", "What is difference between patriotism and extreme nationalism and racialism?", "What does Sauron look like?", "Where can I get an exceptionally affordable price in Sydney for property transaction?", "Which is the book for C language?", "What evidence would be best to scientifically prove the existence of ghosts?", "What is the best way to get bitcoins for Free?", "What are you scared of? Why?", "What happens to the Indian students trying to pursue Masters of PHD in USA, now that Trump is the president?", "Why some airplanes not equipped with a ram air turbine?", "How is it like to have a huge penis?", "How should I start learning Hadoop?", "What are questions which have no answers?", "How do I impress girls?", "Is India's GDP real or not?", "How do we time travel?", "Does Gary Johnson have any chance left at winning the presidency?", "What are the pros to study medicine in Ukraine?", "What should I do to get more traffic on my blog?", "Is sex necessary in a relationship?", "When does love turn into obsession? How does one differentiate between the two?", "What is the best way to download YouTube videos for free?", "What is ad exchange?", "Is Brazil a good place to study for students?", "How do I disable screen overlay?", "What are some of the Nostradamus predictions which actually occurred in history?", "What is the difference between a substance and a mixture?", "What will be the implications of banning 500 and 1000 rupees currency notes on Indian economy?", "How do metals react with bases?", "What is with Samsung?", "Does Hillary Clinton really want to start a war with Russia?", "How do l improve my communication skills?", "What's the best treatment for hair loss?", "What are leguminous plants? What are some examples?", "What are your new year resolutions for 2017?", "Give names of some of the best horror movies?", "Is Kerala over hyped as being God's own country?", "What is the best way to stay organized?", "How does a projector project black onto a white screen?", "What's the best way to get back to sleep if one wakes up in the middle of the night?", "What is a recognized institute to learn German in Mumbai?", "whats your opinion about Britain leaving the EU and brexit", "What are the minimum requirements to enter MIT?", "Does Better healthcare reduces the rate of human evolution?", "Why are some people more intelligent than others?", "Which is the best korean drama of all time?", "How should one best prepare for IAS examination?", "What is the latent heat of a fusion?", "Why do certificates do not have photographs?", "What programs are used to make the first programming languages?", "How dangerous is diabetes type 2?", "Does Gary Johnson have a chance?", "What's the best way to break up dog fights?", "Is our PM Modi doing the correct thing with 500 and 1000 Rs notes?", "What is the meaning of life? Whats our purpose on Earth?", "What can I do to lose 20 pounds?", "How do I apply for internship in BHEL?", "Which is the best problem book in quantum field theory?", "Will there be any problem if both the husband and the wife are of the same blood group (A+)?", "What's the best age for marriage?", "Why do people keep buying Apple products?", "Which technology is used in the current run metro train in mumbai?", "College and University Admissions: What are my chances of getting accepted into an Ivy League school?", "Can I run a half marathon in 2 weeks with shin splints?", "Whom do you want as next president of India?", "How do I learn spoken English?", "How was your UPSC civil services interview experience ?", "What will it take for Einstein's Theories to become Laws, just as Newton's?", "Can I charge my Ambrane 13000 Mah power bank with a 2 Amp charger even if it is mentioned 1 amp on the device.?", "Can mental illness cause physical illness?", "What are biotic and abiotic components?", "How does a capacitive touchscreen work?", "What are the demographics of Quora users?", "What is the best monitor for a MacBook Pro?", "What should I do after graduation? Graduation", "What is you favourite food?", "How is the GBO course of SRCC?", "What are the safety precautions on handling shotguns proposed by the NRA in Washington?", "What is the best way to earn money while doing engineering?", "What is required to get into MIT?", "How can I install Kali Linux over windows XP on Sony notebook b100?", "What keeps all the 8 planets in a planer orbit? How come the planets not loose their plane?", "What are some interesting facts about Music?", "What are the similarities and differences between China and Japan?", "How much medical evidence is there in support of the claim weed causes cancer?", "What was the importance of the Battle of Somme?", "Who is the most over-rated Bollywood actor/actress?", "What are the best ways to concentrate for study?", "I want to travel the world, how can I make it possible?", "If humans suddenly disappeared, what would happen to our planet?", "If the universe is everything, and scientists say that the universe is expanding, what is it expanding into?", "What is the best business school in India and why?", "What vegetarian foods are high in protein?", "What percentage of questions on Quora have no answers?", "What is your biggest hopeless regret?", "Who is voting for Donald Trump?", "Any ideas on what to do if I'm bored?", "If your spouse and baby were drowning but could only save one, whom would you save?", "What is the point of answering questions on Quora?", "Why at times life feels so boring?", "How could I fix my sleep schedule?", "What is your opinion about Greece?", "How do I become Mutual funds distributer for all company mutual funds?", "Do girls really fall in love?", "What is the best in ear headphones to buy under RS. 1000?", "How will you know you love someone?", "What is this warning image of a child holding a piece of kitchen paper against its head supposed to mean?", "What kind of applications can be developed using SAP HANA?", "What is your review of Dangal (2016 movie)?", "What is that song which gives you goosebumps?", "\"What is motive behind the \"\"surgical strike\"\"?\"", "Can the congenitally deaf read and write? If so, how do they learn it?", "How would I decorate a bedroom with a 1980's theme?", "Can sound waves be polarized just as light waves?", "How can I quickly get rid of belly fat as a male?", "How can I become a detective in India?", "Who is the Best dermatologist in Agra?", "How can I upload any picture on Google images?", "How did you discover you were gay?", "Which car is the best, Honda City or Hyundai Verna?", "Why do you downvote answers?", "Why is my period 11 days late and how probable is it that I'm pregnant?", "What is molecular orbital method?", "How do I gain back self esteem after my boyfriend cheated?", "Why are babies so cute?", "Is America still the land of the free?", "Does Louis Vuitton burn their unsold bags? Is there a proof?", "Is diversity a good thing?", "How much does a full-arm tattoo cost?", "What is the mechanism that causes people to yawn when they are bored?", "What does it mean when your question has been collapsed on Quora?", "How do I get cheap air tickets in India?", "How do you know if a guy likes you?", "In a cinema house, which arm rest is yours and why?", "Whom should one follow on Quora? Why?", "Do we get money if we answer the questions on Quora?", "How can I earn money using YouTube?", "Which is the best engineering college in gujarat?", "Are indoors have much thinner air than outdoors?", "How do I block someone in Quora?", "How can I get out of my comfort zone and be myself at the same time?", "What are the easiest ways to test the milk purity at home without a lactometer?", "What should teens do after they sexted?", "\"Which language is \"\"The Universal Language\"\"?\"", "What will be the effect of banning 500 and 1000 Rs notes on real estate sector in India? Can we expect sharp fall in prices in short/long term?", "Which is the best site to download movies?", "What was it like to learn Dutch as a native English speaker?", "How can you tell if you're a narcissist?", "Why is it bad to be proud of being white?", "Where and how can I find best hotel in Bhopal?", "What is on of the best thing you will ever get in your life?", "How should I prepare for a job interview?", "Have you been abducted by aliens?", "What could cause a person to vomit white foam?", "Is it true that black money helped Indian economy during global recession?", "How do I concentrate and study for longer hours?", "What are some good places to learn mountaineering in India?", "Can time travel ever be possible?", "Where is Castilian Spanish spoken and how is it different from Latin American Spanish?", "How do I teach myself to become a penetration tester?", "Is there any proof for the existence of extraterrestrials?", "Do dating apps really find a date for you?", "What are leguminous plants? What are some examples?", "How do I find people who are smarter than me?", "What are the most followed topics on Quora in 2016?", "What happens when you merge questions?", "Should I stop loving someone who doesn't love me?", "Why should the coastal power plants must incorporate with (FSD) Flue Gas Desulphurization plant?", "How do I learn Spring Framework? Help?", "How can I solve rubix cube? Is there any formula for it?", "Who is the most beautiful person (physically or personally) you have ever seen?", "Why does gst bill is important?", "What is the role of a software engineer?", "I forget my Facebook account password and I also can't access to the email address provided, can I reset my password?", "Asking for a Raise?", "How can you speak and learn fluent English like Karan Johar?", "What are your thoughts about female gamers?", "What is your New Year Resolution for 2017?", "Is it worth upgrading from the Xbox One to the Xbox One S?", "Do sociopaths or psychopaths ever feel self-conscious?", "What is the best way of studying?", "What will government do with the old 500/1000 notes that is being deposited in the banks everyday?", "If Donald Trump stood in the middle of 5th Avenue and shot someone would his followers still adore him?", "How do you see who views my Facebook?", "Can I lose upwards of 30 pounds in 3 months with a good diet and consistent workout plan?", "How long does it take for a dead body to float to the surface after drowning ?", "Is a world war going to happen?", "What are the best new products in technology that people don't know about?", "Who's caught Ditto in Pokémon GO?", "How can I get a complete list of all old Gmail accounts in my name?", "What was the universe before Big Bang?", "What is the health condition of Jayalalitha?", "How do I know if my best friend(she) loves me and has not realized it yet?", "What is the function of the oil in a transformer?", "What is one thing you would never do?", "I never signed up for this Quora account. How do I delete this account?", "What should I do to improve my questions on Quora?", "Why does one feel sleepy during boring lectures? Which part of our brain is responsible for this?", "What is the easiest and painless way to commit suicide?", "How do you tell someone you have to be around a lot every day that they need to wear deodorant?", "I really like this girl for about 2 years long but she already has a ''boyfriend''.. what should I do?", "What exactly is creative writing? How can I write creatively?", "Is avast better than kaspersky?", "What is the benefits of reading?", "Why Indian government abruptly announced the demonetization of 500 and 1000 rupees currency?", "What is the possibility of war between India and Pakistan due to terrorism?", "How much healing power does music have?", "Why is my phone not connecting to my home Wi-Fi?", "Why do so may people ask questions on Quora that can easily be found by a simple Google searh?", "Can laxatives help weight loss?", "Why are all my questions on Quora marked needing improvement?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Bataan?", "How can I overcome boredom?", "What is the difference between an invention and a discovery?", "Can you suggest how to plan Goa trip for 4 days?", "How should I prepare for npcil?", "Can we time travel anyhow?", "How do I get revelations from God?", "What are some good lawyers in Rapid City, South Dakota area?", "What herbal medicine is good for weight loss?", "Does karma always work?", "Is it depression or hormones?", "How can other people's WhatsApp conversations be read without having any physical access to their devices, and with only the knowledge of their mobile numbers?", "What are the top 10 websites you can't do without visiting in a day? And Why?", "Why have I become so quiet?", "How do I lose weight?", "What are the differences between Chinese and western cultures?", "Can a person change from being introvert to extrovert?", "What is purpose of life?", "Which is the best English song?", "Why all planets are circling the sun in the same direction?", "What is the difference between a sea and an ocean?", "Which are the best countries to visit?", "What is the foreign policy of the United States towards India be if Hillary Clinton were elected its president?", "What are coral reefs? How are they formed?", "Was Charles Darwin an Illuminati?", "What is the best travel hacks? Please comment?", "Can a brain transplant be done?", "What is the reason behind discontinuation of ₹500 and ₹1000 notes?", "If we sent a scientist back to the Stone Age, how many years would it take them to build a computer?", "What is the right procedure to make green tea?", "Has Donald Trump ever committed a crime?", "What are the legitimate ways to earn money online?", "What are some of the great coincidences of history?", "How do I generate calls for tech support?", "What is the solution of Kashmir problem?", "Can someone read my hand and give predictions?", "How can I get an .edu email (without being in school)?", "How did the dollar become a global currency?", "What are the safety precautions on handling shotguns proposed by the NRA in Vermont?", "How to gain weight ?", "What is a ruby laser?", "How would you create a clean room?", "What is self confidence?", "Is there such thing as reincarnation?", "What is the best chinese movie?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Kuril Islands earthquake in 1963?", "Should I buy a used rental car?", "How can I overcome my stutter and speak fluently and confidently in public settings?", "Has modern medicine and technology eliminated Natural Selection in humans?", "How is the life of ground duty officer in IAF?", "\"Quora keeps saying that my question was \"\"marked as needing improvement\"\". What does this mean and how can I fix it?\"", "How can I make money online without spending money?", "Which is the best earphone with good mic quality under Rs 1000?", "What can I do to increase penis size?", "What’s the difference between an annuity and a pension?", "What are the differences between paracetamol and acetaminophen?", "Is scrapping old 500 and 1000 rupees notes and releasing new 500 and 2000 rupees notes a permanent solution for eradication of black money?", "What are free electrons?", "What is going to be the next big social network?", "Why is the Indian government producing 2000 rupee note as it can be easily used for black money?", "Does a 3 of a kind beat a straight in poker?", "What are the unbiased views of Pakistan citizens in the light of Uri attack?", "How can I improve my communication skills specially pronunciation skill?", "What is the best way to improve stamina?", "How to prepare for CA Final exams?", "Why do you love to dance?", "What is infinity raised to the power infinity?", "How did you learn to speak English?", "How can Vision fly?", "How we can post in Quora?", "How do I get jobs at INTEL?", "Is Donald Trump the 666 Antichrist?", "What are some best practices for starting a podcast?", "What is the best gift you have recieved from someone?", "What is the meaning of orthogonality in signal processing?", "What are the similarities between bicarbonate soda and baking soda? What are their differences?", "How can I make money with YouTube videos?", "What can I do to recover lost data?", "How do you know if you are in love or just limerice?", "What are some study hacks to study effectively?", "Why did Boeing not transform their 747 into a double decker aircraft?", "Is there any possibility of India going to war with any country soon?", "How can I install Mac OS in my HP Laptop?", "How does eukaryotic and prokaryotic cells differ?", "How can I get rid of pimples all over my face?", "Why's playing snooker by myself (with other people playing) on other tables different to playing on a table with just myself?", "What are the home remedies for acidity treatment?", "Why should someone buy an iPhone?", "What are the easy ways to earn money online?", "How shall I stop watching porn?", "What is the difference between digital and analog?", "What are the possible implications of Demonetization of 500 and 1000 rupee notes?", "How do I lose weight faster?", "Has anyone ever seen a ghost in real life?", "What are your New Year resolutions for the upcoming year 2017?", "How can I deal with depression and low self-esteem?", "Which book should I refer for political science and international relations as an optional for cse mains?", "Which is more developed, India or Pakistan?", "What are mechanical engineer seminar topics?", "Where does ISIS get its weapons?", "Which is better CA and IT?", "When did crop circles first begin to appear?", "What is Yahoo! Answers, and how does it differ from Quora?", "What is the surgical strike?", "What are some good start up ideas with very little capital?", "What are the pros and cons of a track saw vs a table saw?", "Why is Quora biased against Donald Trump?", "Who will win between a war between USA and Russia with both parties using conventional weapons?", "Which is the best mobile below 15000?", "What are ways I can make money online?", "How much money require to etios car attach Ola?", "I have a MacBook air. I want to buy a printer. Which printer should i buy?", "Colud we create robots that can multiverse travel and go through worm holes for us and how?", "Did a certain answer on Quora change your life?", "What is your experience with an arranged marriage? Was it good or bad?", "How close are we to world war?", "What are some mind-blowing technologies tools that exist that most people don't know about?", "I am looking for website promotion. How can I find Best SEO company in Delhi for my website promotion?", "What would you change about Quora?", "How do you make Google your homepage on a Mac?", "Are there any tips for growing taller at 16?", "What can I do to earn money lot without working hard?", "What are some painless ways to commit suicide?", "Where can we find about emotional support animal letter?", "What do you think of the new MacBook Pro that was released late 2016? Is it worth buying?", "How can you improve your communication skill?", "Who is responsible for corruption in India and why?", "Are we inside a black hole?", "If you were granted with a one way trip from a time machine, would you go back to the past or into the future?", "Is the aging rate slower in space?", "The prime factorization of intezer N is A x A x B x C, where A, B and C are all distinct prine intezers. How many factors does N have?", "What is procedural language? How is it best used?", "How can I access email account from anywhere?", "What's the definition of a sociopath?", "What is the saddest thing you've ever seen on TV?", "What are the best coworking space in Bangalore Indiranagar?", "If I want to start my own business, but there are already few companies available to sell there franchise of the same business, which is better: start it myself or buy a franchise?", "Which is the best beer in India?", "Who is a front end web developer?", "Why do people ask stupid questions on Quora that could be easily answered by Google?", "What are some of the best video games of all time?", "What would you choose, if you have to choose between your family and the love of your life?", "What are the best lotions for tanning beds?", "How do you get detergent stains out of clothes?", "What outdoor activities do you like?", "Who is better for India: Donald Trump or Hillary Clinton?", "What would happen if a neutron star collides with earth?", "Is there life after life?", "Does the Indian education system need to change and why?", "How can I best prepare for a divorce?", "What is your opinion on Kylo Ren?", "Why do some people ask questions on Quora that could easily be answered by using a search engine?", "\"How do you sign up for \"\"My Fair Wedding\"\"?\"", "How many questions are asked on Quora each day?", "If light is a wave, then what is the medium?", "How do I increase organic traffic to website?", "What is your review of the Westworld season one finale (“The Bicameral Mind”)?", "What is the best workflow process from web design to web development using Adobe muse?", "What is a pioneer? What are some pioneers and their contributions?", "How do I check someone's private Instagram without following them?", "Can I make thousands a month playing poker?", "How do I begin to understand human behavior?", "Does milk flush the meth out of your system?", "Is Game of Thrones really just a warning that the next ice age (winter) is coming?", "Which country is the best for tourists?", "What are the best comedy movies released in 2014?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Port Arthur?", "What are the things that one should learn in the period of articleship?", "What is the best book for learning phyton?", "I have sent some contact details to my client, he says he will call those people and check. what should be my next email to him?", "How do I improve my overall native English language?", "What should I do to write a magazine?", "Is The Diabetes Destroyer a scam just like Diabetes Free?", "What is some advice to a 17 year old who wants to become an entrepreneur (probably in tech)?", "What are most sexiest movies?", "Can dogs eat peanut butter? Are there any risks involved?", "What is the best way to do marketing online?", "What's the quickest and most painless way to commit suicide?", "Where can I watch the season 5 of Pretty Little Liars online for free?", "Is there is any connection of our dreams to our lives?", "Do Iranians and Arabs get along well?", "Which are the best websites to learn the C programming language?", "How do I learn to take criticism better?", "I want to get good score ielts. How can I get?", "Why market segmentation, targeting and position are important to marketers?", "If Trump has nothing to hide, then why doesn't he release his tax returns?", "Is this move of banning 500 & 1000 Rupee notes right?", "How do I hack in Clash Royale?", "What is/are your New Year resolutions for 2017?", "How do stop smoking?", "How are the opportunities for Indians to become doctors in Germany?", "What are the time slots available in CAT 2016?", "How do you delete a question you asked on Quora", "What is the biggest mistake you ever made in your whole life?", "Which Android apps do you wish existed?", "What is the difference between front end and back end development?", "Who is the most beautiful woman of your country?", "What's true love?", "Which one is better: Linux or Windows?", "Does swimming increase your height in twenties?", "How do web apps with lots of users developed with Ruby on Rails perform?", "Are people answering on Quora lonely and/ or unemployed?", "What is the meaning of Quora?", "Can anyone learn to cook?", "Which is the best way to learn data structures & algorithms from beginner to advanced level?", "Why do people ask questions on Quora instead of Googling it?", "Will GST change Indian economy?", "How do I become successful in my life?", "What are logical fallacies?", "Hypothetically if Al Gore won would the world be a better place than it is now?", "How do I become extremely extrovert person if I am an introvert person?", "Why did the 2008 financial crisis occur?", "How can I become more focused on school?", "What are the safety precautions on handling shotguns proposed by the NRA in South Carolina?", "How do I write a good comparison essay?", "How do I improve my English language?", "What is digital marketing exactly?", "Why are the keys on a keyboard not in an alphabetical order, i.e., from A to Z?", "I'd like to learn to make games using Unreal Engine. What is a good starting point?", "How do people still think the Earth is flat even though it's proven wrong?", "How do you potty train a 4 month old puppy?", "Statistics (academic discipline): What is the dif between confirmatory factor analysis and exploratory factor analysis?", "Could time travel be a real thing? Could it be scientifically explained?", "\"What is \"\"Gitanjali\"\" by Rabindranath Tagore about?\"", "What is the most probable cutoff for KVPY SA 2016?", "How do I study for IPCC group 2 in two months?", "What are examples of herbivorous animals?", "What is the difference between scripting languages and object oriented programming languages?", "Where can we find the best IFB air conditioner repair center in Hyderabad?", "How should I prepare for GATE?", "How are ADHD and Autism different?", "What is the best way to start learning C language within a month?", "How do I become a business analyst?", "Will I be successful without educations?", "Why Wikipedia doesn't filter it's content like Quora? A lot of unwanted information is creeps up many times?", "Where can I buy custom printed lanyards in Melbourne?", "Is dark/vacuum energy infinite because the expansion of the universe is infinite and more and more of it is created as the universe expands?", "How can I ask questions over here?", "How do I avoid alcohol?", "What will be the future of LGBT in india?", "What are some tips you would give to an 8th grader going to high school?", "\"Which \"\"is\"\" the best pair of in-ear earphones under Rs. 1000?\"", "How is it to be an attractive woman?", "What are some ways to kill boredom?", "How do I make money from home?", "What things do you have to do to become an actor?", "What songs should I listen to during my workout?", "What are the best luxury e-commerce websites?", "Is it possible for one to run out of questions to answer on Quora?", "Which best smartphone in world?", "How do I get pregnant just after my periods?", "Why did Arnab Goswami resign from Times Now?", "What causes fluttering eyes?", "How is discontinuing 500 and 1000 rupee note going to put a hold on black money in India?", "Did Hillary Clinton lie under oath about classified emails at the Congressional Hearings on the Benghazi raid?", "What is the best advice you ever got?", "Quora: How do you post a question on Quora?", "Why sex is so important in a relationship?", "How do I lose 38 pounds in a year?", "What are some of the best animated movies?", "Is Mark Zuckerberg an atheist?", "What is the best way to start learning algorithms for a non-programmers?", "What are examples of reflexive and emphatic pronouns?", "Where I can get the inspirational music?", "How can I get self-esteem and confidence?", "Which app is safe and secure for money transfer?", "How can ı improve my speaking skills in English?", "What is it like to work as a fresher at TCS?", "How do satellites stay in orbits and avoid each other?", "How would demonetizing 500 and 1000 rupee notes and introducing new 2000 rupee notes help curb black money and corruption?", "What are some tips, ideas and suggestions on generating a passive income stream?", "Can we prove that god exists, by logic?", "Why do people hate feminists?", "What are certain things that makes Indians happy?", "How does one switch careers?", "How can one become a good writer?", "How do I change the format of any file?", "Why do people ask question on Quora that can be easily and definitively answered by Googling?", "What pushes people to suicide?", "How many air craft carriers does India have, and are they new or refurbished?", "How do I focus on a writing task (as a profession) when mind doesn't want to stay focussed at all?", "How can I prepare for SSC CHSL exam?", "What is a good song to lyric prank your best friend?", "Can I upgrade my laptop CPU?", "What are some online ways of earning money?", "What are some of the dark sides of Indian Army?", "Is there any TV show similar to House M.D?", "Why do you live your life?", "Can a limited liability company (LLC) launch a Kickstarter campaign?", "What free website can teach me hacking?", "What is the treatment for constipation?", "What is the procedure for getting admission to the London School of Economics?", "What comes first, mathematics or physics?", "If universe expands without limit and dark/vacuum/gravitational energy is created with it, is potential energy (the energy that can be created) infinite?", "Which is the best programming language for a beginner to learn?", "How can I make six pack abs? Which exercises should I do and what should be my diet?", "Are vacuum fluctuations energy in vacuum? Are these virtual particles? How do we know there's this energy if they didn't exist? Do they really exist?", "What is the best laptop under 60,000 INR?", "How does the ban on 500 and 1000 rupee notes helps to identify black money and corruption?", "What is the best site to learn how to code in java?", "Where can I get Pokemon Go Level hack?", "What are the difference between 32 bit and 64 bit processor?", "What time period does La La Land movie take place?", "What is the best way to lose weight and not gain it back?", "How I can improve my English communication?", "How do I prevent myself from sleeping during lectures?", "If I were sunny Leone then what could I do?", "How can I overcome fear of death?", "What are the best option after completing my B.Tech in mechanical engineering?", "What is good way to spend a Sunday in Bangalore?", "How can Big Data affect racism?", "What are the best WhatsApp display pictures you have ever seen?", "Is cunnilingus harmful?", "\"How do you know your design is \"\"done\"\"?\"", "How can you determine the specific gravity of concrete?", "How can I make my laptop run faster?", "What is the best iPhone app and why?", "What's the feeling of having sex for the first time?", "Why does time slow down when we approach the speed of light? Does time really stop at the speed of light?", "Which is the best movie from 2016?", "What are the most annoying questions you see on Quora?", "What do you think is Forex Trading so much risky?", "180*0::2.5.1::4.9*1.9 ^! |! Avg Antivirus Tech Support Customer care Service Number?", "Does J Jayalalithaa deserve Bharat Ratna?", "How can I remove burn scars?", "What will happen after I die?", "Which is the movie that changed your life and why?", "Suggest Books which 'll change your life?", "What should I do to earn money online?", "What is the best food for a 40 day old Labrador puppy?", "What are some of the most anticipated movies of 2017?", "Which is the best way to learn data structures & algorithms from beginner to advanced level?", "How do I get rid of acne on my face? I workout daily and wash my face twice a day.", "Is going to college really worth it or just a waste of time?", "How do I stop a German Shepherd/Border Collie mix puppy from chewing my shoes?", "How do I improve my aptitude and reasoning skills?", "How do I edit a video?", "Why is India trying to sabotage CPEC?", "Which came first, the chicken or the egg?", "What is the best gift you have ever given?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Tohoku earthquake in 2011?", "What will be effect on stock exchange of India after ban on 500 and 1000 note?", "Can you wear Ugg Boots out in the snow?", "What are all the govt jobs for mechanical engineering?", "What is the difference between GMO and selective breeding?", "What's your new year resolution for 2017?", "How do I get back with my ex girlfriend?", "Who are the best investors and traders on Quora?", "How Can I immigrate in Canada?", "Who from Draper Fisher Jurvetson led the firm's investment in Theranos?", "Why is nobody answering my questions in Quora?", "What are the best Gate exam Books for mechanical engineering?", "What is your favorite animal? Why?", "Do you think that the new MacBook Pro (2016) is worth it?", "Which is the widely used file system?", "What is the CCNA exam?", "If there will be a war between India and Pakistan who will win?", "About the country-Japan?(in chinese)", "Why are most mechanical engineers single?", "What are the biggest success stories from Shark Tank?", "Realistically speaking, what would happen to the USA if Donald Trump wins Presidency in the 2016 elections?", "Can Goku pick up Thor's hammer?", "What should be my exercise routine to lose weight or to get a good shape?", "What are the symptoms and repercussions of bipolar disorder?", "How does one improve his or her writing?", "How can someone become rich?", "What are Trump's policies?", "Which is the best joke you have ever heard?", "Daniel Ek: When will Spotify be available for Indian customers?", "Which are the best Bollywood songs ever?", "How can I transfer my whatsapp chats from Android to iOS?", "Can I look for a name of a person with a picture?", "How can I save the world?", "Why does India have more pollution than China despite having less industries?", "Is there really a cure for all cancer?", "How can I become a video game designer or developer?", "Which is your best Korean Drama and why?", "What are some of the greatest novels ever written?", "How can I stop my hair fall?", "How can I find out what I really want to do with my life?", "Can the passport application be cancelled online?", "I'm 12 and at 60 kg and about 144 cm how do I lose weight?", "Which is best digital marketing course?", "Can any state secede from United States?", "What does it feel like to be deaf?", "Will international college students be negatively affected if Trump becomes president?", "How Arvind Kejriwal has made Delhi a better place to live in?", "A guy said he had a crush on me, but when I asked him if he wanted to be my boyfriend, he said he needed time to think. What now?", "Why is e important in mathematics?", "How do I get internship at IITs (UG student)?", "Is there a way to block certain sites in Chrome on Android?", "How not be horny?", "What are some characteristics of eccentric and concentric contractions?", "Which is the best website builder online?", "\"What is the interview process for the position of \"\"Technical Recruiter\"\" at Uber?\"", "What do Israeli people think about Pakistan?", "Why do so many religions/cultures/beliefs have a flood myth?", "What are the positive outcomes of global warming?", "How do I personal message on Quora?", "What is the best amateur sex site?", "How did you get away with murder?", "What are some ways to start a business?", "How can I concentrate and focus on my studies?", "Who are the best mystery writers?", "How do I make money with YouTube?", "What are the advantages and disadvantages of brain drain?", "Which are the best courses offered by IIMs?", "How can I improve my english language skills? I am basically from gujarati background.", "How can I catch my husband cheating?", "Why did Hillary supporters start riots at Trump rallies?", "How can I increase D1/D2 dopamine receptor density?", "What are the areas (other than audit and taxation) which a Chartered Accountant can explore?", "Who invented the first gun?", "How can I improve my spoken English ability?", "What is a pantograph? What is it used for?", "What is the best laptop under 60000 Indian Rupees?", "Which one should I buy: Canon 700D or Sony Alpha 58?", "Why do people try to ask silly questions on Quora rather than googling it?", "What is the meaning of LIFE to you?", "What are some of best Marathi books?", "How do I post something on Quora?", "Should India declare a war on Pakistan and Why?", "Versus: Who would win in a duel between Gandalf and Dumbledore?", "How can I get a Google AdWords certification?", "How can I start a conversation with a introvert girl?", "What are examples of atmospheric pressure?", "Is there an operation to make myself deaf?", "How can I know that I am in love with a girl?", "How can I control myself?", "What can be the medium budget to visit best places in Kerala for three members (2-3 days)?", "What does sex feel like for girls?", "How can I become a Google Adwords expert?", "How can international students get a student loan?", "How can I change the font style in the HTC Desire 816G knowing there is no font style in the settings display?", "What could be the possible conversation between Deadpool and Joker?", "What are the most important books ever written?", "How do I best find out IQ?", "What do you think about Indonesia?", "Why do flight attendants ask to open the window shades?", "The Indian government is banning the Rs. 500 & Rs. 1000 notes but it is coming up with the Rs. 2000 note. Will it not cause a generation of black money in the future?", "Who invented electricity first?", "I have scored 107 in SSC CGL 2016 tier 1gen category what r my chances of selection to tier 2?", "How can long distance relationships be successful?", "How can I block seeing a specific someone's answers on Quora?", "What are the best evidence for aliens existence? (Photos)", "How did the question mark (?) originate?", "What else should I do to quit smoking?", "What is article 370 in breif?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Bataan?", "What are some good things about Donald Trump?", "When was the first ever selfie phto taken?", "What is the history of the Israel and Palestine conflict?", "What are some must watch TV shows before you die?", "Were there any links between the Mughal and Ottoman empires?", "What is sensex? What is nifty?", "How do yo stop your Boxer/Pitbull mix from biting your furniture?", "Why do people bother to ask questions on Quora they could just google to get the answer?", "Is NDTV ban a violation of freedom of speech?", "What are the things about money and finances that one must know?", "Which is the best smartphone in India under Rs 15000?", "What are the best ways to lose weight?", "Cold World War 3 has began?", "What are some of the most popular open source C++ projects?", "What does it feel like to marry a nurse?", "Why is the suicide rate high in Japan?", "How I can improve my English communication?", "I lose my temper very easily. What should I do?", "Why do Rottweiler/Boxer mixes bark at mirrors?", "Is the universe expanding more than the speed of light? If yes then doesn't it break the cosmic limit?", "What is the best advice for a startup CEO?", "How does demonetization of the 500 and 1000 notes bring down the real estate price?", "What are some of the best Indian advertisements?", "How would demonetizing 500 and 1000 rupee notes and introducing new 2000 rupee notes help curb black money and corruption?", "What are the scholarships an MBBS student in India?", "Why do many people hate Mother Teresa?", "What is the best solution to the Kashmir conflict?", "How can I promote my YouTube channel?", "Which college should I take considering the factors: KMC Manipal or KMC Mangalore?", "Can anything exist without time?", "How do I improve my speaking?", "What can one do to improve sense of humour?", "Who is the best prime minister of India?", "How should I prepare for IAS now?", "Why is Quora asking me to edit 'my' question, which I never asked?", "Is there any scientific reason why women are not allowed inside temples or water plants during their periods?", "Why do evil things happen to good people?", "Is NDTV anti national?", "How do I gain weight at sixteen years old?", "Who might President Donald Trump appoint to their cabinet?", "Is there any possibility that the aliens are also living on Earth like humans?", "Why does my urine smell like tuna?", "Do women like to give blow jobs?", "How can I grow taller fast at 15?", "How do I make money off of YouTube?", "How do I lose weight without stopping?", "Does alien life exist?", "Which is the best way to learn data structures & algorithms from beginner to advanced level?", "What does it mean to be a true conservative?", "What are the best love story books?", "Do you believe in fate or coincidence?", "What are the main biological functions of lipids?", "What kind of mobile phones are the best for elderly people?", "What is cultural relativism? What are some examples?", "How can I become a listener in 7 cups app?", "How do I improve will power?", "What could I do with a math degree?", "Why do people hate Rajdeep Sardesai & Barkha Dutt so much?", "How do I stay healthy as a vegan?", "How do I make money starting a blog?", "How do I kiss close?", "Why do men love boobs (irrespective of big or small)?", "Where can I find angel investors for an invention?", "How good is MS in Civil Engineering at Rensselaer Polytechnic Institute?", "What will happen if Pakistan will be declare as a terrorist state?", "Why does no body answer my question in Quora?", "How can I delete Facebook Messenger account created with phone number (without Facebook account)?", "What are social goals? What are some examples?", "How should I prepare to get selected for Google summer of code.?", "How would I start a drone business?", "What do you think of Russian troops arriving in Pakistan for a joint military drill? Is this the biggest failure of the Modi government?", "What are the three most important contributions of India to the world, and why?", "Why is Saltwater taffy candy imported in Laos?", "How do I lose weight in a short time?", "How would you describe your life before and after using Quora?", "What does negative reserves in the balance sheet tells ua?", "What is source of income of Facebook?", "Where can I find the best quality cupcakes in Gold Coast?", "How do I learn playing a guitar easily?", "How can I connect to VC firms or Angel Investors.", "What is the healthiest food?", "What is the expected cutoff for KVPY 2016 SA -stream 2016?", "Which algorithm is used to compress all the types of files (i.e image, text, audio, video files)?", "I have been turned down my whole life. Why should I help fighting for women's privileges?", "How do i get my birth cerificate?", "What does it feel for a male not to have a father?", "\"What will Google name their Android versions after they finish with the alphabet \"\"Z\"\"?\"", "Is World War 3 closer than it has ever been?", "Why isn't Hillary Clinton in jail?", "What are the best places to visit in Kanhangad, Kerala?", "What major should I pick if I want to go to medical school?", "What is the difference between Continental and Analytic philosophy?", "How can I improve my spoken English?", "How can someone make more friends?", "Why do we forget what happens in our dreams the following morning?", "Why India fails to get medals in Olympics?", "How do I get rid of cockroaches in my house?", "Which will be better for me to be a good software developer, learning java or learning python?", "Which are your failure stories?", "What are some tips for making more money?", "Have you ever been in a situation where you thought you might die? What happened and what did you do?", "Why is it too hard to wake up in the morning?", "How can I increase my intelligence?", "Why did Hegel and Sartre commit a logical fallacy when they said that ‘nothing is something?’", "What scientific proof supports parallel universes?", "What are meet up events?", "In a search engine, given partial data on what the user has typed, how would you predict the user’s eventual search query?", "Where can I find angel investor for my website?", "Is the approval of GST a boon, or a bane for India?", "How do I make $10000 per month?", "How do I clean my ears? How often should it be done?", "How do I find out if I have a warrent?", "How difficult is it for a dentist to become an IAS officer?", "Is India ready for cashless economy?", "How much do I need to earn to live in New York City?", "How do I talk less?", "What was the scariest experience you ever had?", "Can light still exist without the source?", "What is the best way to promote your art?", "Do you think NASA invented thunderstorms to cover up the sound of space battles?", "Would Donald Trump or Hillary Clinton be a worse president?", "What are the creepiest dreams you ever had?", "Why is my period 8 days late?", "What are some of the best economic books?", "\"What are \"\"mind candy pills\"\"?\"", "Is coaching necessary for cracking the GATE?", "What's the best site to learn German?", "What are the Hollywood movies that are a must watch?", "How do I prepare for the IAS exam at home?", "What are some criticisms of cultural relativism?", "My laptop works slow! How to make it faster?", "How do I lose 20-30 kg?", "How do I start blog and earn money from it?", "What are the benefits of meditation? How do you meditate?", "Is love important in life?", "What do you need to be happy?", "Can the European Union survive Brexit, or will it break up?", "What is the easiest way to get followers on Quora?", "Do you believe in the afterlife? If so, what do you think it will be like?", "What character do you identify the most with?", "How do I become an investment banker in India and also abroad?", "How does love differ from lust?", "How would I monetize my blog?", "How do you create a Pinger account?", "What effect will the FBI announcement have on the Election?", "What would the world be like without electricity today?", "Which is the best pension plan in India?", "What are the uses for celery salt?", "What is the fastest method for learning a foreign language?", "What is our favorite Drake song and why?", "What will be the impact of banning Rs. 500 and Rs. 1000 on the Indian economy?", "What is one of the best short stories?", "Why Cyrus Mistry has been replaced by Ratan Tata?", "How do men last longer in bed?", "How is US president Donald Trump important for India?", "What would happen if a husband and wife have the same blood group?", "How would demonetizing 500 and 1000 rupee notes and introducing new 2000 rupee notes help curb black money and corruption?", "Can height be increased after age 21?", "Can Trump revoke the same-sex marriage law?", "What is the current post study work visa options for undergraduates in the united kingdom?", "What is the minimum penis size a 'size queen' prefers?", "What's the best and most accurate way to check my IQ online for free?", "How safe is rain water to drink?", "What is the last thing you want to do before you die?", "Do you believe Donald Trump can make America great again?", "Why do some people wake up sweating in the morning?", "Do you support Donald Trump?", "What are you doing to enjoy life?", "How do I win a Nobel Prize?", "Will Hillary Clinton run for president in 2020?", "How do I stop daydreaming? And concentrate on reality?", "How should we manage time?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Banda Sea earthquake in 1938?", "What is the trick to maintaining long distance relationships?", "Can Obama run again for president 2016?", "Which is the best place to reside in India and Why?", "Is daily masturbation causes any hair fall?", "Which is the best laptop for gaming under 60k INR?", "How do senseless movies like DILWALE or HAPPY NEW YEAR earn an easy 100 crore+ in India?", "Have we ever had a Presidential candidate under investigation by the FBI before?", "Does fish count as meat?", "I want tomake a prototype for a project very similar to prey project for tracking laptops.Where do l start and which steps do l take?", "What is dark matter and why do scientists believe it exists?", "Is Whatsapp better than Facebook? How and Why?", "Why does the sun appear bigger during sunset?", "What are the best ways to improve English?", "Donald Trump is President, what now?", "Is it true that Arnab Goswami quit Times Now? If so, why?", "How did Doctor Strange (2016 movie) get greenlit? What's the backstory of how the movie got made?", "How do I learn or master the art of manipulation?", "What will it take to remove caste based reservation in India? Do you think Modi will do it?", "Why do people give presents/gifts?", "Why are sacraments important to the Catholic church?", "What are the guidelines and norms for villages for the provisions of different infrastructure facilities?", "How does one learn to think logically?", "Did India really carry out surgical strikes?", "What is similar to 4Shared?", "Is there any proof of the existence of aliens? Has anyone seen aliens?", "How do I reduce my weight?", "How I can buy Twitter followers?", "What is your favourite colour?", "How do I know my spouse is cheating?", "What is the easiest method to clean shave bikini area at home?", "What is the best food for golden retriever puppies?", "How do I learn competitive programming?", "Is there a way to see deleted Instagram photos?", "What is a psychology?", "How much equity should I get as CTO?", "What are the best development tools for a Java Developer?", "Why do we need antivirus software?", "How would you explain the law of demand?", "What are the odds of Trump becoming president?", "Which is the best way of living life?", "What is the Expected cutoff for KVPY SA stream 2016?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Tohoku earthquake in 2011?", "How do I post a question that was marked as needing improvement?", "Should India declare war against Pakistan?", "Why does my laptop often freeze?", "Can you still be pregnant with neg test and period?", "What is the best way to make sure your children grow up smart?", "How can a final year mechanical students apply for job in abroad?", "Who was the greater scientist: Sir Isaac Newton or Albert Einstein?", "Why nobody replies to my questions on Quora?", "What qualities should you look for when deciding whether or not to follow someone on Quora?", "What are the biggest challenges in the Philippine Advertising?", "How can I stop being bored?", "How does a CPU unit work?", "When will Apple release the next MacBook Air?", "Which is the best laptop under INR 60k?", "What do I need to learn to become a programmer?", "How can I hack somebody's Facebook account if that person is not added as a friend?", "What are the best quotes and sayings of Mahatma Gandhi?", "If you could wish for anything in the world, what would it be?", "What are the best C++ books?", "What's a good workout plan to lose belly fat?", "Why do people drive slow in the fast lane?", "Can you give me feedback on my YouTube channel?", "What are the best investment strategies?", "How can I control my emotions and actions?", "In Westworld, is Bernard a clone of Arnold?", "How can I best educate myself about the venture capital industry?", "Which are some of the most underrated hollywood movies?", "How can I make money fast and easy?", "Why Coimbatore doesn't have an international Cricket stadium?", "What is the right age for an Indian man to get married?", "What are some favorite recipes?", "\"Is demonetizing of \"\"500/1000 INR\"\" a permanent solution to curb Black Money and Corruption?\"", "What are the most interesting and mindblowing facts you know?", "What are some conspiracies that turned out to be true?", "What is the process in writing a novel?", "What does one grey tick mean in WhatsApp?", "How do I lose my face fat from before puberty?", "What is the difference between a SOAP API and a REST API?", "What's the easiest way to learn Java programs?", "Why is life so unfair to me?", "Why do women's pants ride up so much when sitting down? How do you prevent it?", "How can I increase my English skills (writing/speaking)?", "Can a student pursuing B.tech in EC work in CERN?", "How can I gain more followers on Quora?", "Why is Saltwater Taffy candy imported in Spain?", "What is JavaScript used for?", "Why do people fear change?", "How does babies think if they don't know any language?", "What is the best way to forget the past?", "What are the best project management tools or techniques for solo web designers/developers?", "What can I do to stop lucid dreaming?", "Why are people on this site so obsessed with IQ?", "What are good intelligent movies?", "How do I make a resume with experience?", "How does one move on?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Gibson Desert?", "Which is the best programming language for a beginner to learn?", "What happened to Malaysian Airlines 370?", "What does cloudy urine mean?", "Can I work on Facebook from my home?", "What is it like to live and work at Yakutsk, Russia?", "What impact does demonetizing the 500 and 1000 rupee notes will have on rupee’s value against other currencies?", "Why did Quora moderation collapse the answer?", "How should I prepare for GATE 2016 EE in 5 months to get a rank below 500?", "What is the happiest country in the world?", "As an engineering 3rd year student what should I start preparing for IAS exam?", "What can I do in Cancun?", "Why noble gases are monoatomic?", "How effective is scrapping 500 and 1000 rupee notes? Will it reduce black money?", "What are the differences between Chinese culture and western culture?", "Why is ZEE News so anti-AAP?", "What are the similarities/differences between testudine beaks and bird beaks?", "Does P = NP?", "Where can I get a PPF account?", "Do blackholes exist?", "What is singleton class in java?", "What is the most compelling evidence that aliens may have been to our planet in the past?", "What literary devices are used in Frankenstein?", "Do you know why the Europeans put the Australian Aborignals in chains?", "How can I think more positively?", "What can be the medium budget to visit best places in Kerala for three members (2-3 days)?", "How do I learn math?", "Why did the 2008 financial crisis occur?", "Are humans natural herbivores?", "What is the current scientific thinking on the cause of homosexuality?", "What is New Zealand famous for?", "Are there any websites that has similar functions as Quora?", "What would be a good idea for an Android app?", "What is the implication of free education in rte?", "My SIM card was lost and I found out that my Viber account is still active. How can I use my old number using my new SIM card?", "What are the benefits of circumcision?", "How can I stop my dog from humping my furniture?", "Indian government demonetized Rs 500 and 1000 notes but replaced them with 500 and 2000 note. Isn't this contradicting?", "What is a fun dinner party game?", "What is the best way to be more interesting?", "What are your views on India banning 500 and 1000 notes? In what way it will affect Indian economy?", "Can you get a divorce without a lawyer? If so, how?", "Why is talking to girls online about my fetish easier?", "I want to pursue a degree in finance. Which undergraduate course should I apply for after class 12?", "How do you develop a website from scratch?", "What are your favorite books?", "How is the density of bituminous macadam calculated?", "When was the tradition of Breast Cancer Awareness Month started?", "Why do I need to be 18 years old to do anything?", "What is a consultant and what do they do?", "How did you meet your life partner?", "What are some musical instruments that can be played with nails?", "How do I develop my problem solving skills?", "I'm 19 years old and want to start learning programming and coding from the zero . where and how do I start?", "What does Java do and do I need it?", "Is voodoo prevalent in New Orleans?", "Is Quora available in other languages?", "Do you regret getting a tattoo?", "Why are men cheats?", "Where is the Rs.99 store in India?", "Is Emirates a good airline?", "What are a list of amazing books?", "What will happen now that Donald Trump has won the elections?", "How can I surprize my boyfriend on his birthday without actually meeting him?", "Is it necessary to stand when the national anthem is being played?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "How will scrapping notes of 500/1000 notes bring back the black money in Swiss banks to India?", "How do Quora make money?", "How effective is scrapping 500 and 1000 rupee notes? Will it reduce black money?", "What will replace HTML and CSS in the future?", "Which is the best Smartphone under INR 15000 ?", "How do I become a good computer science engineer?", "Which is the best gaming laptop under Rs.60000 in India?", "What are some real life examples of karma?", "What are some well known and widely believed events in history, that most likely never happened?", "What are the best luxury hotels in Bhopal?", "Are LED light bulbs worth the money than CFL light bulbs?", "Why do many distrust Hillary Clinton?", "How do you improve your programming skills?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Great Victoria Desert?", "Is it bad form to thank someone for an answer on Quora, but not upvote that same answer?", "Where can I meet British people in Ontario Canada?", "What's a charter school?", "Do I need a college degree to become a ux designer?", "\"What are some of the best reply to the question \"\"Why should we hire you?\"\"?\"", "What career choice do I have after completing a B.Tech in mechanical engineering if I am interested in space research?", "How can I start a music band?", "What is the difference between a Republic and a democracy?", "What is artificial intelligence? What are the pros and cons?", "Which are some of the best performing penny stocks in India?", "How important is chemistry in a relationship?", "What is the best way to learn hacking in short time?", "Do you expect that Donald Trump will become the worst president in the history of the United States of America?", "How can I speak fluent english and get confident?", "What is Google Penguin?", "How do I prepare comprehensively for the UGC NET English literature?", "Which is easier to learn: Ruby on Rails or Django?", "One of the best movies you have ever seen?", "What is the most effective way to cook lobster?", "How does Quora avoid duplicated questions?", "How do you spy on Facebook?", "What is a stock market? What actually takes place in a stock market?", "What would happen to the event horizon of the two black holes when they collide?", "Why are Apple products so expensive and over-hyped among the public?", "Is Indian media worst in the world?", "What are some ways to become a good teacher?", "How are bits and bytes related?", "What are the top universities for computer science in Canada?", "How do make your hands soft?", "How do I prove ties to the home country if I am not working nor studying?", "What do people think of America?", "What is the best wireless internet service provider in India?", "What was the coal scam?", "What are some good animated movies?", "What are some good examples of the circuit breaker design pattern?", "Can a girl and a boy be best of friends?", "Why is Manaphy childish in Pokémon Ranger and the Temple of the Sea?", "How can I be sure people won't steal my idea during a pitch?", "Should I tell my parents I'm an atheist?", "Why is everyone on Quora obsessed with IQ?", "Is there any proof of the existence of aliens? Has anyone seen aliens?", "How do I stop smelling petrol?", "Do you really believe in God? And why?", "How do current autonomous vehicles work?", "What are the hottest IT startup companies in Mumbai?", "How will the new Star Wars movies be handled now that Carrie Fisher has died? Have they finished filming episodes 8 and 9?", "\"Is The \"\"Pokemon Ranger and the Temple of the Sea\"\" a problematic anime?\"", "What are some tricks to win a debate?", "What diet should I follow on a regular basis to get a flat stomach (not abs)? What are some regular exercises?", "Why do some people see conspiracy theories behind most everything?", "What is the white smoke behind a vehicle when it breaks the sound barrier?", "Can I start my business with no money?", "What your favourite movie?", "Why does Hillary Clinton lie sometimes?", "What do I do when my Gmail has been hacked?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Vallenar earthquake in 1922?", "Can you convince me to vote for Donald Trump?", "What is it like to be abducted by aliens?", "How could we know that we are falling in love?", "What are your views on ban of 500 and 1000 rupee notes in India?", "Which is the best laptop for around 80k in India (for gaming)?", "As a Chinese student, how can I learn English well?", "How can I get a job in Dubai if I am living in U.S?", "Why do Quorans appear to favor Hillary Clinton?", "What are the differences between transgression and regression?", "What is the saddest story of life?", "Which are the best cough lozenges?", "Would there still be web hosting without net neutrality?", "How much an average human mind can store information?", "What is the salary of software engineer in India per month?", "Where can I find a professional hacker?", "How do I learn Spanish fast?", "Why do people ask questions whose answer can be easily found on the internet?", "Who do you think are the most impressive people ever?", "How can I join the U.S. Air Force reserve?", "Do you think time travel is possible?", "What is your favourite anime character?", "What's the easiest way to learn chinese?", "What word has changed the world?", "How do I use apple cider vinegar to lose weight?", "How can i learn java programming language?", "What are your favorite books?", "What is exactly meant by dynamic pressure?", "What is the difference between a prologue and an epilogue of a play in Drama?", "Recreational Vehicles: What does it feel like to live year-round in an RV?", "How do I reduce the food waste in my community?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Patagonian Desert?", "How do Key West, FL and Miami, FL compare?", "Is it possible to exchange old 500 rupee notes after Dec 31?", "Why are smiles infectious?", "What is the population of the USA?", "Is the Moon a planet?", "How does it feels to have a Indian sibling?", "How should one improve one's presence of mind?", "What is/will be needed for SAP Consulting Core Skills?", "What is the most interesting thing that happened to you on a flight?", "What career advice would you give to someone who wants to become a commercial lender?", "What are some good online communities?", "Which musical instrument is the easiest to learn?", "Is it true that only 0.06% of Clinton foundation donations go to direct aid?", "What is the best way to learn German language?", "Jeff Hammerbacher: What is your advice for a young data scientist?", "How can I create a chatbot from scratch?", "What are some of the wittiest answers on Quora?", "Which is the best bank in Nepal?", "What is always the right thing to do?", "What is the cost of living in Melbourne?", "Who will win this year's ISL?", "Which is the best college offer mba course in gwalior?", "What is cavity?", "Does having a gap year after graduation affect the placement prospects of an IIM student?", "What were your impressions of Hillary Clinton's acceptance speech at the DNC?", "Who is going to win the presidential election?", "Is Red Bull energy drink made by bull sperm?", "Why are people so stupid?", "How do I use Jio in 3G phones?", "Who should I follow on Quora who has really good answers that I could learn from?", "Why do I get hiccups when I eat rice?", "How do I get rid of pimples permanently?", "Who is the best skin specialist doctor in Kolkata?", "What is the best book to build vocabulary?", "What are the uses of the appendix?", "What is your phone's best wallpaper?", "Which last book you read?", "How can I get the free shipping from Amazon?", "What are the job opportunities for guidewire?", "What do you think should be India' s stand after today' s URI terror attack?", "Which books are appropriate for CAT preparation?", "How will you know you love someone?", "What are the benefits of ban on 500 and 1000 rupees note?", "Where can I get a free Minecraft server 1.10.2 forever?", "Which mobile phone is the best under 15k?", "Why did Red Hat create a new Linux operating system instead of copying Debian?", "What is good about Indian education system?", "How often should I use coconut oil on my hair?", "Which is the best phone under 15000 Rs.?", "Why do people ask questions on Quora that can easily be answered by Google?", "Can I increase my body height after 19 ? If yes? Then how?", "Why use Quora if you can google?", "How can we protect the environment?", "Is it possible to know who viewed your profile on whatsapp?", "What would a world with women leaders look like?", "How do I learn German?", "What are some mind-blowing facts about Tesla Motors?", "How can I lose my weight fast?", "What are some differences between healthy cells and cancerous cells?", "What are the best MBA coaching institutes in Delhi?", "Who are the best NBA teams?", "Is time travel possible and if yes can we travel only in past or future or both?", "Do you think zodiac signs affect a persons personality?", "How can I promote E commerce website?", "How will abolishing rs.500 and rs.1000 notes reduce corruption and identifying black money?", "Will time travel ever become possable?", "How do I reduce belly and chest fat?", "What's your most awkward moment?", "How important were the INR 500 & INR 1000 notes to an average person?", "How do I get to speak fluently English?", "What is the best way to improve stamina?", "What did you think of Rogue One?", "How do you check your Axis Bank balance online?", "How do we make money online?", "I viewed someone on Linkedin and then deleted my account. Can they see who viewed them?", "What are the new security features in 2000 rupee notes? Do you think the security features are enough to make sure nobody is able to counterfeit it?", "What is the inhand salary of the ASO in CSS after the seventh pay commission?", "How do I really make money online?", "Are you interested in doing home based part time job?", "Will there be another big World War? If so, what will it be like?", "Who was responsible for WW1?", "What are your 5 favorite poems?", "What are the top 5 places to eat at in Chennai?", "What's your favorite song right now?", "How do I stop being jealous over other people's success and creativity?", "Is it possible to travel back or forward in time?", "Why sugar is sweet?", "How and why is the universe expanding?", "Which is the best tour operator in Kerala?", "How I can ask question on Quora?", "Is it possible to filter pinterest users by number of followers by nation?", "What's the difference between Vyvanse and Adderall?", "How I can exchange my black money notes of 500 and 1000?", "How can I start a career in VLSI design?", "Why are almost all AI assistants female voice?", "What are the best Indian TV series?", "What does it mean if a dog vomits white foam?", "How do I learn basics of stock market?", "Which company provides the best SEO services in Delhi?", "Why should sex education be taught in school?", "What is the most important thing in one's life?", "What are the most important turning points of your life?", "If universe expands without limit and dark/vacuum/gravitational energy is created with it, is potential energy (the energy that can be created) infinite?", "What is the reason you close your eyes when you sneeze?", "What is the biggest truth in this world?", "How do people get dreams while sleeping?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Syrian Desert?", "Why was Spain not active in World War II?", "What is it like to be a criminal defense lawyer?", "How do I find someone's address, name, or location from a phone, mobile or cell phone number?", "Is it normal that I'm attracted to older men?", "Which residential college to choose in the University of Western Australia?", "Do long distance relationships work?", "What are the best techniques to trigger one's own divergent thinking?", "What are the best birthday wishes?", "Where and how can I download cbse books?", "How do I know if a girl likes me back or not?", "What are the best books for a Software Engineering autodidact?", "How can I stay away from loneliness?", "Would ISPs block forums without net neutrality?", "Why is brown sugar healthier than white sugar?", "Where does matter go after falling into a black hole?", "How can I go to Google Summer of Code?", "Why is there a Nataraj statue at CERN?", "What is the science of a pressure cooker? How does it cook food so fast?", "If the US didn't have two term limit for Presidents, and Obama was to run a third time, would you still vote for him?", "Why do circuit breakers fail?", "How can third world countries be developed?", "What iPhone headphones have the best mic?", "Is money demonetisation really working for black money?", "What is motion in physics?", "Can we change branch after one year in a BTech at the Institute of Technology Nirma University if there are possible vacancies due to a vacancy in D2D seats (for e.g., change from civil to chemical)?", "Is there a nice way to tell someone you don't care about them?", "Why do men of younger generation have/grow less facial hair compared to older men?", "How do you stop an 8 week Husky puppy from biting my shoes?", "Do we have any trick to know who see your whatsapp profile?", "How do I get into Harvard as an undergrad?", "How do I start preparing for IAS exam? How much time should I spend on which subject?", "How should I start my preparation for the IAS exam?", "Why do most Kannadigas not watch Kannada movies?", "How do people live in North Korea?", "What is the best joke you've ever heard? Please keep it clean.", "How do I learn not to care about what people think of me?", "What can hamsters eat besides hamster food?", "What are the most important turning points of your life?", "How do I kiss for the first time?", "What will be the impact on India if Donald Trump becomes the next president of USA?", "Why did humans alone evolve to become intelligent but other animals evolved only to survive? (humans have more intelligence than needed just to survive)", "I want to learn data stuctures and algorithms perfectly, which book is best for it?", "Is there a way to use stem cells to grow your penis larger?", "I am working with quality control of smart textiles. Which method do you recommend me to do so?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Great Sandy Desert?", "Are Hillary Clinton's health issues that serious or is the media blowing it out of proportion?", "How can I be emotionally detached from everyone?", "How will Donald Trump benefit India?", "Which Dslr should I choose. Nikon D5500 or Canon 70D?", "How do you control your anger?", "How should I prepare for Indian polity?", "How I can become a millionaire?", "What is the best way to learn Kali Linux?", "What made Islam spread around the world faster than any other religion?", "What are the career options after a bachelor's degree in pharmacy?", "How do I become a better thinker, innovator and a problem solver?", "What can be the possible effects of removing 500 and 1000 rupee currency notes?", "On Snapchat, how do you know if someone blocks you?", "What should I do on the internet when I am bored?", "What is a female orgasm like?", "What is the best stream for a M.Tech in Civil Engineering?", "What are the benefits of Kriya yoga?", "I have completed 12th, the IBDP. I'll apply for Bachelor's Mech engg in the USA. How can I find an internship before I start classes next year?", "Can you have schizophrenia without any hallucinations?", "Why is the C language called a 'Structured Programming Language'?", "What is electronics and telecommunication engineering?", "What are some book recommendations on the history of mathematics?", "How does torrent work?", "How should I stop masturbating?", "What does would end of a rainbow look like?", "Which is the best CA coaching in Delhi?", "Any ladies want to message me pictures of your pantyhose feet I love looking at nylon feet thank you God bless?", "What are the best educational apps?", "What are some solutions to dandruff?", "How can I improve at playing chess?", "How do I overcome shyness in front of girls?", "What can someone do with my social security number/drivers license number?", "What are some additional important courses to do for a mechanical engineer?", "How can you get over someone?", "What is a legit work from home job?", "Are UFO sightings real? Why?", "What is your opinion on PM Narendra Modi's decision to ban INR 500 and INR 1000 notes?", "Why did M*A*S*H end?", "Should I still go to the US for my graduate studies under Trump’s presidency as an international student?", "What are the best ways to build an Instagram following?", "How can you describe what is popular sovereignty?", "What are the best business travel hacks?", "What will Artificial Intelligence be like in the future?", "Why does an ozone hole occur on the North Pole and not on the South Pole?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Mill?", "How can one join Delta Force?", "How do I detect the methanal levels in the air?", "What was the best day of your life, and what happened?", "What is the difference between income, revenue, and profit?", "After donating at least a pint of blood to a blood bank, will there be any noticeable change in blood pressure?", "Why are Aeroplanes painted white?", "How should I start the preparation of IAS exam from my graduation level?", "Where can I find the best quality cupcakes in Gold Coast?", "What ways will you suggest to curb air pollution in delhi? How will they be implemented also?", "Out of 29 states of India, Which is your favorite state other than your home state?", "How I get sucess in life?", "How can I lose 30 pounds in 30 days with a workout plan?", "What is Stealth technology?", "How will the ban on 500 and 1000 rupee note stop black money?", "Which is the best romantic movie?", "Would Trump be smart to issue a pardon to Edward Snowden?", "Which is the best water purifier in India?", "What are some weird questions you have come across in quora?", "Will it be fine if both husband and wife having same blood group?", "Is Dave Mustaine actually a Christian?", "Which are the best Hollywood thriller movies?", "What show can I watch that's similar to Friends?", "What is the difference between chopper and helicopters?", "How will Hillary Clinton influence the relationship between US and India if she becomes the President?", "Howdo I get into Stanford with a poor GPA?", "How do cruise missiles work?", "What's the highest point on Earth?", "How do you trim your pubic hair?", "What are the best Prison Break-type movies?", "What is the most upvoted answer of all time on Quora?", "How can I deactivate a Facebook account if I forgot the email address and the password?", "Why do people bully others? Whats the point behind it?", "How do European universities compare to US for MS in CS?", "How will be my career if I chose MBA after b.tech in mechanical engineering?", "What is the best travel hacks? Please comment.", "What are some really good rap songs?", "What are the major movie blogs and movie industry blogs and how do they compare?", "Why do ceiling fans rotate anti-clockwise and table-fans clockwise?", "Is silverlight dying?", "Why can't the Israel and the Palestine unite become a multiethical country?", "How do I access my Yahoo accounts without still having the old mobile OR landline numbers or email associated with them?", "What are some effective writing tips?", "Why do some women maintain long nails?", "Which countries have free higher education?", "What is actual meaning of life?", "What is the ground in an electrical circuit?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Gobi Desert?", "What is the best way to find good questions on Quora?", "Are there any hedge funds based in Berlin and if not, Germany?", "How can a mosquito fly inside a moving car?", "Which is currently the best IAS coaching centre in Hyderabad?", "What do you consider to be the most important thing you learned in high school?", "Why does India feel insecure with CPEC?", "What are some good freelancing websites?", "Why do all my questions need improving on quora?", "How do I find a phone number’s location?", "Why do people buy fake Twitter followers?", "Is World War 3 closer than it has ever been?", "Why is Donald Trump not racist?", "Why do I want to become a lawyer?", "How do I remove dark circles permanently?", "Why is Arnab Goswami of Times Now so irritating and biased on the debate show?", "How did abolitionism start? How did the abolitionism of David walker and William Lloyd garrison differ?", "Why don't countries come together and invade North Korea?", "How do I become a writer?", "I am interested in a girl but she wants to just be friends. What do I do?", "What is the best business to earn money in india with less investment?", "What is Triple Talaaq?", "What will be the future for India?", "I had sex 2 month ago and I had my period for 2 days last month and this month I'm 2 weeks late. Could I be pregnant?", "Is washing your hair daily bad?", "What steps can I take to improve my writing skills?", "How do I know if someone blocked me on WhatsApp or not?", "What are some mind-blowing mobile inventions that exist that most people don't know about?", "Is it the right time to invest in the Indian stock market via mutual funds? I have 2 lacs.", "\"Is \"\"Sheila\"\" in Australian really a derogatory word?\"", "How can I stand up for myself in any situation?", "What are some mind-blowing iPhone/Android gadgets that most people don't know about?", "\"How can I read Facebook messenger messages without showing a \"\"read receipt\"\" for them?\"", "How do I learn anything properly?", "What is the best way to export Facebook date to an excel file?", "Who is history's greatest badass and why?", "What would be the advantages and disadvantages of Hillary Clinton becoming president?", "Is a morning gym workout better than an evening gym workout?", "Why doesn't Google give feedback to interviewee?", "How can I cure my hormonal acne?", "What is the best thing to do to start being involved in open source projects?", "Belief and Beliefs: Can the existence of a god be proven or disproven?", "What is the most significant book that you have read and why?", "Why are there people who still don't believe that global warming is real?", "What is diplomatic immunity?", "How do I survive in a long distance relationship?", "How can I lose weight effectively?", "Why do the electrons revolve around the nucleus?", "Which is your favorite pornstar?", "Is curd good for health?", "What could be done by Indian government to get all Black Money back to India?", "Self Doubt : How do I stop doubting myself?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Great Sandy Desert?", "When will Apple release the next generation of MacBook Pros ?", "Who actually ruled India before sultans?", "What are the three best comedy movies you watched in 2015?", "What is the most painless way to commit suicide?", "Are we living in the past?", "What is most important thing in life? Is it money or relations or status?", "Where is the best place to visit?", "What are some best Korean drama series?", "How can I get a hulu activation code for free?", "How are speed and velocity related? How is this determined?", "How can l get a girlfriend?", "\"In what different ways can \"\"Whoever has will be given more, and they will have an abundance. Whoever does not have, even what they have will be taken from them\"\" be interpreted?\"", "What is the best programming language to know?", "Is captain America a virgin in the movies?", "What are some great websites which many people don't know about?", "What are the beauty standards in Germany?", "If universe expands and vacuum energy is created with it (with no limit),is there infinite potential energy/infinite vacuum energy that can be created?", "What is the difference between industrial psychology and human resource manager?", "What should I do to build a leadership quality?", "How does one overcome depression and anxiety?", "What are the funniest photos you have ever seen?", "How can I gain weight naturally?", "What is the meaning of our life?", "If we evolved from monkeys why are monkeys still here, wouldnt they all be humans, & what did birds evolve from?", "What evidence is there that there is something after death?", "Who is the most inspirational person to you?", "How can we recover our Gmail password online?", "How was it like to live in East Germany during the communist rule?", "How do I know if a guy likes me or not?", "Why is Saltwater Taffy candy imported in Hong Kong?", "How do I restore whatsapp data from lost phone? I have taken the duplicate sim with same no but it didn't restore the data", "What are the best answers in Quora?", "Do jio sims works in iPhone 5s?", "Why do people bother to ask questions on Quora they could just google to get the answer?", "How do people who suddenly become rich handle friends and family who borrow/ask for money?", "How should India respond to Pakistan regarding the recent attack in Uri?", "Is it healthy to eat egg whites every day?", "How do I stop caring so much about what other people think of me?", "How can Quora make money without any adds?", "What bothers you the most about yourself?", "What else could cause a late period besides pregnancy?", "Does skipping increase height?", "What single sentence changed your life?", "What are some good ways to make apple pie?", "What is the best way to go about learning JavaScript?", "Is there an app to hack WiFi passwords?", "What is a coral reef?", "Is Modi's decision on demonetization of 500 and 1000 notes welcomed by public?", "What is the best book for quantitative aptittude?", "Where does robot hobbyists get robot parts from?", "Is it bad to want to become very rich?", "What is the best city in Florida to raise kids?", "Which is the best site for learning programming?", "Who was the strongest character in Mahabharata?", "Where can I get comprehensive written advice in Sydney for any property transaction?", "Why does Quora have a character limit for question titles and details?", "Why do Hindus say that India is secular because Hindus are secular?", "How do you make money in your college?", "How do I prepare for IBPS PO exam and what are the books to follow?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Valparaiso earthquake in 1822?", "What is the best way to learn data structures?", "How do I get rid of acne and acne causes?", "Which day can be the first and the last day of a century?", "What are the most dangerous drugs and why?", "What is liberalism theory?", "Why do people love dogs?", "Why is life boring sometimes?", "Where do I get weed in Kolkata?", "What are the secrets of happy life?", "How was the Indian caste system created?", "How can I land a job at Microsoft?", "How should I start preparing for CLAT 2017?", "What are the best ways to lose weight? What is the best diet plan?", "Which are the best websites to learn computer programming and web programming?", "Where can I get a vast collection of bridal dresses in Gold Coast?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Rat Islands earthquake in 1965?", "\"Where can I get the second edition of Alan V. Oppenheim's \"\"Signals & Systems?\"", "Where can I get best assistance in Sydney for buying property?", "What is Facebook really?", "Do women like beards?", "What make the British Raj to leave the India?", "What is your opinion on PM Narendra Modi's decision to ban INR 500 and INR 1000 notes?", "Where can I find best rat control service in Sydney?", "Can I make money by uploading videos on YouTube (if I have subscribers)?", "What's the most overrated rock band of all time?", "How do I attract girls for sexual relationship?", "What is the trick to maintaining long distance relationships?", "How will Donald Trump's presidency affect international students?", "Where can I get fantastic value in Sydney for floor tiles?", "Which are the best hotels or resorts in Mussoorie?", "Why do some people believe everything has to happen for a reason?", "When and how will the next stock market crash happen?", "How will demonitizing of Rs. 500 and Rs. 1000 notes will affect common middle class man?", "How does the standard and the metric measurement system differ?", "Should we buy unboxed phones?", "What is best website for learning?", "How can I add a question with picture on Quora?", "What is the difference between a monologue and a soliloquy?", "Is the Donald Trump phenomenon a failure of American democracy?", "Which political party would the founding fathers most likely support today?", "How do I concentrate more on studies?", "How can you learn fast?", "What are the most visited websites in Iran?", "What are credit rating agencies? How do they give ratings?", "Why does Republicans have a firm disbelief in climate change?", "How are whole milk and evaporated milk used differently?", "Being an Indian what are some strange facts about India one should know?", "What is the difference between imperative and exclamatory sentence?", "Why do humans love their family members just because they're family?", "Why were the polling results and predictions for the US 2016 presidential election so inaccurate/wrong?", "How do I Get rid of cockroaches?", "How can you know if someone is lying to you?", "Does 'empty' space have mass which is displaced by matter?", "What are the main tools for the quality department in a company?", "What are the puzzles asked in interview?", "What's your 2017 new year resolution?", "How GDP might be a misleading measure of standard of living? how it might increase GDP but we would not, as a society...", "If you won 1 million dollars from the lottery, what would you do with the money?", "Who is the most successful person of all time?", "How do I overcome my pornography addiction?", "What do foreigners think of Narendra Modi?", "Which is the best karaoke software?", "What could be the best possible diet plan for gaining healthy weight?", "Is the new TV show “Westworld” worth watching?", "What are the differences of a tornado warning and watch?", "How can an indian end up working as an astronaut at NASA?", "What are some of the practical examples that demonstrate the existence of karma?", "How can I get my boyfriend of 3yrs to spend more time with me?", "What is the difference between Information technology and Computer Science & Engineering?", "What are the best books written about Chanakya and his philosophies?", "How do we make money online?", "What should you know before sending your child to a private school?", "Can Quora employees view who posted the question when Quora users post it anonymously?", "How likely is it that Apple is working on its own search engine to compete with Google as this article suggests?", "Why did I dream about seeing a dead body?", "Can I go back in time?", "How do I prevent myself from dozing off during lectures?", "What are some of the interesting facts about india?", "What`s the best way to get rid of porn addiction?", "If universe is expanding without a limit and dark and vacuum energy are created as it expands…?", "Have you ever come back from death?", "What are the best resources for free business case studies?", "Who was the man that killed the most people in human history?", "What daily habits can someone adopt to lead a more productive life?", "How do I improve presence of mind?", "What are examples of a polar molecule?", "Why don't passenger planes have ejection seats like fighter planes do?", "Why did Ratan Tata remove Cyrus Mistry?", "Is Indian currency bill Rs. 2000 has GPS chip for tracking?", "\"What is the origin of saying \"\"bless you\"\" when someone sneezes?\"", "Is there any good centre for Hadoop training in Chennai?", "What keeps Airbus A320 landing gear Main Wheel Doors safe from ground impact damage after Landing Gear free fall extension?", "There’s a news story about a whipped cream shortage? And it is happening just before Christmas? Is this news story real, or is it just a hoax?", "Is de Broglie's subquantic medium the strongly interacting dark matter which fills 'empty' space? Is it the DM that waves in a double slit experiment?", "Who is going to win the presidential election?", "What do I do to get orders on fiverr?", "Why do people put ridiculous questions on Quora when they can just Google them? Huh, Huh, Huh :-/", "How will the passing of GST bill help Indian Economy?", "Who is the responsible for Indore-Patna Express accident?", "Is it healthy to eat fish every day?", "What do I need to move to California?", "How are metals able to conduct heat?", "How could I improve my English pronunciation?", "How do you find out if your boyfriend actually loves you?", "What is the difference between netbook and laptop?", "How can I stop masturbation?", "How can we interact with new people?", "How do I lose weight without doing exercise?", "What is the best thing that someone did for you on your birthday?", "How can I specifically improve my English?", "Why do you like your job?", "Which are the most expensive laptops in the world?", "Who is currently the richest person in the world?", "Why did Germany lose to France in Euro 2016?", "\"How is the new Harry Potter book \"\"Harry Potter and the Cursed Child\"\"?\"", "What are some mystery movies?", "What are some of the most lucrative businesses to start for the next decade?", "What can I do to improve India?", "How I be a porn star?", "Will there be a third World War?", "What is the easiest way to improve my vocabulary?", "Will I secure an admission with 5.5 band in university who required 6.5 band?", "How can I prepare for ftii?", "Could the U.S slowly take over the world?", "Who do you think will win the 2016 Presidential Election?", "Which is best laptop to buy under 30k?", "What is the most annoying thing you have ever done in your life?", "How is the prime minister more powerful than the president in India?", "How do I stop myself from hating people?", "Is there any Pakistani on Quora?", "What is the most famous sport in the world? Why is it the most popular sport in the world?", "Will Hillary Clinton cause WWIII by going to war with Syria?", "What are the safety precautions on handling shotguns proposed by the NRA in Maryland?", "Can regular long distance running help prevent cancer?", "What is a good age to settle down and get married for men?", "What does treating illness symptoms through drugs have to do with medical wisdom for knowing how sickness is cured?", "What is the first thing you think when you wake up in morning?", "How do I learn quickly?", "What might have happened if the Confederacy had won the American Civil War?", "What does it feel like to be disowned by your parents after coming out as gay?", "What is the best source for news?", "Which is the richest man in the world?", "Do apps like clean master really work?", "What will be the after effect of demonetization?", "Why do some people think that the Earth is flat?", "What do you think is important in life?", "What are the different parts of the circulatory system? What are their individual functions?", "How do I start learning about Data science?", "What is the scope of ethical hacking?", "What is it like to work at Boeing?", "What are some of the best jokes ever told?", "Which is the best book for inorganic chemistry?", "What's the best method to control anger?", "What should I wear for clubbing attire?", "How do you make the perfect Hungarian Goulash?", "How should one remove old blade cut marks from hand using home made treatments?", "What do non-Filipinos think of Rodrigo Duterte?", "How do I get that peace of mind?", "What was the role played by Gonna Gannareddy during the period of Kakatiya Rule in Andhra Pradesh?", "Which course is best nowdays?", "Why do many distrust Hillary Clinton?", "Why is not India performing well in Rio Olympic?", "How do I become CA?", "How does world end?", "Does red bull energy drink have bull sperm in it?", "Why don't I have any female friends?", "Is time travel to 2010 possible?", "What novel has had the biggest impact on your life?", "What is the best way to get a girl to like you?", "What is the formula used to calculate thermal energy and how is it calculated?", "Do we really need reservation system in India?", "Why is my Firefox browser always crashing?", "What's the best plan to lose weight?", "How can I learn communication skills?", "How can I increase traffic to a story blog?", "What are the possible options for India to deal with Uri terror attack?", "How safe are hot air balloons?", "What happens with the crores of donation money which people give in temples?", "How can I stop worrying about what other people think?", "How can I make a perfect BBQ steak?", "Is Donald Trump a closet Libertarian or Democrat?", "Is it healthy to eat bread every day?", "What is the best app to tell if someone is tracking my phone?", "Why was Cyrus Mistry removed as the chairman of Tata Sons?", "What is STEM education?", "How dO I feel peace?", "If the USA and Israel would get in to war could Israel destroy the USA?", "What do Trump supporters think of his Cabinet picks?", "Can you create another upwork account after suspension?", "Why are my logical questions marked as needing clarification?", "Why government bans 1000 rupees note and instead of they made 2000 rupees note? Will not make problems of change(khulle)in country?", "How can I improve my English in all aspects?", "How do you know you're in love again?", "What is politics and what is its relationship with public policy?", "Is 11 years old too young to be dating?", "How can I control my emotion and fears?", "Why don’t the electrons fall into the nucleus?", "What are some best movies of all time?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Sanriku earthquake in 1896?", "How do I stop caring about what people think about me?", "I'm fat. How do I lose weight?", "Is Clinton likely to win the election?", "What is it like to be incest?", "Is it possible to make an Iron Man suit?", "Which is the best SSC and banking training insititute in Chandigarh?", "How can a mechanical engineer get job in IT?", "Which is the best gaming laptop under Rs.60000 in India?", "What is the best Hollywood movie of 2016 and why?", "How do I learn Python systematically?", "How do glands produce sweat?", "Can you explain trade relation between India and Pakistan?", "How do I improve my reading speed?", "Which presidential candidate will help the economy?", "Which is best country to work for?", "How can I get clients for my software company?", "Are vertical angles adjacent?", "What do you absolutely hate about Quora?", "According to you who are some of the best writers on Quora?", "How do I make money from home?", "What is the future of Ethereum?", "What's the difference between Netflix and Hulu? Which is better?", "Will China disintegrate?", "What is the intention behind not giving the status of MFN to India by Pakistan?", "Is prime minister Narendra modi doing anything against reservation?", "What can I do to improve my English speaking?", "Why does Quora mark so many questions as needing improvement?", "How do I get prescribed Percocet?", "Which books should I use to study for the IAS?", "What is the quickest way to get meth out your system?", "What is the best book to understand the theory of relativity?", "What is the longest journey you have made in your car in India?", "What is the best way to flirt with girls?", "How can I be rich and happy?", "I forget my Facebook account password and I also can't access to the email address provided, can I reset my password?", "How do I apply for an internship at ISRO?", "How do I get addmision in MIT?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Calabria?", "How do I ask a question on Quora? Please help it is very urgent.", "What are the best fields to pursue masters in mechanical engineering?", "Is dark/vacuum energy infinite because the expansion of the universe is infinite and more and more of it is created as the universe expands?", "What is UNASUR? What purpose does it serve?", "Which is the best WhatsApp status?", "How do I earn money online?", "Why is my Miniature Pinscher/Chihuahua mix afraid of cats?", "If I don't turn off my mobile phone on a plane will it really interfere with navigation systems?", "What should you not say in a job interview?", "How can I increase a website traffic?", "What are some of the best mosquito repellents?", "On a scale of 1 to 10, how happy are you?", "If you were chosen to have superpowers what would you have?", "What is the best way to learn Django?", "How do I get over someone?", "How is GTA 5 online?", "Will the humanity become extinct?", "Who will be my friend?", "Can You tell me a chest workout to build muscles at home?", "What is the best way to drive traffic to a website?", "When will Quora enable emoticons?", "Why would a woman rape a man?", "I cleared the muApt 2016 test. How can I prepare for the remaining rounds?", "Is Toronto a safe city?", "Why don't many people posting questions on Quora check Google first?", "Why do you consider yourself lucky?", "Is there any proof or evidence of alien / extraterrestrial life existence?", "What are some resources for learning advanced Java web programming?", "What should be my strategy and focus areas for CAT 2017 (I am preparing on my own)?", "How do I logout from Quora app?", "Is it possible to make internet friends on Quora? How?", "What is the effect of fed rate hike in India?", "Did God write the Bible?", "How do I stop my addiction to porn and masturbation?", "Which are the best colleges for Computer Science?", "What do you use a social network for?", "What is language processing? What are the fundamentals?", "Which is better? Studying late night or early morning?", "What are your views on ban of 500 and 1000 rupee notes in India?", "What happens after a failed suicide attempt?", "I am a mechanical engineer with no knowledge of programming. What is the best way to learn Python?", "Why do people vomit after drinking too much? How can it be avoided?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Simpson Desert?", "What is the physical significance of entropy?", "What should I do to become a good coder?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Chile earthquake in 2010?", "How can one stop masturbating for good?", "How is it like to live in Bangalore?", "How does Quora work, in the sense what do people on Quora do?", "What is the penultimate purpose of life?", "Which is the best laptop for gaming under 60k INR?", "Is there a limit to how long a Quora answer can be? If so, how long?", "Do you make money by writing answers on Quora?", "How do I know if it's the right time to write my book?", "How do I transfer money to bank accounts?", "What is the best book for beginners to learn java?", "How can I increase height after 22?", "Suppose India declare a war against Pakistan. What will be the result?", "What are the best reference books for learning Java?", "What is the cost of the fuel used to completely cremate a body?", "How do you uninstall YouMail?", "Which video game franchise has won more awards, halo or uncharted? Also which franchise has been more acclaimed?", "How can I hack Facebook?", "I am interested in a fashion designing programme. Which are the best institutes in Pune?", "What is the least painful way for suicide?", "Who would be the next president of America?", "What should I do if I'm badly bored?", "How does long distance relationship work?", "How can I prepare for civil services (IAS)?", "How do I get rid of tiny black bugs in my bed?", "What were the main and most important political causes of World War 1?", "If war happens between India and Pakistan who will win?", "Why aren't most people in the world rich?", "What is the most efficient way to make money?", "What are different types of Malware?", "Is personal hygiene a challenge for some, one with ADD?", "What is the best website for freelancing?", "How should I live a happy and satisfied life?", "What is meaning of share market?", "Why do people believe in flat earth?", "Where can I get very reasonable and competitive price in Australia for book printing?", "How can I reduce my belly without doing exercise?", "How do ticks get inside my dog's ears?", "How can I book a mini truck in Bangalore?", "Is there any eligibility criteria for buying a Rolls Royce or is it that anyone with money can buy one?", "Who has inspired you the most?", "Why do HongKongers seem more superior than mainlanders?", "How does the HP OfficeJet 4620 Airprint compare to the HP LaserJet Enterprise M506x?", "How can WE TOGETHER Make the World a Better Place?", "What happens if you actually drink bleach?", "Which women have iinie outie belly button?", "What's the greatest movie script so far?", "How do I stop my American Staffy/Kelpie mix from biting my stuff?", "Why did America vote for Donald Trump as President in the 2016 Elections?", "Who wrote the anthropic principle and what is it about?", "Why is the Republician Party known as the GOP?", "Do you believe in free will?", "Should I watch Game of Thrones before I read the books?", "In the US, can a police officer pull over another police officer for speeding?", "How do I increase body height?", "How should I face for an interview?", "What was the best smartphone of 2016?", "How can I increase height after 22?", "Which mobile phone is the best under 15k?", "How do people living in Turkey feel about Azerbaijan people?", "Why do people ask questions on Quora while They can get all the answers by Googling?", "Can I play Google play games on my laptop?", "How do I prepare for tcs interviews?", "What is your favorite movies of all times?", "Does the death of Jayalalitha give BJP a chance to rise politically in Tamil Nadu?", "What is the best and quickest way to get rid of man boobs?", "Why do extroverts like small talk?", "How do I find a job abroad?", "What led to Cyrus Mistry ouster from TATA GROUP?", "Why and how was Quora started?", "How do I learn cloud computing free online?", "Why don't people search on Google before posting it on Quora?", "Why did the DSM-5 revamp the diagnostic criteria for borderline personality disorder so dramatically?", "Does uniform civil code work for India?", "How do you know if you are a psychopath?", "Are we heading toward World War 3?", "What are best alternatives to Quora?", "Should I prepare for cat 2017?", "Why don't people look things up on the internet before asking Quora?", "What are some uses of water?", "What are the purposes of different types of organisations?", "What is your New Years Resolution?", "Why do farts have a bad smell?", "What's the best poem you've written?", "How can I earn money online?", "What causes risk behavior?", "How do I use hyphens and dashes in sentences?", "What PM Modi will speak on 31st December 7.30pm?", "What are some tips for you to use a Visa gift card online?", "How do I reset my Gmail password when I don't have access to my recovery information?", "Which presidential poll is more accurate?", "What are the differences between software architecture and software engineering?", "Which fabric is the best for nightwears?", "How do I get my English better?", "Did you know <*/\\*>1800*-251-*4919*-*<*/\\*> Belkin router Technical support Belkin customer phone number?", "Why does Travis Bickle attempt to kill Presidential candidate Palantine in movie Taxi Driver?", "Why did you choice to become a doctor?", "Should I still join the military now that Trump is President?", "What is a good inexpensive laptop for light gaming (Spore, Civilization IV, Sims)? ", "Why do people bother to ask questions on Quora they could just google to get the answer?", "What should I do to avoid laziness?", "How do lose weight with healthy way?", "What is hollaween ghost walk?", "Can the hair removing cream commonly available be used for pubic region?", "When can women get pregnant in the menstrual cycle?", "How do I post something on 9gag's chat area?", "How can I learn & speak & write English?", "What are your views on ban of 500 and 1000 rupee notes in India?", "In order to pitch to a producer what must a screenwriter know how to do?", "How can I realistically make money online?", "How did Trump win the presidency?", "If you were the opposite gender, what is that one thing you definitely would/wouldn't do?", "Why should I visit Kerala?", "Will you ever cheat on your husband?", "How can I increase height after the age of 25?", "What is your highest CP Pokémon in Pokémon GO?", "How do you make easy money online?", "What is the internal rate of return? What can an example be?", "How exactly does banning Rs 500 and Rs 1000 notes curb the problem of black money?", "Do you believe that there is God? Why or why not?", "Can somebody explain me about GDP in Layman terms?", "Is 18th century a dark age in Indian history?", "How much are the possibility of war between Pakistan and India looking at recent escalation of tension between the two countries?", "Why do people get into dealing drugs?", "Do you enjoy your work?", "When did dinosaurs go extinct? How did dinosaurs go extinct?", "Do bad things happen to good people? Or do bad things create good people?", "Why does it hurt to love someone?", "How does the first kiss feel?", "What is the funniest fear you've ever encountered?", "How did apollo astronauts urinated/defecated on moon?", "What impact is the candidacy of Donald Trump having on the United States' international image?", "What are some examples of a cinder cone volcano? How do they differ from other types of volcanoes?", "Does anyone regret having kids?", "What can I do to be better in bed?", "How do I catch my cheating partner?", "What is the probability of someone winning the lottery if there are an infinite number of contestants?", "What is the best moment of your life so far?", "How do objective and subjective claims differ?", "Could Donald Trump be President?", "How long will meth stay in my system if I inject it?", "Why doesn't everyone I ask to answer a question answer it on Quora?", "Why do Liberals tend to defend Islam?", "Who do you think would win the 2016 USA Election?", "Could David Cameron be remembered as one of the best prime ministers this country has ever seen?", "Which is the best phone to buy under 15000 INR?", "How many days after a missed period, is a negative urine pregnancy test considered conclusive?", "How do you fix the backlight on a laptop?", "What is the difference between creativity and innovation? How do you define creativity? How do you define innovation?", "How do I acquire a British accent?", "What are your top three favorite books and why?", "Why is Quora blocking my name saying it doesn't conform?", "What are some of the pros and cons of a Hillary Clinton presidency?", "How can I stop caring as much?", "What are the advantages and disadvantages of banning 500 and 1000 notes in India?", "Will Leia appear in Episode IX despite Carrie Fisher's death?", "What is the exact meaning of love?", "What daily diet should I follow to gain weight?", "What is the food chain? What are some examples?", "What are your favorite questions asked on Quora?", "Why do people put ridiculous questions on Quora when they can just Google them? Huh, Huh, Huh :-/", "What is the best language to learn programming?", "What are categorical grants and how are they different from block grants?", "Suppose Host A sends two TCP segments back to back to Host B over a TCP connection. The first segment has sequence number 140, the second has sequence number 170.", "What's the best hotel booking site?", "How do I lose 20-30 kg?", "What are the differences between Chinese culture and western culture?", "How do I stop a Pointer/Boxer mix puppy from chewing my shoes?", "What is the difference between present perfect and past perfect tense?", "If time travel was possible, wouldn't people from the future visit those that are present now?", "How can I start my study plan for IAS?", "How can I earn money easily online?", "What are the best car gadgets in 2016?", "How do I be a good consultant?", "How do you say no to people?", "What or who brought you into Quora?", "What are some examples of natural selection?", "How would the world be if all the nation's rulers, leaders were all women?", "What is some legit online jobs for me to work at home?", "What are job opportunities for MBA graduates in India having a previous experience in IT?", "How do I overcome my fear of change?", "What is the best way to learn Russian online?", "Which is the best book of bridge design?", "What is the best Android tablet and why?", "How much of a profit are you supposed to give to an investor and keep?", "What is the best way to make money as a 15 year old?", "What will be the effect of the ban of 500 and 1000 rupee notes be on the stock market?", "Why study economics?", "What are the repercussions of 500 and 1000 rupee notes not being legal tender anymore?", "How can I make money with YouTube videos?", "When do lightning bugs come out?", "If dark matter strongly interacts with matter then is it what waves in a double slit experiment?", "How can I get into a good US college as a international student?", "Does penis size matter for girl or stamina?", "How do Indian Muslim women feel about triple talaq? Are they happy with it?", "How do I contact a hacker?", "Why did the Battle of Vimy Ridge occur? Why is it considered a defining event for Canada?", "What is the difference between suite and tuxedo?", "How can I reduce my Belly and tummy fat?", "What mixers can be used with Hpnotiq?", "Is it advisible to visit kerala for vacation in the month of June?", "Did matter exist before the big bang?", "How is it like to live in Alaska?", "Which is the best coaching institute for ias?", "Why Modi govt did not release new 1000 rupee note instead released 2000 rupee note?", "How common is prostitution in Saudi Arabia?", "What's the best plan to lose weight?", "How are viruses created? How do they spread?", "Why are all my questions on Quora marked needing improvement?", "Why Americans love Donald Trump?", "How can I get traffic in my website?", "What do I do if I can't afford insulin?", "Why should i keep living?", "Is Gary Johnson going to be debating at the 2016 presidential debates?", "Can I produce electricity and sell it to the government?", "What is the difference between a savings account and a current account?", "What are the major unanswered questions in Physics?", "How do I lose weight faster?", "What is that one question or answer on Quora that changed your life?", "What is your opinion on PM Narendra Modi's decision to ban INR 500 and INR 1000 notes?", "How do I turn off screen overlay in Android 6.0?", "How can I find out if my man has used his email account in any social sites?", "What are the best sledging moments in cricket history?", "What are the best hotels in Rajasthan?", "How can changing 500 and 1000 rupee notes end the black money in India?", "I know this is known question but how do I know if she likes me?", "What is the difference between .com and .in?", "Why did you choose mechanical engineering? Why not automobile enginnering?", "Which is best digital marketing course?", "What is your favorite quote and your explanation of what it means to you?", "How can I increase the traffic to a website?", "How do I to determine the iodine value of saturated fatty acids?", "What would you do if your neighbors were noisy all the time?", "What trivia (and/or little-known facts) do you find interesting about Antarctica?", "What is the turning point in your life?", "Which financial institutions provide bills acceptence?", "How did Donald Trump win the presidency?", "Do I need to pay again on coursera if I switch sessions?", "What's your favorite subject in school?", "How do I look at the followers of a private instagram account?", "Why is 500 and 1000 rupee notes discontinued?", "How should I improve my English speaking and writing skills?", "Can we time travel?", "Who owns, runs, and funds the Internet?", "How can I lose weight quickly in 2 weeks?", "What works to make a man's penis thicker?", "How do I reduce the action on an acoustic guitar?", "How do I raise my IQ?", "What is the best online resource to learn Python?", "How did you first find porn?", "How can I increase traffic to my websites by Facebook?", "What is the thing that you regret most in your life?", "What are the best places to visit in Kerala in March in 3 days? We will arrive cochin airport by 10 AM on March 14th and leave on March 16th 7 PM.", "What are the best Hollywood movies ever?", "How did you become smart person?", "What muscles are used in an arm wrestle?", "What should I do to level up my English from intermediate to advanced level?", "What's the best app to see if my phone is being tapped?", "Is it good to go for graduate apprentice trainee in hal for mechanical? What are the opportunities after completing it?", "Why do some teenage girls want to marry, divorce after a while and get alimony?", "Where and how does the thermal energy flow?", "What are the major France blogs/websites to rate and review iPhone & Android apps?", "What are the online programming/coding boot camps or schools in India?", "How fast do I have to go to slow down time?", "In Greek mythology, why does Atlas have to hold the world?", "What are the advantages of structured programming and what are the disadvantages?", "What can I do to overcome anxiety?", "How do I use Reddit efficiently?", "What helps you pass a meth test?", "What are the best dieting tips?", "How is Shah Rukh Khan in real life?", "How can one get into a Stanford PhD programme in electrical engineering?", "What is the best place to visit in Kerala in June?", "What is the difference between high and low end vehicles?", "Why is saltwater taffy candy imported in Austria?", "What are the qualifications of Narendra Modi?", "Can the electoral college stray from its states popular vote?", "How can I get the funding for my startup without revealing my idea?", "Can we time travel?", "How do I learn to think outside the box?", "How do one cope with a newborn baby's death?", "What promises can Donald Trump keep?", "Do ghost actually exists?", "What is/are your New Year resolutions for 2017?", "What was your most cringe-worthy moment in School?", "What is Déjà vu?", "How imminent is World War three?", "What is it like to go from poor to financially wealthy overnight or in a short amount of time?", "Is there a difference between native mini displayport and just mini displayport on Macbook air?", "How do I become a video game developer and good programmer?", "What's your favorite work of art?", "What are some of the worst questions asked on Quora?", "Who are the Top Question Writers for 2016?", "What is contract law?", "What is the best manga of 2016?", "Why are mobile plans for 28 days?", "What are the most unhealthy foods that people eat frequently?", "How much salary does a software engineer gets per month in India?", "Where can I sell my GSA search engine license?", "What are some of the best websites in the world?", "How do I become a video game developer and good programmer?", "Why do people ask questions on Quora that are easily to find answers too on Google?", "Who is the most beautiful woman/man, you've ever seen?", "How does one begin research in theoretical physics?", "What is a crop circle?", "Is there evidence that the illuminati exists?", "What is the reason of the poor performance of India in the Olympics?", "Is it bad for health to eat eggs every day?", "Could God who is truly all powerful create a rock that he himself could not lift?", "How will the ban of old 500 and 1000 rs notes help in bringing out the black money?", "How does one stop getting replaced?", "What's the difference between movement and revolution?", "What is a good road bike for a beginner?", "Who is the best fielder in Indian Cricket team till date?", "How do I post blog on Quora?", "Why do we humans exist, what is our purpose in life?", "What’s your top 10 list of horror movies?", "How can I generate Jio get sim bar code in iPhone 5s?", "How do you get Netflix on DirecTV?", "Which are the best ways to lose weight?", "How do I find the average acceleration?", "What are the components required to build a mobile jammer for my project purposes?", "Why do so many people ask questions on Quora that can be found in a Google search?", "What are the beliefs of Sunni Muslims?", "What are examples of information systems?", "How do I get rid of my depression?", "Is Trump really all that bad?", "How can I keep myself motivated to study hard and not get distracted by other things?", "Is the word p#ssy no longer on the list of forbidden words? Do we have Donald Trump to thank for this?", "How can I improve in English?", "How can you recover your Gmail password?", "How can I gain weight but also eat healthy?", "What is the nicest thing that anyone has done for you?", "Why don't we have cars that run on water?", "What are the jobs and careers in human resource management?", "How can you overcome a writer's block? (songwriting)", "Do you think having hope is always a good thing?", "What are some interesting facts about the Sahara desert?", "What are the best courses to be done after completing mechanical engineering?", "What rank is needed to get CSE at IIT Bombay?", "What does the world think of India?", "How do I increase my computer typing speed?", "Can my girlfriend track my phone through Google if we have same Google account?", "How did you learn to speak English?", "Is the concept of backpropagation in neural networks a phenomenon actually observed in the brain?", "Who is better, Clinton or Trump?", "How do I stop being obsessed over something?", "Which is the best laptop to buy for rs. 60000?", "Why do Muslims ardently support secularism when they are in minority but fiercely oppose it when in majority?", "Where can I get high-quality painting service in Sydney?", "How people crack the civil services exam in their first attempt?", "What are the best Car technology gadgets?", "How do I get my own personal email?", "When will be Pokemon go released in India?", "How do you backup photos on iPhone but delete them from the device?", "What is the deal with all the damn clowns?", "Which are the best Bollywood movies of 2016?", "How can someone hack a Facebook account?", "What is R programming?", "How do I prepare for CAT 2017 from August 2016?", "What are the top 3 important Android phone apps?", "What's the most difficult job situation you have faced & how did you solve it?", "The government just announced that political parties need not pay any tax on submission of old notes of 500 & 1000? What do you think of the decision?", "What are the trendiest sides to go with pork chops?", "Will Hillary Clinton create war?", "Are there iTunes gift cards? If so, where can they be purchased at in the US?", "What will be the procedure of neet counselling 2016 for private colleges?", "Why don't people just Google their questions?", "How did the Renaissance change Europe?", "What are the safety precautions on handling shotguns proposed by the NRA in Massachisetts?", "What is the quickest get rich scheme available?", "Why does everyone tend to be a hypocrite nowadays?", "Can a cellphone be hacked by another cellular phone?", "How can you resolve the problem of accounting software tool by quickbooks technical support number?", "Putting politics and religion aside, why is abortion wrong or morally dubious?", "What are the top 10 websites you visit everyday?", "How do I get over my porn addiction?", "What are the use flavours in condom?", "I try telling my girlfriend she's beautiful, but she thinks she's ugly and that I'm just saying it. How can I make her believe me?", "How do you earn money as a wizard?", "How can humanity adapt to the long term impact of Climate Change? For what reasons should we hold out hope that our species will adapt and survive?", "How India can respond to the Uri terror attack?", "Why is the SAT hard?", "How can I commit suicide without any pain?", "Why is saltwater taffy candy imported in Austria?", "How can you stop falling in love?", "How one can make torque inversely proportional to the speed or supply frequency by keeping supply voltage constant in induction motor?", "How does it feel when your dreams get shattered in front of you?", "Why do people ask such questions here on Quora which could be easily found on the internet?", "Why do some people say they will move to Canada or Germany/Europe if Trump is elected instead of Mexico or Latin America?", "What are some tips for starting a blog?", "How can I lose weight safely?", "Can introverts be successful in sales?", "How many rows are there in excel sheet?", "What if there is a nuclear war between russia and U.S, who would win?", "What are all the signs that girl likes you? What are the best of them?", "Is there a scientific reasoning behind astrology?", "How will the new currency notes of denomination 500 and 2000 curb black money?", "My period is late 14 days, could I be pregnant?", "What it is like to meet Rahul Dravid in person?", "How do I concentrate better in my studies?", "What is the expected cutoff for KVPY 2016 SA -stream 2016?", "How do I get rid of adult content on my Quora feed?", "How can I improve my English writing skills by myself?", "Why do so many people like the Final Fantasy franchise?", "What's the best way to learn English?", "What is the visceral membrane?", "Why is India performing poorly in the 2016 Rio Olympics?", "Do you think India has successfully banned black money?", "How do I locate comments I have made on Quora? Does a list exist?", "How i can stop over thinking and start doing?", "Can sociopaths love?", "How do I get funding from investors for my business idea?", "Where did the trojans go after the war?", "Why am I less obsessed with my phone and online dating sites after taking Prozac for 10 days?", "How do I improve my pronunciation of English?", "How do I get rid off from porn addiction?", "How do you feel about Donald Trump winning the election?", "I wish I were straight. How do I make my self straight?", "How do I call a person who has blocked my number?", "What is evil? And what is good?", "Is it wrong to be attracted to a cousin?", "What are conspiracy theories?", "What the the best ways to control anger?", "Why there is so much prejudice against those fonts named as Blackletter?", "If you could change one thing about your personality what would it be?", "Where can I learn to use Git?", "How do I improve my English speaking?", "Can I earn money on Quora?", "If you could rename yourself, what would it be and why?", "From where and how to learn math?", "How do I contact someone on Quora?", "Which or what are the best laptops under 35 to 40000 in India?", "How did Donald Trump win your vote?", "What is website that mechanical engineering students should visit?", "Why is Manaphy bipolar in Pokémon ranger and the Temple of the sea?", "How do I create a successful YouTube account?", "Are there any herbal supplements that burn fat?", "Famous Astrologer in India?", "My suicidal thoughts are scaring me, what should I do?", "What are the differences between mass and weight?", "What are the best books about cryptology? (From beginner)", "Which language is more useful to learn - German or French?", "What is the best place to live in lyon, France for a family with two kids?", "Can you get pregnant on high fertility days?", "Who is the most remarkable political leader of all time?", "Does anyone regret having kids?", "How do I improve my English writing and speaking skills?", "Which is the best institute for preparing for GMAT in Delhi/NCR?", "How much salary is for income tax officer?", "Why won't Quora let me delete my question or edit the extra details?", "Why do amendments get added to the US Constitution?", "Can you help me get a lot more followers on Instagram?", "\"What is the perfect way to answer \"\"Tell me about yourself\"\" in a job interview?\"", "Why so many ads?", "How does it feel like to die?", "What is the best way to share Quora questions on Facebook?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Matapan?", "Is scrapping old 500 and 1000 rupees notes and releasing new 500 and 2000 rupees notes a permanent solution for eradication of black money?", "What are some unknown things about Narendra Modi?", "What happened to the event horizons of the two black holes that merged sendig to us gravitational waves?", "What is the best way to come up with an app idea?", "Which is the best movie of 2016?", "Does a black hole have its own mass?", "How do you politely tell someone that they have offensive body odor?", "What is/are your New Year resolutions for 2017?", "Why don't we feel hungry while sleeping?", "What are the pros and cons of Ceasing Rs. 500 and Rs.1000 Currency Notes in India?", "Can US firms pay an employee, when retiring, only ten months’ wage after he has put in 20+ years with a graduate degree but without a union?", "How wikipedia earn money without publishing ads in their website?", "What's a 3 year study plan for IAS 2018?", "What is your favorite anime and why?", "Let's consider S[math]_{n}[/math]= n[math]^{2}[/math] + 20n +12. So can you find the sum of all possible n for which S[math]_{n}[/math] is a perfect square?", "What is the best business with 10 Lakhs investment?", "Should I buy the new MacBook 2016 or one from 2015?", "What are the safety precautions on handling shotguns proposed by the NRA in Rhode Island?", "What is the actual meaning of a 16, 32, and 64 bit processor?", "\"How does Quora figure out the \"\"Trending Now\"\" topics?\"", "How can I improve my writing skills for writing a book?", "How much medical evidence is there in support of the claim weed causes cancer?", "Where did the question mark (?) come from?", "How can I get back my hacked Instagram account?", "Currency is printed by the RBI in India.Then Why doesn't it print unlimited currency to eradicate poverty completely?", "Can god make a rock so heavy that he couldn’t lift it?", "At what age did Ashoka Maurya become the king of Magadha Empire after his Father Bindusara Maurya?", "Is it possible to send messages privately through Quora to someone answering my questions?", "What is the best skill that a computer student should learn?", "How useful has Khan Academy been to you?", "What are some good websites for learning?", "What happens to a Quora question noted as being in need of revision?", "Why is diabetes dangerous?", "Is it important to have a girlfriend?", "How can I clean my white leather sofa?", "What is the difference between a star and an actor?", "What led to the Green Revolution in India? How did it occur and what effects did it have on India?", "Why should you visit India?", "How do I upload profile pic in Quora?", "What is difference between Trade, commerce and Business?", "How do I delete a Quora question?", "What are the best Hollywood movies ever?", "What is the best online IQ test?", "What are the upcoming movies of year 2017?", "Is sex is required in relationship?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Great Sandy Desert?", "How do I prepare for JEE Advanced?", "If you were asked to spend a billion how do you spend it?", "How can I make myself interested in reading book?", "Is it possible to view someone's private Instagram account?", "Which are some of the best performing penny stocks in India?", "What are the adaptations of a great white shark?", "How can you naturally treat eczema?", "How are salt bridges used in galvanic cells?", "How can you get a license to be a gas wholesaler?", "Is it worth staying in OYO Rooms?", "Who is top 1 world famous astrologers?", "Who will win the 2015 IPL?", "What is the best way to spend Diwali when you are alone and not with your family?", "Why does it get me off to be choked while having sex?", "Why are people afraid of clowns?", "In outer space how do rockets move if there environment is a vacuum?", "What the meaning of this all life?", "Who is the best person you've ever met and why?", "Why do some people abuse their dog?", "What are the best content management systems out there?", "What are some examples of herbivores?", "Why did the government decide to scrap 1000 rupee notes and introduce a denomination of 2000 instead?", "How do people make tons of money?", "What should I do to overcome my anger?", "How harmful is it if a dog eats a chocolate bar? What should be done?", "How do I deal with anxiety?", "What TV series are like Game of Thrones?", "Which is more crucial to the success of a startup: the idea or the execution?", "What are the best digital marketing courses for mid-senior level marketing managers?", "\"What can I do if my \"\"lock\"\" button broke on my iPhone?\"", "What are the most interesting products and innovations that Artisan Resource is coming out with in 2016?", "Can I make a million dollars selling baby products, furniture and home decor?", "How do I increase the vocabulary?", "How do I convert blog subscribers into customers?", "What should be done when one feels lonely?", "How do I know if a girl likes me back or not?", "What's organisational structure?", "Would you consider yourself attractive? Why?", "What does Jimmy Wales think of this?", "What is the closest you have been to death?", "How can we improve our handwriting?", "What is the case against legalizing marijuana?", "Is everything on purpose?", "What would happen if Donald Trump dropped out?", "Which is the best laptop to buy under 50000, considering all prospects?", "How do I make a career in animation?", "Should I use a mass gainer or protein?", "Is travel to Egypt safe?", "How can I know if a. guy likes me?", "How do you make great brown rice in a rice cooker?", "How do you disguise a proxy site?", "How do I get internship at Google?", "What is the worst thing that has happened to you for being nice?", "Which are some of the lesser known facts about you?", "How do I attract girls for sexual relationship?", "What could be an intelligent and efficient response to the Uri terror attack?", "How can I read a book every week?", "How can I soundproof a room for music?", "Why is smoking bad for your lungs?", "Can anyone post a questions and answer themselves in Quora?", "How do I buy mobile in debit card with EMI?", "How do i stop dreaming?", "How do I learn music theory?", "How will the implementation of GST bill impact the lives of common people?", "What advice would you give to your 29 year old self? Request", "How can I improve my memory power?", "Are there people who had successful long distance relationships? Can you tell me about your successful experience with long distance relationship?", "Do running increase your height?", "How can I make a good career?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Kuril Islands earthquake in 1963?", "What do you think about Donald Trump and his campaign?", "Is the singularity at the time of the Big Bang thought to be a White Hole?", "How does modern Greek language differ from ancient Greek?", "How can I increase the traffic to a website?", "Which is the best laptop under 60,000 in india?", "Which is the best compliment you have ever received?", "How do I become an amazing person?", "What is the best treatment to reduce puffy eyes?", "What was the craziest dream that you've ever had?", "What are the requirements to become a local budgie breeder?", "What can you substitute for balsamic vinegar in recipes?", "How can I control on my anger?", "How should I control my emotion?", "Is CAT after b.tech in mechanical engineering useful?", "What precautions were taken with Apollo 10 to ensure it did not land on the moon?", "Which political party will win the Uttar Pradesh Assembly Elections 2017 and why?", "Which are the best books for physics?", "Why does my Vizio TV turn on by itself?", "Why does Quora open each link in a new tab?", "What is the best day of your life and what made it so amazing it stayed in your mind forever?", "What is the best school management software in India?", "What is the best way to reduce weight?", "What are the flaws in Indian Education system?", "What are some of the lesser known but must-see places in Pune?", "What is the easiest code?", "What exactly is the criminal Burden of Proof?", "Can I transfer money from a credit card to a prepaid card?", "What are things to consider while buying used iPhones?", "How GST will affect Indian economy after it is enacted?", "Why isn't Facebook loading on my computer?", "What are some recommended books for cs executive December 2016 for all subjects?", "What does it feel like to be a power engineer?", "BDSM: How does one become a professional dominatrix?", "What's the best way to learn Python?", "Where can I download free music?", "What does this world need?", "Can someone yawn or sneeze while he is asleep?", "How can the drive from Edmonton to Auckland be described, and how do these cities' attractions compare to those in Regina?", "When is the time McDonalds serve breakfast?", "Where do typhoons originate? How are they formed?", "Why do some people dislike Apple products?", "What are the best anime hentai sites?", "Which book is best for preparation of physics for NEET?", "Are there any other good communities like Quora?", "Is vacuum energy infinite? If it is, why?", "Should Pakistani artists be banned from working in India?", "Are cows are responsible for 20 times more human deaths each year than sharks?", "What is research fellowship?", "How is Lipton Green Tea related to weight loss?", "What's your favorite song right now?", "Can someone yawn or sneeze while he is asleep?", "How many forces are there in physics?", "Can we time travel through worm hole?", "Why did God create mosquitoes?", "How do I prepare comprehensively for the UGC NET English literature?", "What is the actual use of marker interfaces in Java?", "I'm in love with myself. What do I do?", "What is an easy way to commit suicide?", "What is the structure of a cheek cell?", "Which is best gaming laptop under 60000?", "What's are your resolutions for 2017?", "Who are the worst Bollywood actors and actresses?", "How can I improve my learning skills and improve my studies?", "What is humanity? What is human rights?", "Is there any way get a work visa in UK without having a job/sponsorship firstly?", "What is the best comedy TV serial/series?", "I am 15 yrs old so how many times I have to jerk a week?", "What are the goals of the Galileo global navigation satellite system?", "What movie website can I watch movies on without credit card information?", "Can dentists be called doctors?", "Which movie had changed your life completely?", "Which country has the most beautiful girls? Why?", "We think your work speaks for itself, so there's no need to write a cover letter?", "Which is the most important thing in life?", "What does sex mean to you? What is one of the most akward sex moment during sex?", "What are producers, consumers and decomposers? What are examples of each?", "Will scrapping of Rs 500 and 1000 currency note help in curbing black money?", "Why are all my questions on Quora marked needing improvement?", "How do I recover deleted files with the KeepSafe application?", "What do you think will be the effect of Modi Government's decision of invalidating the RS 500 and RS 1000 notes?", "What are some of the best gadgets of 2016?", "What could be the minimum budget of 3 days trip to kasol?", "Can another cold war occur?", "Why didn't Hillary Clinton deliver her concession speech the night of the election even though she called Donald Trump to congratulate him?", "Would anyone allow their wife to be fucked by another man?", "What is the best question asked on Quora? What was the best answer?", "Does moderately severe depression qualify for an ESA?", "Can I make money online?", "How do I control emotions and reactions in nervousness?", "Why do people often ask questions in Quora while they can Google it themselves?", "Who is or was the best Prime Minister of India and why?", "Who is the most badass professor at IIT Delhi?", "I want to learn coding, where do I start?", "What are some good books for optimization?", "What is one incident you saw which restored your faith in humanity?", "How can I recover my Gmail forgot my password and recovery no?", "What are some good sites for downloading English songs?", "What is it like being black in Japan?", "How do I discourage my 6 year old kid from arts, paintings, and dinosaurs?", "How can one unlearn a habit?", "How can I contribute to the society?", "How can I earn money part time online?", "What are the best digital marketing agencies in India?", "What does IMO mean in a text message?", "How many shapes are there in total and do they all have names?", "Where is the best place to buy an electric guitar in India?", "Why stem cell research important?", "Why do I laugh when people get hurt?", "Why is smoking bad for your lungs?", "Would Hillary Clinton be a good president for US?", "What causes shanty towns to develop?", "What is the best mtech course for automobile engineering students?", "2. Is it possible or how difficult it is to get a job in Australia by applying from India after getting the Australian PR in section 189/190?", "Why can't people just shut up?", "If one of your wish could become reality,what would you wish for ?", "How can I unlock my iphone 6 without a sim card?", "How do I crack Google interview?", "How do I change my personality?", "How did Donald Trump win the 2016 US Presidential Election?", "Do you really love your family?", "How is the mass of the neutron determined?", "What is grey body?", "I'm planning on starting a YouTube gaming channel but I lack Confidence, do you have any words of encouragement or helpful tips, including experience?", "What country do you consider the most beautiful? (Best-looking people)", "Why did Colombian citizens reject the FARC peace deal?", "Which is better between the GATE and the GRE?", "What would be the number of days in a year if radius of earth becomes R/4?", "How should you treat black diarrhea?", "Do you believe Donald Trump can make America great again?", "What should I take in 11th standard to become engineer?", "Do you see a possibility for a third world war?", "Will it be possible to grow vegetation on mars as they have depicted in the movie Martian ?", "Can long distance relationships work out?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "Why is India a great country?", "Is there any chance of World War III?", "Do you care what other people think of you?", "Which is your favourite time of the day?", "Why is a hollow shaft is better than a solid shaft?", "What is BEST gaming laptops under 60000 in 2016?", "How helpful is Pseudoephedrine when you have a runny nose?", "How can I curate my Quora feed?", "How can I prepare for IIT JEE 2018?", "How Did You Ultimately Decide Which Career Path To Take?", "Why is religion so important to a human being?", "What are some tips for a first time home buyer?", "What is the best way to remove crayon from carpet?", "How can I convince my parents to buy me a dog?", "Where can I get necessary legal advice and services in Sydney for property transaction?", "How can I improve my professional resume?", "Who would win in a fight between Batman and Spider-Man? Why?", "What do you look at before investing in a startup?", "I work in a hotel. My manager keeps the fire alarm off. Is it legal?", "What are the ranks of the Navy SEALs?", "How to get percentage between two numbers?", "What was the most peaceful time in human history?", "Why do we put the voltage transformers in parallel and the current transformer in series in the substation?", "How do I can boost my self confidence?", "Why do people try to ask silly questions on Quora rather than googling it?", "How do I get addmision in MIT?", "Is there an app to see how many times your snapchat story is viewed?", "What is the difference between axial flow compressor and centrifugal compressor?", "How is black money curbed with the ban of 1000 rupee notes and introducing new 500 and 2000 rupee notes?", "Quora: How do you post a question on Quora?", "What are the best Harry Potter books?", "I'm 27, is it too late for me to go to medical school?", "What is Cyanogen mod?", "How do I reset my gmail password when I forgot without phone number and recovery mail?", "What is the best way to learn how to hack (whitehat)?", "Which book is best for study of gre?", "Can I find or track my lost mobile device using the phone number?", "How was your experience while travelling in Kerala?", "How can I overcome my tongue and pronunciation problem?", "How can I overcome my survival instincts?", "How does virtual machine works?", "Are there advantages for manual transmission over automatic transmission?", "Why would anyone want catch up with an ex fling when they're engaged to the love of theirs life?", "What are some of the greatest examples of hubris in real life?", "Is the iPhone 6 worth its price?", "What are the pros and cons of banning currency notes of 500 and 1000 in India?", "What movie have you watched the most times?", "Which is the best mass gainer supplement ever made?", "What are the benefits of GST bill for common peoples?", "Why is the philosophy important?", "What can I do if I fall in love with someone who doesn't love me?", "How do I prevent addiction of masturbation?", "Are there any alternative question and answer websites to Quora?", "Does the Hinduism have particular rules in fasting?", "How do I get The Kapil Sharma Show's tickets or passes?", "Is there (already) a factual proof that demonetization in India is Success/Failure?", "How do I learn programming from scratch to start on my own?", "Has anyone found success using Xamarin to develop native mobile apps?", "Daniel Ek: When is Spotify coming to india?", "Is video game addiction even a real condition?", "What if the Dirty War in Argentina never happened?", "How can changing 500 and 1000 rupee notes end the black money in India?", "What's the best movie?", "How do I create an e-commerce website?", "What are the best project management books?", "Who's Going to win the final debate?", "Why do babies cry when they are born? Do all mammals cry when they are born?", "Why should Americans vote for Donald Trump?", "Can I make it to the IITs ?", "Is EagerPanda dead?", "What have you learned from your life?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "Which is the best gaming laptop to buy under 60k?", "Why do Quora users write very long answers to most of the questions? Is it not a skill to give answer very precisely and shortly?", "How will Hillary Clinton beat Donald Trump?", "How do I lose weight ayurvedically?", "What if the South won the American Civil War?", "What is Air India scam?", "English is my second language.How can I improve my writing?", "Which is the coldest country?", "Why are Americans so obsessed by race?", "What are the safety precautions on handling shotguns proposed by the NRA in New Jersey?", "What is the weirdest thing you've ever done?", "What is a source of income through a website?", "How long does crystal meth stay in your system and how can I dilute it?", "What are some good books on the Indian economy?", "Which is the best programming language for a beginner to learn?", "What are some of the best places to visit in Kerala in a span of 5 days?", "How much money do an Uber car owner make in India?", "Why do people ask questions on Quora instead of Googling it?", "What's your new year resolution for 2017?", "How do I master quantitative aptitude?", "Why does girl always try to irritate boys?", "How can homosexuality be natural?", "What are your views on banning 500 and 1000 rupee notes? How does it affect black money and is it really gonna work and expose all the black money?", "What is the Chilcot report?", "What are the safety precautions on handling shotguns proposed by the NRA in Minnesota?", "Why do people ask questions on Quora while They can get all the answers by Googling?", "What is the best way to price your product and still make profit?", "What are the fastest ways to increase height?", "How do I best way to get over an ex?", "Is it true that a dog who bites his owner should die?", "\"Does Quora means\"\" question or answer\"\"?\"", "Why is Voot slow?", "What are the best romantic movies?", "What is a good facebook ad ctr?", "How can I control my sugar?", "What is physical quantities and also its types?", "Which is best European country for tourism?", "How much money do you earn by posting a video on YouTube?", "What is the way to increase the height at the age of 21 years?", "How do I improve my pronunciation in English?", "Who will win if a war came between India and Pakistan?", "Will Leia appear in Episode IX despite Carrie Fisher's death?", "What are the best moments of the 2016 Kabaddi World Cup?", "What is your view on Demonetization in India?", "How would I increase my height aftr 18?", "Why should I not hire you?", "Would America ever elect a Muslim president?", "What are the home remedies for pimples and acne?", "Is World War 3 on the way with the US Elections?", "What's are your resolutions for 2017?", "What are the safety precautions on handling shotguns proposed by the NRA in New Jersey?", "What type of doctor treats hemorrhoids?", "Why is Hillary Clinton a better choice than Donald Trump?", "How will the Star Wars team deal with Carrie Fisher's death?", "\"What inspired \"\"Angels and Demons\"\" by Dan Brown?\"", "What is 3D data visualization?", "Which is the best water purifier brand in Indian homes today?", "What is the best prank ever? Why?", "What are the best steps (1-10) to become a excellent programmer?", "What is the most effective way to suicide?", "Why do people ask such questions here on Quora which could be easily found on the internet?", "I'm a 19 year old high school dropout. How do I become a millionaire?", "Will all the humans on this planet speak one language some day?", "In what ways can I grow taller?", "What's your favorite Bible verse?", "What was it like being in downtown NY on 9/11?", "What is like having sex for the first time?", "Will there ever be a Buddhist president?", "What are the best sources to learn web development for free?", "What is the best advice you can give to a 16-year-old?", "What is it that we as Indians are collectively doing right?", "How should I start learning Python?", "Who are some of the best website brokers?", "How do I prepare myself for NDA?", "What's new about the new 2000 rupee note that will help curb black money?", "Can anyone give me a list of best motivational songs?", "Are there any countries that have their maps on currencies?", "What is the process to study nursing in New Zealand for an international student?", "Where can I hire a hacker?", "Why did Indian government scrap Rs 1000 and 500 note and instead is introducing Rs 2000 note?", "What are the common traits of an introvert?", "What are ways to ease my mother's regret of not attending school?", "What is the life of an IES officer?", "What do you think Heaven is like?", "How can I lose weight ?", "What are the high in-demand jobs in Australia?", "How do I avoid procrastinating?", "Why is Kejriwal against Modi?", "Do you like asking or answering on Quora?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in other deserts?", "Why do Jimmy Kimmel and Matt Damon not get along?", "Would the founder/CEO of a new/small commercial real estate firm that did 25 broker deals this year totaling $55 million be making over 500K a year?", "How do I start a career in film direction?", "What is rave party?", "What STD'S cause paralysis?", "What are some mind-blowing Smartphone tools that exist that most people don't know about?", "How do I reduce cellulite on my butt?", "Why do you think Hillary Clinton would make a good or bad President?", "Are vacuum fluctuations energy in vacuum? Are these virtual particles? How do we know there's this energy if they didn't exist? Do they really exist?", "Will Airbnb have an IPO in 2017?", "How do you get rid of a double chin?", "Where can I hire a real bad ass hacker?", "Why do people call Trump racist?", "What is the best free online IQ test?", "Can you get a virus on a iPhone?", "Game of Thrones or Walking Dead?", "Can you get your penis bigger?", "Should the Indian education system be revamped?", "Which is the best time for studying?", "What is it like being a chemical engineer in the pharmaceutical industry?", "What if the South won the American Civil War?", "Which are your two favorite podcasts?", "I'm 27, is it too late for me to go to medical school?", "How do I forget first love?", "What will be the effects of demonitizing 500 and 1000 rupees notes in Indian economy?", "What’s the best whey protein I can take?", "I'm a student from Mukesh Patel School of Engineering, NMIMS (for a BTech). Can I get an admission in a Mumbai University affiliated college for my master's?", "The Indian government is banning the Rs. 500 & Rs. 1000 notes but it is coming up with the Rs. 2000 note. Will it not cause a generation of black money in the future?", "What does is it mean to love?", "How do you like China?", "What were some of Mother Teresa's contributions to the world?", "Does Palestine exist?", "Is our universe just a computer simulation?", "What are the best online courses for digital marketing?", "What should be done to impress a girl?", "Which is best laptop to buy under 30k?", "What is the biggest reason for why marriages fail?", "What are all dating apps and sites in India?", "Is it possible to have a dream in a dream?", "How do you unlock a disabled iPhone 5?", "What happens if you don't masturbate?", "Why do some answers collapse in Quora?", "What should I gift should I get for my 48 year old mom on her birthday?", "How do I protect a business idea from being stolen from VC? How do I protect the idea from being copied?", "Which is best smartphone to buy under Rs 15000?", "Which is the best coaching institute for judicial services in Delhi?", "What is the difference between scripting languages and object oriented programming languages?", "Why do some people call Donald Trump racist?", "What is Ajay Chandrakar's seeks in direction of becoming the greatest Eco-Tourism Hub in Chhattisgarh?", "Will lime water help in reducing weight?", "What is your review of Mulk Raj Anand [Indian Writer In English]?", "What are the sites to download engineering or tech ebooks for free?", "What is your most embarrassing moment in public?", "What are some movies similar to Tomorrowland?", "What is lambda function in Python and why do we need it?", "What is a simple lie group in laymen's terms?", "How do I get rid of a cold immediately?", "How do I get started as a freelance web developer?", "How can I hack my phone?", "Will demonitization curb black money?", "What are some of the greatest unsolved mysteries of all time?", "What are the chances of finding intelligent life on other planets?", "What are the best free things to do in New York City?", "How does Google or WhatsApp earn money?", "What are some examples of organisms found in the kingdom archaea?", "I am currently pursuing btech from NSIT COE(1st yr), I want to join MIT(US) for MS program after, what are the all steps in detail to be followed?", "What went wrong with Cyrus Mistry as Tata Group chairman and why was he ousted?", "Why are food so expensive in the airports? Are they just playing monopoly or the rents there are very expensive?", "What does a hard disk drive do in a computer?", "How can I get rid of insomnia?", "Can I create a PayPal account without a credit card?", "Is it possible to start a business with (almost) no money?", "What does freedom means to you?", "How can I get admissions to IIIT Hyderabad?", "When do gay people realize they are gay?", "How do I stop my bad habit of procrastination?", "What is it like to have a loved one commit suicide?", "Do you need intelligence to succeed in life?", "What do you think about Modi Government decision to ban ₹500,₹1000 notes?", "What is the best (free) antivirus for a PC just for normal usage at home?", "How can someone become a successful lawyer?", "Why is YouTube loading slowly?", "How can I access my Gmail account if I don't remember any of the recovery account information or have my old phone number?", "Does Switzerland have a reputation for racism?", "How do I set up an N300 Belkin Router?", "THUG LIFE MOMENTS: What are your best thug life moments?", "Does FaceTime work in China?", "How much money can I earn from the internet?", "Which is the most adventurous trip you have done in your life?", "What is your favorite Michael Jackson song?", "What is the claim made that Turkey is planning an intervention of Syria?", "How do i succeed in learning a new language?", "What is the evolutionary purpose of the hymen?", "What are some Interesting, unknown Facts about the Partition of India?", "What are the problems faced by the people of sikkim?", "How can I draw 3D sketches?", "What is a chromosome?", "Can you get seed funding from an angel or VC just based on a great idea and a business plan?", "How can we improve our logical ability?", "How does one use a condom?", "Have you ever experienced any paranormal activities?", "Who won the 2016 popular vote: Trump or Clinton?", "What are the monetary and fiscal policy of Belgium?", "How can I get a base level job at a private equity or venture capital firm?", "How did Donald trump win the elections?", "How much time would it take to learn a new language?", "Is it true that some foods are addictive?", "Why don't many people know about Quora?", "What songs should I listen to when I hate someone?", "What is your favorite position during sexual intercourse? Why?", "Is long distance relationship worth it?", "Why do I get bored with people so quickly?", "What are your 5 favorite poems?", "What is the most expensive phone?", "Why are Indians getting influenced by the Western culture?", "Who is better Raghuram Rajan or Urjit Patel?", "Are we heading toward World War 3?", "What are best books for SSC CGL?", "I'm a mechanical engineering student. What skills should I possess after completing my B.Tech?", "Will apple release a new MacBook Pro soon?", "Why do my condoms always break?", "What is the best way to download YouTube videos for free?", "What is the meaning of life in one word?", "What art print could complement the Brooklyn bridge art print by Andy Warhol?", "How can I increase my typing speed fast?", "What do I do to increase my height?", "Why do we give gifts during Christmas?", "Is it possible to self medicate safely?", "What is the latest update in google algorithm in terms for SEO?", "How can some people still believe the world is flat?", "How do I stop caring about what people think about me?", "How long does it take before marijuana is out of your system? Is there any way to do it faster?", "How would you deal with abuse of power if you encounter them?", "How does a selfie stick works with an Android phone?", "Which is the most used word in the English language?", "What is the expected cut off for KVPY SA Aptitude Test 2016?", "What's it like climbing Mount Kilimanjaro?", "How does the roles of man differ based on the persona's description?", "If infinite dark/vacuum/gravitational energy can be created as universe expands, does it mean that their potentiality or potential energy is infinite?", "Does my boss like me romantically?", "Long distance relationship, is it good?", "What is the most probable cutoff for KVPY SA 2016?", "What are some mind blowing tools and gadgets that mos't people dont know?", "What was the main purpose of the Manifest Destiny?", "How can I get pregnant faster?", "How do I find out if a hot guy is gay?", "How do you start your own internet service provider?", "What is the best place to eat street food in Mumbai?", "Is NASA's moon landing a hoax?", "What is actual meaning of life?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Rostov?", "What do you think is the purpose of our existence?", "What is the proudest thing you have?", "What are the top 10 Bollywood songs?", "How can an individual become a geek?", "What is a good prank lyric text to text to a friend?", "What is the amazing facts about Indian railways?", "What are the best ways to lose weight?", "How will the ban of old 500 and 1000 rs notes help in bringing out the black money?", "How do you determine the chemical formula for aluminum acetate?", "Who is the best arrow shooter Hawkeye or Green arrow?", "Is Donald Hoffman’s interface theory of perception really the true explanation of reality?", "What are the most successful production companies from India?", "What are some possible solutions if I forgot my iCloud password?", "Which Ubuntu 64 bit 14.04 version should I use with window 7 64 bit?", "What is an ionic bond and what is an example?", "Is there any scope of football in India?", "What is the difference between an agnostic and atheist?", "How do I prepare for BITSAT-2017?", "How did you spend the best day of your life?", "What evidence is there that there is something after death?", "How do I lose weight in 1 months?", "Why can't I type a long questions at Quora?", "How and when ISS was send to space?", "How good is Malazan Book of the Fallen series?", "How do I become a cricketer?", "How do I increase font size in Quora?", "What is your biggest regrett in life?", "What is the meaning of life? Whats our purpose on Earth?", "Can I still track my iPhone even if the SIM card is taken out?", "What is the best embarrassing moment of your life?", "How could I remember English words?", "Has Quora reduced the number of books you read? Is it a good substitute for reading?", "What are the main causes for the Russian revolution in 1917?", "How do I get a mechanical engineering job?", "What can I do to improve my English speaking?", "What is the chance of a US victory on Russian soil, if the US and NATO were to invade Russia from the Eastern front, like Hitler did?", "What is the law of demand?", "Is there any Nano technology GPS tracking features in new 500 & 2000 rupee notes to be released by Reserve Bank of India?", "What are some examples of a unitary government?", "What are the uses of MS Excel?", "What is the meaning of syllable?", "My answers wont submit -instead get saved to drafts. If I go on my iphone I can open the draft, click 'done' & then it will post, but not from my PC?", "What mistake do you regret the most?", "How did Donald Trump win the 2016 US Presidential Election?", "Is there evidence that the illuminati exists?", "What do you think the future is going to be like?", "Daniel Ek: When is Spotify coming to india?", "What is the conspiracy theory you believe the most? And why?", "What are some of the best ways to study or prepare for the GMAT?", "What is difference between private limited companies and public limited companies? What might be some examples?", "What will be the repercussions of banning Rs 500 and Rs 1000 notes on Indian economy?", "How do I get free Pokemon go coins?", "I don't know anyone at Amazon. How can I get an software engineering interview there?", "What would happen if earth stopped rotating?", "What is Obama like as a person?", "How do I get 1TB of free data space?", "What does being a student at UC Berkeley REALLY feel like? How hard is it academically? Also, is it true that the environment is not safe?", "Which companies or startups in India are currently hiring Industrial Engineers?", "Where can I get very smooth and uncomplicated assistance in Sydney for any property transaction?", "How do I use Derma Care Complex?", "Why is there the flat Earth debate?", "How can one prepare for the TOEFL?", "Do you think the passing of the GST bill proposed by the BJP would enhance the economy and would it be beneficial to the common man? If so, how would it serve as a surplus to the country?", "Why shouldn't you eat food late at night before bed?", "Should people who don't understand or care about foreign policy be allowed to vote?", "How did time begin to exist?", "Are animals capable of feeling/experiencing emotions unknown to humans?", "Add questions on quora?", "Is 80,000 pounds enough to live in london?", "How do you express your creative side?", "Why do people get lonely?", "What are ways I can increase my height (I'm a ftm Asian)?", "How can I become a good developer?", "What are the best books to learn advance c++?", "What is the best way to reduce weight?", "What are the qualities that you look for in your future wife?", "Which is Shahrukh Khan's best piece of work?", "What is a good website to get free ebooks/novels?", "Why are all of my Quora questions marked as needing improvement, even though they meet all of the guidelines?", "How can I find a person from his picture?", "Can I save internet and use it later?", "Why do some people see conspiracy theories behind most everything?", "What are the best career option for a Diploma holder in Electrical Engineering?", "Which are the best books for ias preliminary exam preparation?", "Why does Quora always mark my answer as need for improvement?", "What are some successful ways to quit smoking?", "Our college blocked some sites like YouTube, Facebook, etc. What are some ways to access it?", "How could I gain weight?", "How do I start preparing for IAS exam? How much time should I spend on which subject?", "Did Jesus Christ actually exist?", "How could I increase my height?", "How can I win every argument?", "Why does Microsoft Word not open? How can I fix this?", "What strategy should be followed for sociology optional?", "When will I find my true love?", "What are some things in which you believe but almost no one else agrees with?", "How do you make friends post-college?", "Do you think India is a great country? If so, why?", "What are the biggest strengths of The Indian Army?", "Can I be arrested for downloading from torrents in India?", "What are the safety precautions on handling shotguns proposed by the NRA in Michigan?", "What time is good for gym workout? Morning or evening?", "How do small businesses get funding?", "Why is Hillary Clinton a better choice than Donald Trump?", "What are the options after doing Arts?", "Can we stop global warming? What are some ways and ideas to stop it?", "Is Singapore a city or a country?", "Can a 1D or 2D object actually exist?", "Should I buy DSLR?", "What are the best interview questions ever asked?", "Can someone who has blocked my number see when I call them?", "How can I improve my career?", "How do I overcome smartphone addiction?", "Where can I get best assistance in Sydney for any property purchasing?", "What is the best thing to do with your life?", "What is the difference between transactional SMS & promotional SMS?", "What are the top most SEO Company in Delhi?", "What are the best laptops for students?", "How is lost luggage found?", "What are the best things that have been made in Minecraft?", "Why is Saltwater Taffy candy imported in Jamaica?", "Why does Quora continue to use Flash on the website?", "What is average acceleration? How does acceleration occur?", "How can we control our dreams?", "What is the best gift for father?", "If a movie was to be made about your life, who would you like to play 'you'?", "Do you have to light a pilot light for a RV fridge to run on propane?", "Is it possible for dogs to catch worms from other dogs?", "How often should I check my engine oil?", "How much powerful a human mind can be?", "Are there many Mexican women that like East Asian men (Korean, Japanese, Chinese)?", "How can I get BLUE Verification on Quora?", "What are some less known facts about pyramids?", "How can i earn through youtube?", "How will banning Rs. 500 and Rs. 1000 notes help in overcoming corruption in India?", "Do girls prefer bad boys or gentlemen?", "What are the biggest culture shocks people face when coming to China?", "Can you give me feedback on my YouTube Channel?", "If I was wrongly arrested and court found me not guilty can I get bond money back?", "What is the best way to overcome negative and depressing thoughts?", "How can you write an informative speech about autism?", "What does an industrial engineer really do?", "Where can I hire a hacker who can find out the real owner of a fake Facebook account?", "How can I make sure that no one can see my friends on Facebook?", "Is it worth buying twitter followers?", "Where can I get free books to read or download?", "Why does power loss occurs in digital circuit?", "How do I check if milk is adulterated by urea and detergent at home with chemicals?", "Is milk actually good or bad for your health?", "Bollywood: Why do Hrithik Roshan and Kangana Ranaut send legal notices to each other?", "Can we increase our height after 18?", "How much did Philippines pay to the Permanent Court of Arbitration?", "What are your views on India banning 500 and 1000 notes? In what way it will affect Indian economy?", "What is an Amazon?", "Can someone read my text messages if they blocked me?", "What does a near death experience feel like?", "How do I become a web developer?", "How do I earn money online?", "How can I help someone with anxiety and social disorders?", "What is the peak Quora usage time in GMT?", "How can anyone increase height?", "Why do people answer questions on Quora when they are not forced to do so?", "Which is oldest and first civilization developed?", "Why isn't the RBI using de-monetization of ₹500 and ₹1000 currency notes as an opportunity to push for polymer notes?", "Why is Ponyo Whining in the anime?", "What are the most inspirational articles from Seth Godin's blog?", "How can I increase traffic on a website without spending money?", "Discuss the main factors that have contributed to this remarkable economic success of China since 1978.?", "Why is sugar bad for you?", "How do I apply for pan card (lost)?", "Why does my life suck?", "What will a productive day be like for you?", "What happens to the brain and/or body when you miss a night of sleep?", "What is a business organization?", "Which are the best Drug or Alcohol Rehab, Detox and Recovery Program Centers in the Los Angeles County California area?", "Where can I find part time jobs in Hyderabad?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Rutterdam?", "How do I reset my Gmail password when I don't remember my recovery information?", "How do seduce aunties?", "Why is number 13 considered as bad luck?", "When and why do people commit suicide?", "What should influence my decision when buying a secondhand car?", "Which is the best WhatsApp forward you have seen?", "Live in relationship is better than marriage?", "How do I make my girlfriend happy on her birthday?", "How should I start the preparation of IAS exam from my graduation level?", "Do You Think Gay Marriages or Homosexuality Should Be Legal In India?", "What are all the best places to visit in goa?", "How can you make money from Quora?", "What should I do if I forgot my email and password for my snapchat?", "Which startups are up and coming in Mountain View?", "Do you get along with your family? If you do, why or what not?", "Why is my left ear itching?", "What is your favorite song of all time and why?", "Which is the best laptop to buy for rs. 60000?", "What are the good options for mobile phones under 15000?", "How much does it cost to build a website in India?", "What are ways to make money online at home?", "Who is the better candidate for being the President of the United States of America: Hillary Clinton or Donald Trump?", "How can I get rid of my acne?", "Which is the best website design company Delhi/NCR?", "Is there a male Brazilian waxing salon in Mumbai?", "What are your New Years resolutions for 2017?", "How apps like paytm earn profit when they are giving so many cash back offers?", "What is the best thing you have ever read on quora.com?", "How can I become a Top Question Writer on Quora?", "What are some great documentaries that are available for free online?", "Can you block someone from seeing your answers on Quora?", "How do l improve my communication skills?", "India: What is the best phone to buy between (₹, Rs, INR) 10-15k?", "What are the best places to visit in Goa?", "How can I remove a virus from my phone?", "What is chromosomal mutation? What are some examples?", "How do I become a big programmer?", "What the best place for study in Manchester?", "How can I see who views my Instagram video?", "What is South China sea conflict all about?", "What are the best ways to download YouTube videos?", "When did you first realize that you were gay?", "How exactly do I go about contributing to an open source project on GitHub?", "What are the essential skills for a mechanical engineer to be employable?", "Why are oceans blue?", "Why is the number 666 considered Satanic?", "What are the advantages of adding railway budget to general budget?", "Will Donald Trump or Hillary Clinton win the 2016 US presidential election?", "How does it feel like to be living in America?", "How can I improve my spoken English ability?", "After demonetization, which could be next step that needs to be taken by Indian Government to prevent black money and corruption?", "I searched product on Snapdeal from that day how I do get ads of that product on some websites and Instagram?", "Does anyone believe that there is life on other planets?", "Has Obama been a bad president?", "How can I learn the top marketing skills?", "How do I get a mechanical engineering job?", "Why is my question marked as needing improvement when it is perfectly clear and well written?", "What is the first step in starting a business?", "How can I upload my profile picture in Quora?", "Where should I stay in Goa?", "What are some of the best dialogues in Bollywood movies of all time?", "Can you make your own ecommerce website on Shopify?", "What is the use of Quora?", "Which kingdom is composed of eukaryotes which are mostly unicellular that can be heterotrophs or autotrophs?", "What are the different paths one can take after B.A economics?", "What are the time dilation effects on the ISS?", "Where can I sell entrepreneur ideas?", "Which phone should I buy under 15k?", "Why did Arnab Goswami quit TIMES NOW?", "What is hydrocephalus? How is it treated?", "How do I change my profile photo in here on Quora?", "What is the intended purpose of the Community Reinvestment Act?", "What does the government do with the black money collected in income tax and service tax raids?", "What are the best ways to get sponsorship for Indian college fests?", "Should I learn the Java programming language or the C++ programming language for game development?", "What are common mistakes made by college students?", "What are Accenture's recruitment criteria?", "Need to learn HVAC quickly. Any suggestions?", "Who was the greater general, Russia's Zhukov or Germany's Von Manstein? Why?", "Does the entire brain pick up on any changes in neural activity by means of reading any change to the EM field caused by a localized activity?", "Which are the best Bollywood movies of 2016?", "When do bones stop growing?", "Why did the government decide to scrap 1000 rupee notes and introduce a denomination of 2000 instead?", "What are the functions of commercial banks?", "How can I earn money through YouTube?", "Where can I learn to sing exclusively online?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Dasht-e Margo?", "How can I improve grades in high school?", "What makes a research paper good enough to be published?", "What are some successful ways to quit smoking?", "What is the most interesting fact that you know and I don't, but I should?", "What books should I read to learn more about quantum physics?", "What are your best moments of life?", "Do prokaryotes have cell walls or cell membranes?", "What is the cheapest, painless, easiest way to commit suicide?", "\"How do you search for questions from several \"\"question topics\"\"?\"", "What are the causes and types of diabetes?", "Which DSLR is better to buy in October 2016: Canon 700D or Canon 1300D?", "Do vaccines cause autism?", "What are the most repetitive or frequently asked questions on Quora?", "How can I find all my old Gmail accounts?", "What was that best moment of your life?", "What are the top universities for computer science in the world?", "Can I get my driver's license and permit in a state I do not go to school in without any legal consequences?", "How should I improve my english communication skills?", "What details did NDTV leak that made the Indian government to ban it?", "What are the main differences between the GRE and the GMAT tests?", "How could I be fluent in English?", "What is pepper spray and how does it work?", "What is cause for diabetes?", "How can I get rid of my acne caused by stress?", "How much is a software engineer paid per month in India?", "Whom you consider better between Indira Gandhi and Narendra Modi and why?", "Is it possible that Trump entered the Presidential campaign to ensure that Hillary Clinton wins?", "How do you make easy money online?", "Can something have negative mass?", "\"What does \"\"dog day\"\" mean?\"", "How much time will spotify take to land in India?", "How does one improve themselves to be better?", "What is the difference between structuralism and poststructuralism?", "In what ways would a Donald Trump presidency be good for America?", "What I can do for become normal?", "Why was cyrus mistry removed?", "What is the difference between concept of dimension in physics and mathematics?", "Would ISPs block forums without net neutrality?", "What do I need to learn to become a programmer?", "What's the difference between social anxiety disorder and avoidant personality disorder?", "How close are we to world war?", "What are the cool new features of iOS 10.0?", "Who is better between Hillary Clinton and Donald Trump as a US president?", "What should I do to impress a girl?", "How can I get admission in the IITs?", "Are bicarbonate of soda and baking soda the same?", "Will Donald Trump or Hillary Clinton win the 2016 US presidential election?", "How can I make 800,000 a year reselling?", "If you shoot me at 3 feet with a Desert eagle .50AE in the forehead can I survive it?", "Why is diversity a good thing?", "Why can't you delete your own questions on Quora?", "Do you really think democracy is the best of all forms of government?", "Who is better Mika Singh or Kailash Kher?", "What does sex feel like to a man?", "What are the top 10 Bollywood songs?", "How do I get a lean body?", "How do I downvote a question?", "What is the best method to remove water from your ear?", "Did RBI confirm that GPS chips have been used in new 2000 rupees notes?", "What is biological magnification and how is it done?", "How can I motivate myself and stop wasting time in browsing websites?", "How is the IELTS speaking test experience?", "What's good song for a best friend lyric prank?", "How much do furniture salesmen make?", "Why does my question need to be improved and how to improve it?", "What would happen if Donald Trump drops out of the race right now?", "If I smoked two good hits of meth on Saturday will I pass a urine test on Monday?", "How can I hack Facebook?", "How can I get rid of flying cockroaches?", "How was the bear attack scene made in the movie The Revenant?", "How can I become a quant analyst?", "What are the benefits of applying aloe vera on your face?", "Why do insects like light?", "What is the Arab-Israeli conflict?", "What's your opinion about the decision on removal of 500 and 1000 rupees currency notes?", "Why is Harley Quinn so popular?", "Can god make a rock so heavy that he couldn’t lift it?", "What are some symptoms of postpartum depression?", "Is WW3 inevitable?", "What is your review of Time Management?", "What does Mark Zuckerberg usually have for lunch?", "How can I permanently delete my question from Quora? Can deleting the profile help?", "How much time will spotify take to land in India?", "What are some good shoes which I can wear casually that cost less than 2500 INR?", "Does drinking green tea for weight loss really help? Does it have any adverse effects on your skin?", "How do you differ a coyote from a fox?", "Which is the best gaming laptop under Rs.60000 in India?", "Why do most Quorans ask questions here instead of googling answers?", "What is the best career for starting a business?", "How's the life at IIT?", "How can I have sex with my mom?", "What drastic changes can take place in Indian economy owing to ban on 500₹ and 1000₹ notes?", "What is actual meaning of life?", "How can I recognise a fake friend?", "How should I reduce hair fall?", "What are some good books written by African or Afro-American authors?", "Is American Sniper realistic?", "Why Sweden is the rape capital of Europe?", "How do I score good marks in exams?", "What are the best machine learning online courses?", "How can I attract women?", "What are some examples of mullerian mimicry?", "Why is India failing so miserably in the 2016 Rio Olympics?", "\"\"\"honey did you leave your brain at langely again?\"\"\"", "What programming languages are best to learn?", "How can you cook sausages in the microwave?", "What are the points every website development brief should contain?", "Which are the frequently asked interview questions for Java/J2EE?", "How do I calculate IQ?", "Can dogs smell cancer?", "What are some symptoms of eccentric and concentric contractions?", "How can I lose weight at age 55?", "What are the most interesting data visualization blogs?", "Finance: How can the Panic of 1907 be explained in layman's terms?", "Why do you have to refrigerate Bailey's Irish Cream after opening them?", "What is the best area to stay in Miami with your family?", "Is the PTE easy compared to the to IELTS test?", "How can I get a complete list of all my gmail accounts?", "Who is the best and most inspirational politician in India?", "How do you train a Rottweiler/Pit Bull puppy?", "Which is the most used programming language in the world currently?", "How can track an android phone location with the victims number without the persons concent?", "Why did the National Media of India is always Northern biased?", "Why does the channel Set Max always show the movie Sooryavansham?", "How do I deal with heartbreak?", "What was the Boxer Rebellion?", "What are the best knife sharpener?", "What should I do to have a Wikipedia page in my name?", "What are the ways to drink green tea for weight loss?", "Where did you meet your partner?", "Does House Baratheon have any future?", "How i can write basic compiler in C?", "What is wrong with our education system today?", "How can one earn money online without investment?", "Where can I get wide variety of formal dresses, bridesmaid dresses & evening dresses in Gold Coast?", "Why does everyone on Quora seem to be ridiculously successful?", "What is radiant energy? Where is it found?", "What are the best stairbuilder companies in Queensland, Australia?", "How will the India demonetization of 500 and 1000 rupees notes will reduce black money?", "Why is Saltwater Taffy candy imported in Italy?", "What is the national festival of India?", "How will it affect international students coming to the US for undergraduation now that Trump has become the President?", "How do I make my Quora feed interesting again?", "What are your new year resolutions for 2017?", "How do I get over regrets that are making me unhappy?", "How do online grocery stores make a profit?", "What are some of the worst experiences you've had with your boss?", "How do I lose body fat in two weeks?", "Where can I find the SBI SO question papers of the previous year?", "How can I recover the deleted messages from my iPhone 5?", "Is it important to be spiritual?", "Banning 500 and 1000 rupee notes is appreciated but why is the government bringing 500 and 2000 rupees again into the market?", "Do you enjoy Native American flute music? Why or why not?", "Who is your favorite character on Once Upon A Time?", "What political strategy should Theresa May adopt for Brexit?", "Why is Hillary Clinton a better choice than Donald Trump?", "What are the happiest moments in a CA's life?", "How do I approach this pretty girl on the college campus?", "Why is Saltwater Taffy candy imported in Poland?", "How can I get investors for my business?", "Does looking at computer screens damage your eyes?", "Can demonetization help India or not?", "Why do people hate Israel?", "What country has the best cuisine and why?", "What Should India do on Uri Attack?", "Excuse me,who can tell me what the differences between the different countries?", "What is the reason why the systolic pressure is higher than the diastolic pressure?", "I want to be a hacker. What should I know and from where should I start?", "\"What is the meaning of \"\"cease to exist\"\"?\"", "Out of every demographic group of people, which is the most privileged in the US?", "Why do people believe in God?", "Why do people ask questions on Quora that are just as, if not more than easier to, look up with a search engine?", "Who is the most over-rated Bollywood actor/actress?", "Do people watch comedy nights with Kapil in Pakistan?", "Which is the safest train car to sit on average? Is it towards the front by the engine or towards the back?", "What are the initial steps to start a startup?", "How can you own a finger monkey?", "What are the best business school case studies?", "Is dark energy and vacuum energy potential energy infinite?", "What are the importances of information literacy?", "What is the best way to get started with learning Android development?", "How effective is Neosporin for dry skin?", "After marrying and while applying for a Green Card, can I stay and work in the US?", "What is the meaning of an angel with black wings?", "How come Donald Trump manage to win Florida?", "Is there any way to hack facebook account?", "How is the mass of the electron calculated?", "What do you think of Mr. Modi's decision to discontinue Rs 500 and 1000 currencies as of midnight November 8th?", "Which is the best song of Sunidhi Chauhan and why?", "Are antimatter and dark matter the same thing?", "How can I make money through YouTube?", "Where do I find the PUK number for my Safelink phone?", "Where can I read poetry books online?", "Can you describe the best moment in your life?", "If your country had a slogan what it would be?", "What is your review of Fantastic Beasts and Where to Find Them (based on J. K. Rowling's book 'Fantastic Beasts and Where to Find Them') (2016 movie)?", "Does Leonardo DiCaprio really donate money to charity? Does he really care about climate change?", "Why do some people currently believe the earth is flat?", "What are the tips for better public speaking?", "What do I do when my employer has not paid me?", "Whats your favorite Pokemon?", "How do you know if you love a person?", "Which laptop is best under 25000 INR?", "How can one apply for an internship in DRDO?", "Can I upload part of anime videos on YouTube and monetize it without copyright issue?", "Does the Amazon associate program allow for international affiliates?", "How can I potty train a Pug puppy?", "I'm 23 and have no income. I'm homeless and no one seems to be hiring. What can I do?", "How can I reduce my weight and tummy?", "What are the main characteristics of a gothic story?", "What are the best TV series worth watching in the English language?", "What would be required for Gary Johnson to win?", "Does Stannis feel guilty for killing Renly?", "Why do students feel sleepy during lectures even after 12 hours of sleep in colleges, specifically in IITs?", "How can I get a clean shave in the bikini area?", "What are the best ways to maintain a true work/life balance?", "Why is there separate laws for Muslims in India?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Gibson Desert?", "How do I can boost my self confidence?", "What would you ask Tim Cook if you had the chance to meet with him?", "Is there a way to query the Quora database?", "If you were to start your own business, what would it be and why?", "Should I try to work for two companies at once?", "How can we create android apps?", "Is Donald Trump fit to be president?", "What is the best time to study, day or night ?", "What are the ways to get a Permanent Resident in USA?", "What can I do to improve my English speaking?", "How can I travel the world for free?", "Why do metals conduct heat? How do they conduct heat?", "When was the tradition of celebrating new year started?", "Why is Taylor Swift famous?", "What is the best programming laptop?", "What are the differences between Hindustani classical music and Carnatic music?", "What is the most recent explanation or definition of the Observer Effect in Quantum Physics?", "How can I increase traffic to my website using social media?", "How much fertilizer should I add to one pea plant?", "How can Donald Trump win the election to become POTUS?", "What are the most interesting career options in India?", "What has been the best moment in your entire life?", "If a silverback gorilla fought a grizzly bear who would win?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Dasht-e Kavir?", "How long did the Roman Empire last? Why did it last so long?", "How do I introduce the product to my customer?", "Which programming language is best for developing low-end games?", "Where can I find best plaster of Paris in India?", "What's the best way to drive traffic to a blog?", "How do I self study for Olympiad Maths?", "How do power grids work?", "What is Karl Marx's economy or Marxism in a simple way?", "Can heating points in the room affect Electronics?", "What would happen if all presidential candidates died or could no longer run except for one?", "How do I gain weight in naturally way?", "\"Why is the Navy and Air Force of the United Kingdom \"\"Royal\"\" and the Army is not?\"", "What's the best language in the world? And why?", "How can I reduce fat from right side of face ?", "What are some new but great career opportunities that people don't know about?", "How will it affect international students coming to the US for undergraduation now that Trump has become the President?", "How much depth can radio waves penetrate in a wrinkled aluminium foil ball?", "Can I change my field of working?", "What is the meaning of living life?", "What is SLE?", "Is it safe to visit Pakistan as a Jew with a non-Israeli passport?", "Is it possible to stop masturbating?", "What are the top high schools of the world and what are their curricula?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Kalahari Desert?", "Which is the best earning business in India with less investment?", "How did monkeys get to South America from Africa or Asia? Aliens? God? Magic?", "How do I use FaceTime on a Mac?", "Does technology make the world a better place?", "Why do people write questions on Quora that could be answered with a quick web search?", "What are the best Smartphones tech gadgets?", "How do I start with learning a new language?", "What are the best books for learning computer science?", "Why do I care so much about what other people think of me?", "Is the claim of surgical Strikes by Indian Army real?", "What is the worst mistake you can make at work?", "What is the colour of sun?", "If universe is expanding without a limit and dark and vacuum energy are created as it expands?", "Is stock market worth investing in?", "Who won the second presidential debate between Trump and Hilary?", "Would you date a billionaire as a woman? Would it change your decision if he told you on the first date?", "What is best way to buy new car?", "\"What are some movies similar to \"\"L'auberge espagnole\"\"?\"", "Are we near World War 3?", "What's the decision that changed your whole life?", "How difficult is it to learn r programming for someone having no knowledge in computer programming?", "How can we think out of the box?", "How is Cengage Books for JEE Advanced?", "What does 4 days late on my period mean?", "How does Quora decide the order of the answers to a question?", "What’s the funniest thing you have seen your dog do?", "What can one do to control his/her anger?", "What is the difference between happiness and contentment?", "How can I specifically improve my English?", "How long does the battery last on an iPhone 6s? Does it need nightly charging on moderate use?", "Why is Pakistan denying the surgical strike?", "How should I earn money online working from home?", "What are the best recipes for cocktails made with wine as an ingredient?", "What is the correct time to take green tea for weight loss?", "How will real estate prices be affected in India after banning of 500 and 1000 rupees notes?", "Why is Spotify not available in India?", "What are the foods with highest level of antioxidants?", "Which supplier provides genuine Davisco Whey Protein in India?", "How do grizzly bears adapt to their environment and its changes?", "What is IP address?", "How can I increase a website traffic?", "How does baptism and christening differ?", "Is making life multi-planetary related to gang stalking?", "How does the change in Indian currency affect Indian economy?", "Why can't anything travel faster than the speed of light?", "How do I make physics easy?", "What happens to a Quora question noted as being in need of revision?", "What are your New Year's resolutions for 2017?", "What would be Hillary clinton's policy on India?", "Can skipping increase your height?", "How will introduction of new INR 500,1000,2000 in place of old Rs 500 & 1000 curb future black money accumulation by corrupt politician?", "Why is absolute zero temperature -273.15 degrees? What is so special about this number?", "What is the right age to retire?", "How can I earn more?", "How do I get over a breakup?", "Should I buy a new iPhone or wait for the new one?", "Why do people ask so many Googleable questions on Quora?", "Is it worth going to a university?", "How could I improve my English?", "How does passage of the GST bill help the common man in India?", "What are the job opportunities for environmental engineer in Canada? What are steps to secure a job.", "How do you start wholesaling real-estate?", "Could you list the pros and cons of cons of a electric violin and list everything they can normally do.?", "What is meant by surer foundations?", "Why are more than 80% of American males circumcised?", "What would happen to the Earth if the moon disappeared one day?", "How LSD works?", "What are the safety precautions on handling shotguns proposed by the NRA in Michigan?", "How can I slowly lose weight?", "How do you factory reset a Dell computer?", "Instant support @! 1800:||:2,5.1:||:49.1,9 for Avg Antivirus Tech Support phone number?", "When did you first have sex? How many people have you been with?", "What has been one of the best decisions of your life?", "Can we time travel anyhow?", "What are some animals that live in the desert?", "What makes a great problem solver?", "Where can I test my IQ online? Is there any free source?", "Is there a Hindu view on homosexuality?", "What is it like working at Goldman Sachs?", "Is A.I. an existential threat to humanity?", "What does it feel like to shoot someone?", "What do female soldiers do when they get their periods?", "What are some classic Indian recipes for chicken? D", "What are prons and cons of banning and replacing ₹500 and ₹1000 Notes in India?", "What is the difference between kinase and phosphatase?", "Which is the best source to learn French?", "How do you know you're in love again?", "What is your New Year Resolution?", "Is there difference between sex and gender?", "How does a long distance relationship work?", "When should you refinance a mortgage?", "How do I make friends.", "\"What is best 30\"\" monitor?\"", "What are some of the common misconceptions about your country?", "Is it possible to get pregnant if a couple is trying just 4 days before her menstrual cycle?", "What are the best investments?", "How can I know whether I'm beautiful?", "When will India be a developed country?", "What is your favorite Martial Art and why?", "What are some good and cost effective places to stay for an Indian in Geneva, Switzerland?", "What the best way(s) to fight boredom?", "How do you post a question on Quora?", "What is the sense of life?", "Will Akhilesh Yadav win UP Election 2017?", "I'm fat. How do I lose weight?", "How does one eat ice cream?", "What is a possible way to send a GIF in WhatsApp?", "What should I do to be interesting?", "Why do non-deserving people get everything and those who do struggle very hard for years?", "What is aromatic?", "What metals can you take to a scrap yard?", "How do you make yourself completely come out of your comfort zone?", "Why does Quora prompt a question mark?", "Can two people representing the same country be in a final at the Olympics?", "What will it take for the front facing cameras in phones to be placed behind the screen?", "Which is the best English adventure movie?", "Which is the best economic magazine?", "What would you do if you won a million dollar lottery?", "I completed civil engineering and I am interested in doing an MS. Which country is the best choice for me?", "Is it possible to travel time with real life?", "Can I charge my phone with a charger that outputs different amperes than my normal charger?", "What are the safety precautions on handling shotguns proposed by the NRA in New Jersey?", "Did Hitler have children and where are they?", "What is important in human life?", "How can you make yourself get up early in the morning?", "Why was the Atlantic Charter important?", "My friend is depressed, what can I do to help?", "Why are there more female teachers in primary schools?", "What are some of the best horror movies?", "Are there any direct flights between Leeds and Ibiza, and what are Ibiza`s main tourist attractions?", "How does real estate work?", "What is the best laptop within 60k available in India?", "Why can't we produce oxygen like trees from CO2 and reduce global warming?", "What will you do in the last day of your life?", "Who won the 2nd 2016 Presidential debate?", "What is the difference between a COO and a CEO?", "Why are some people so pretentious on Quora?", "What are some businesses that can possibly make me a billionaire?", "How safe is using Neosporin on cracked lips?", "What is the best beach in Goa?", "Do you like China?", "What will the RBI do with the old 500 and 1000 rupees notes that they will receive?", "What are the best books of phonetics?", "If Donald Trump is elected President of the United States, how will he affect U.S.-India relations?", "How much sleep does one require?", "What are the best ways to think of ideas for a startup in India?", "Which is the best TVS service center in Bangalore for Apache RTR 180 ABS?", "Who is working remotely and how does it go?", "Who is the worst actress in Bollywood today? (Explain in Brief Please)", "What materials did you learn data structures and algorithms from?", "Is it possible that Gods were aliens?", "How do I prepare for Gate 2018?", "What are the questions that the interviewers ask in Christ university, to students who are switching from science to arts stream (undergraduate)?", "Is it worth buying iPhone 7?", "How do satellites send back signals to earth?", "Who is the better candidate for being the President of the United States of America: Hillary Clinton or Donald Trump?", "Why are utensils made of steel not used in microwave?", "What is the best way to get a government job?", "Can any one give suggestions which laptop should I buy at the range of 30000?", "How do I approach a girl in college?", "What are some of the best real life examples of Instant Karma?", "What are the safety precautions on handling shotguns proposed by the NRA in Alaska?", "How do Christians reconcile their support for Donald Trump?", "What are some of the interesting facts about 'Amchi Mumbai'?", "What movie is the best movie of 2016?", "What is exactly wrong in Samsung Galaxy Note 7 battery causing it to explode?", "How do I get winter internship at iit for electrical student?", "How can I develop photographic memory skills?", "What are the causes of the fall of the Roman Empire?", "Can I change into an extrovert from being an introvert? And how?", "How is Christmas celebrated in different parts of the world?", "Why am I always thinking about suicide these days? I failed in life", "What is the most important thing in our life?", "What is the fastest way to double your money?", "How do I best outline my novel?", "Where can I start my own country?", "What company has produced the most millionaires?", "Meaning of dream, I dreamt its raining n n feeling difficult to take my father's dead body. Who was passed away before 2 mon?", "Why is your favourite anime your favourite?", "How can I download youtube playlists?", "Why are there mountains?", "How can I loose weight naturally without exercise?", "How do I cope with a long distance relationship?", "Is it true that the number of seats in AIIMS new Delhi will increase from 72 to 100 from 2017?", "What is digital marketing and how to set career in digital marketing?", "What is the importance of osmosis for a cell?", "Which are the 10 best Hollywood movies?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Andreanof Islands earthquake in 1957?", "Do iPhone 6 and/or iPhone 6 Plus really bend?", "My parents are always fighting, what should I do?", "What is the favorite Bible story of Hillary Clinton in the Old Testament?", "How does the WhatsApp call work?", "How can I get rid of a cough and scratchy throat fast?", "What is the third law of thermodynamics?", "How can one get rid of gynecomastia (male breasts)?", "What are the best books to start learning about finance?", "Do you have a tattoo you regret? If so, what is it and why do you regret it?", "I have forgotten my password in Gmail account. What should I do? I need this account.", "What is the entire process of becoming a certified ethical hacker?", "What are the reasons of hair loss?", "What is the colour of jealousy?", "I think I like someone. What should I do?", "How do I recover password for Gmail password without security questions?", "Is it possible to lose 40 pounds in one month?", "How long does Bill Ackman (approximately) have before he gets squeezed out of his short position on Herbalife, assuming the stock price doesn't fall?", "If you were to establish a country, what would it look like?", "How do you get out of boredom?", "Who will win this presidential elections 2016?", "What is the best digital marketing course online for a beginner?", "How difficult is it to get into Wharton's business school?", "What are the main branches of natural science? How do they differ from each other?", "What are the best ways to make money online?", "Which is the best bass in earphone under 1000?", "What are your thoughts on the new 2016 MacBook Pro?", "What are the career opportunities in companies after an M.Tech in aerospace engineering with a B.Tech in mechanical engineering?", "What is genetic drift?", "How do I set .htacces file for solving canonical issues and image expiry issue in .aspx websites? As apache server don't support .htaccess file.", "What's the average number of answers to each question on Quora?", "How do you know if someone is a psychopath?", "Is it possible to view someone's private Instagram account?", "What is your opinion on PM Narendra Modi's decision to ban INR 500 and INR 1000 notes?", "Why is inflation pretty low in the USA despite unemployment being pretty low as well as loose U.S. monetary policy?", "Is it safe to have anal sex without condom?", "What is the the best way to learn programming?", "What is best investment option?", "What is your review of Moana (2016 movie)?", "What are some examples of biotic and abiotic factors found in the environment?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Andreanof Islands earthquake in 1957?", "What is the relationship between linear and angular velocity?", "How can I get rid of eyebags?", "What are the enlightened despots? What is the meaning of enlightenment despots?", "What are the best YouTube channels to learn Japanese?", "What are the best ways to invest money?", "What is mean by an odd number?", "What does the world think about caste systems?", "Why are Saltwater taffy candy imported in the Philippines?", "How can I lose my weight quickly without doing exercise?", "What are some less known English words?", "Why are separatists burning schools in Kashmir?", "What are some good Picnic spots near Pune?", "Do dreams have a meaning? Is there any cure if anybody sees an excess of dreams at night?", "What are my options after mechanical engineering?", "How can I get entry in MIT?", "How will you make your life enjoyable?", "What is the best alarm clock on the market?", "Is it possible to increase the body height after 20?", "What do police officers think of Grand Theft Auto? (the video game series)", "What's your New Year's resolution for 2017?", "Is there any political solution between India and Pakistan on Kashmir issue?", "Which is the most used programming language in the world currently?", "How do I remove acne and worst acne scars?", "How can I start my study plan for IAS?", "What should I do to make money online in India?", "How is the GST going to transform India's tax structure?", "What is the most funny joke you have ever heard?", "Which is the best coaching institute for SSC CGL preparation in Delhi?", "How does one chat with girls?", "How does banning 500 and 1000 rupee notes help to control black money?", "Who is the best appliance repairs in Melbourne?", "What are the best startup?", "How can changing 500 and 1000 rupee notes end the black money in India?", "Aren't gods aliens, especially Hindu gods?", "What is your New Year Resolution for 2017?", "All things considered, did Bill Clinton do well as a president?", "How do I change b1/b2 visa to permanent resident with green card?", "What are the most secretive places on earth?", "How can I control on my anger?", "What are the best laptops in India under Rs:55000?", "Is Noma really the best restaurant in the world?", "What does it take to become an entrepreneur?", "How can I hack WhatsApp account remotely?", "Do you get along with your family?", "What is electron affinity?", "How do I get a dream?", "What does the cytoplasm contain?", "What is EJB?", "What is reliance jio?", "What should I do if my dog is throwing up yellow/white liquid/foam?", "What is the origin story of e (base of natural exponential function)?", "Can you give me a simple definition of GINI index?", "What was the most embarrassing thing that ever happened to you as an adolescent?", "How too fall out of love?", "From an evolutionary perspective, why is right-handedness more common than left-handedness?", "How can I design my own post graduate education?", "Cinema of India: What are some little known facts about recent successful Bollywood actors?", "What are some of the best mobile phones gadgets?", "What will the relationship between America and China be like in the future?", "What is the story behind Sonam Gupta?", "What are your religious beliefs and why do you hold these beliefs?", "What are the best places to live in the United States?", "What are all the ways to travel without money?", "Which one is better: Samsung Galaxy s7 edge or iPhone 6s?", "How did chopsticks get their name?", "What is the difference between Chinese and English?", "What is difference between stock and shares?", "How were bats classified as mammals?", "Which is the most advanced and powerful battery ever made?", "What places should I visit during my visit to Kerala during July?", "What are the lok adalat?", "Where can I learn to hack?", "What's it like to be a woman?", "Which is the most developed country in Latin America?", "Can you get pregnant one day before ovulation?", "What are your New Year resolutions for the upcoming year 2017?", "How do I prepare comprehensively for the UGC NET English literature?", "How can I make money from YouTube?", "How often do you buy others gifts?", "Who discovered that the Earth was round? How was this discovered?", "Why would someone use Quora when they can Google instead?", "Can someone motivate me?", "How will the ban on 500 and 1000 rupee notes bring out the black money of the big shots who have lots of it in the Swiss bank in a different currency?", "How can we improve our brain power?", "I don't have money to buy new Macbook Pro 2016 (Touch bar), should I buy Macbook Pro i5 2015 or move to other brands like Dell XPS or Surface Pro 4?", "How did Donald Trump win the presidency?", "What are the best ways to improve my writing skills in English?", "What cultures take horoscope matching for marriage? Why does this superstition exist?", "What are the differences between data analytics and data science?", "What are some part time jobs which can be done from home?", "How can we make Delhi pollution free?", "How can an adult male increase his height after 22?", "When can women get pregnant in the menstrual cycle?", "Why aren’t calendars designed with 13 months of 28 days each?", "Why does quora mark my questions as needing improvement?", "Can colourblind people dream in colour?", "Where can you find a Slytherin uniform?", "How many chemical engineers are there in Nepal at present?", "How do you solve a Rubik's Cube?", "What benefits does a Bank Po get after clearing JAIIB and CAIIB?", "Where can I take the Online Practice Tests for GRE free of cost?", "Is flipping domain names still a good business nowadays?", "Which is the best way to learn hacking just as a hobby?", "Will banning 500 and 1000 notes can stop the black money?", "Is a third world war coming?", "How can I download a game?", "How can changing 500 and 1000 rupee notes end the black money in India?", "How can I determine the chemical properties of oxygen?", "Why does this “Cold War thinking” still not obsolete?", "What made you want to join Quora?", "Which is a good laptop in the range of Rs. 60000?", "Will pokemon go launch in india?", "Could the human race have originated from another planet?", "Which is the best photo editing app for android?", "How is it to study law?", "What is the point of answering questions on Quora?", "If light does not have mass, then how can it bend due to gravity? How can light have momentum if mass is 0?", "Why are so many people unhappy with their lives?", "What are scripting languages and programming languages?", "Why do you choose electrical engineering?", "What are the pros and cons of an MBA?", "What should I do to focus on study?", "What world nations think about the surgical strike on POK launch pads and what is the reaction of Pakistan?", "How can I edit a question which has already been asked on Quora?", "Why is life unfair to some people?", "Why is Kyrgyzstan cuisine underrated in America?", "Why did the National Media of India is always Northern biased?", "How can I earn money online without investment?", "Which is world's best romantic movie?", "How can I improve my English pronunciation?", "How do you stop being lazy?", "What are the safety precautions on handling shotguns proposed by the NRA in Florida?", "Which is best college for BBA in INDIA?", "what steps should I follow to learn machine learning?", "Does universe expand because of some energy? And if yes and expansion has no limit, is that energy infinite or at least potentially infinite?", "What are some of the most common mental disorders?", "How do I suck it up and lose weight?", "Who won the September 26, 2016 presidential debate?", "What is the cut-off for KVPY exam( SA stream ) 2016 and when are the results declared?", "What should i do to gain weight quickly?", "Are there any negative side effects in drinking Red Bull?", "How can a 20 year old become a millionaire before 26?", "Why do people ask questions on Quora instead of Googling it?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Vallenar earthquake in 1922?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Sonoran Desert?", "Is it normal to have a little bent penis towards right, when erect?", "How can I find a person with only their picture?", "In which instances do narcissists discard permanently?", "Should I watch Ae dil hai mushkil?", "Which is the longest highway in India?", "What are the best computer science (CS) / computer systems engineering (CSE) private colleges in India?", "Does the Indian education system need to change and why?", "What do you think about victory of Donald Trump in the 2016 Presidential elections? How did he overcome expectations and data?", "What is it like to lose your parents while being a teenager?", "Why Muslims are worshipping only Allah?", "Who are the best investors and traders on Quora?", "After watching Castle, I'm compelled to watch similar series. What should I watch?", "Is the concept of a bathroom mirror a common thing?", "What or who has influenced your life the most and why?", "Why are so many U.S. college sports teams named tigers?", "How can I study efficiently everyday?", "How can one learn hacking step by step?", "How to make a mapping diagram?", "What are some of your embarrassing moments?", "Was 9/11 planned?", "What is best tourist spot in Maharashtra in India?", "What are the Top mba colleges in india with better placemens?", "Does long distance relationships actually work?", "What are the career options available for an electrical engineering graduate?", "Why can't I decide on a career path?", "If you could choose one person to have dinner with, who would it be?", "What are some jokes /memes on Narendra Modi?", "Why do people ask so many Googleable questions on Quora?", "What is the smallest of all subatomic particles?", "What's the best way to make friends in a foreign country?", "Can I use any image from google/website in my blog, along with mentioning the credits for the image?", "What is the best free video editor for Windows?", "What are the best books for the JEE (Mains)?", "Why did slavery happen?", "I love food and have a big appetite. I'm also quite busy. What tips can you give me to lose weight?", "What is the difference between adapt and adopt?", "How do you get rid of dog fleas and ticks?", "What's the fastest way to get smart?", "How do I get all people's attention at once?", "How are boundaries understood between various oceans?", "How do you factory reset a Toshiba laptop? How can this be done without a disk?", "What are the cons of Hillary becoming our next president?", "Which is the best freelancing website in India?", "Why were human hermaphrodites not considered real during the Middle Ages?", "Did Hitler personally kill anyone?", "How many hours should an engineering student study?", "How far is China from legalizing same-sex marriage?", "How do I earn money being a student?", "How shoud I start my preparation for IAS?", "How does Quora list its Trending Now topics? Is it based on the time of the post, popularity or upvotes?", "What did Hillary mean by saying policy should have a public position and a private position?", "Are we on the brink of a Third World War?", "Is it ethical to create artificial intelligence that could have feelings?", "What are come cool facts about ancient pyramids?", "What is the best multi vitamin brand?", "What are the best books for preparation of SSC CGL?", "Where can I meet Aussies in Toronto Canada?", "Is palm oil unhealthy?", "Why does Quora keeps marking my questions as “Needs improvement”?", "Who is currently the richest person in the world?", "Why is Saltwater Taffy candy imported in Poland?", "Is the government hiding or harboring aliens?", "How can the drive from Edmonton to Auckland be described, and how does the history of these cities compare and contrast?", "How can I put up my profile photo on my Quora?", "What do you think when Donald Trump is the president of the USA?", "What is your favorite song and why?", "\"What is Dr. Seuss' \"\"Green Eggs and Ham\"\" really about?\"", "Who is your favourite character in Game of Thrones? And, why?", "What are the best websites to visit everyday?", "What is the difference between endergonic and exergonic reactions?", "What is your score in KVPY SA 2016 (aptitude test)? What is the expected cutoff?", "What do you do when you can not sleep?", "What's the best plan to lose weight?", "What's the difference between a clown and a joker?", "Why does Quora allow someone to delete someone else’s comments on their answer?", "What was the main cause of World War One?", "What should anyone do to increase their presence of mind?", "Is 299 a good enough GRE score?", "How can I learn to manage my time effectively for studies and pleasure?", "What are your favorite games for Xbox one and why?", "What are the safety precautions on handling shotguns proposed by the NRA in Arkansas?", "Why do dogs pee on cars tyres?", "What will happen to the Sun when it dies?", "How can I delete Facebook Messenger account created with phone number (without Facebook account)?", "What is a procedural language?", "What are the places to visit in Pakistan?", "\"What is the law about \"\"underwater\"\" mortgage in the state of arkansas?\"", "Will India ever get free healthcare?", "What are Some mind blowing Electric Scooters That mos't people dont know?", "What are some of the little things that I should do to make my life better?", "What are the most common uses of Bitcoin in practice?", "Do Indian men want virgin woman in an arrange marraige?", "How can I increase traffic to my site and what are some suggestions on how to get more of it?", "How can I improve my LinkedIn Profile?", "Is it possible to make a time machine?", "How can I improve my German grammar?", "Can a scientific law become a scientific theory?", "What was the universe before Big Bang?", "Where can I buy best quality customized cupcakes in Gold Coast?", "Does anyone seriously believe Mark Cuban will ever run for US President?", "How can I open my computer if I forget my password?", "How do I find out my wife is cheating?", "What are you getting your boss for Bosses Day?", "How did Trump win the presidency?", "Epics of India: What are some of the best images of Lord Shiva?", "How can I download videos from hostar?", "What is the fastest Internet speed in India?", "Why some people get everything very easily and some don't get even after so much hard work?", "What are some cool math tricks you can use in your everyday life?", "How do I learn photographic memory?", "Which is the best site for the online learning?", "What is the best programming language for a beginner?", "Which IIT is the best?", "How can I improve my spoken English?", "Where and when did writing language originate?", "An app to download songs from SoundCloud?", "What are some of the best places to visit in Kerala in a span of 5 days?", "How do I get rid of acne and acne causes?", "What did Draper University do for you?", "Is there space between universe?", "Does all Muslims hate Narendra Modi?", "Suppose, Hillary Clinton is the next U.S. President, what do we call her husband as? Former Gentleman?", "What are some examples of loaded questions?", "How can I improve my English speaking skills as an introvert?", "How does World War 2 started and ended?", "How do I improve my listening skills?", "How does someone get a job as a writer in the comic book industry?", "Can I marry my father's brother's son's daughter?", "What are some ways by which a student can earn money in college?", "Why do people ask questions whose answer can be easily found on the internet?", "Why does Quora make it mandatory to put a question mark after the end of the question? Isn't it redundant?", "How can you delete your Yahoo Mail ID?", "Which is the best course for digital marketing?", "How can one impress girls on Quora?", "What are novel devices?", "What are the major differences between Chinese culture and western cultures?", "As a Canadian, how do you feel about a Trump presidency?", "What is the minimum number of people required to repopulate the entire earth in the event of an apocalypse?", "What should I do to control my anger?", "What is load current and load resistance?", "How do I prepare for GRE in a month?", "What is the purpose of human existence in this vast universe?", "What is the best certification course to learn digital marketing?", "Is it not true that Kejriwal too started to play dirty politics?", "What are some of the best part time jobs to do from home?", "Which is the best place in mumbai?", "Has Anthony Robbins made a significant change in your level of confidence and standard of living?", "Can you substitute granulated sugar for powdered sugar? Why or why not?", "How do I turn my weakness into strength?", "How can I do effective self study?", "When were cameras invented?", "What will the people who have Black Money in Swiss Bank do after the demonetisation of ₹1000 & ₹500 note?", "How do I turn white hairs into black?", "What quality should a good teacher have?", "Why has Ernest W. Adams disabled comments on his answers?", "How long after getting my H1B should I wait before asking my employer to file for a green card?", "Should child vaccinations be enforced by law, and if so, which vaccinations should be mandatory?", "What was the universe before Big Bang?", "Do vampires and werewolves exist?", "What can I do to stop thinking about anything?", "What happens to the a person's soul after his/her death?", "How do you motivate yourself to work hard?", "Which phone is best under 15k?", "What are your new year resolutions’2017?", "What is the purpose of a board of directors?", "Why is Narendra Modi not attending the parliament on demonetization issue?", "Is the U.S. government hiding the existence of aliens?", "How IS TO get into MIT?", "Is there any connection between dreams and real life?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Great Basin Desert?", "How banning 500 and 1000 rupees note will curb the corruption and black money in India?", "Who is the owner of APC terrex tanks?", "Why don’t the electrons fall into the nucleus?", "Why did Philippine ask Private Temporary Arbitration in Hague, not the UN backed courts to solve the water territory disputes with China over SCS?", "Why does the sun rise in the the East and set in the West?", "How do I improve my communication skills.?", "How many people in the world die each day?", "What are some good Twitter accounts to follow?", "What's the funniest fiction book you've ever read?", "How do you treat a cat with a cold?", "How do I build a muscular body?", "What are some books I definitely have to read?", "How do I make money with YouTube?", "What are the differences between a democracy and a republic?", "Why do people who can't afford kids make babies?", "What are the Mormon missionary rules? Why are the rules important for the mission?", "How do I host a seance safely?", "What causes bloody diarrhea in dogs and how is it treated?", "Where does get mica used in buildings?", "Why don't people answer my question on Quora?", "What are the pros and cons of a universal world language?", "How do I deal with extreme Social anxiety disorder?", "How do I improve my overall native English language?", "Do United Kingdom police carry firearms? If not, why don't they carry firearms?", "Can Height be increased after 18 or 19 years of age?", "How is data stored in the brain?", "What is divisible? Rules and examples please…?", "How do you calculate the total gross income?", "How can I hack the others Facebook account?", "Why can't we use ocean water through desalination to provide water to drought hit areas in India?", "What is a phone app that you could not live without?", "The Newly Introduced 2000 Rupees and 500 Rupees notes are enabled with NGC Technology (Nano GPS Chip) ? Did any country introduced such currency?", "Is there anything in the world that is more pleasurable than sex?", "How do i get traffic for website?", "\"Do people really \"\"enjoy\"\" their jobs?\"", "Are vacuum fluctuations an energy in a vacuum? Are these virtual particles? How do we know there is this energy if they didn't exist? Do they really exist?", "Why do people fall in depression?", "If you move faster than the speed of light, can you go back in time?", "Why are Saltwater taffy candy imported in the Philippines?", "Why does Quora regulate comments while sites like YouTube and Reddit allow freedom of speech?", "What is the best way to get rid of bad habits?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Gobi Desert?", "Why should anyone buy an iphone?", "What is air purifier?", "How do I improve my English with creative writing skills?", "Can I get pregnant through oral sex?", "Can I apply for an E-2 visa while my green card is on process?", "Can humans hibernate?", "I have a laptop and internet . How do I make money with just these items?", "Which place is the best to travel?", "What do you think of the Government's move of banning old Rs. 500 & Rs. 1000 notes?", "What are some home remedies for a nose that gets stuffy during the night?", "Adam D'Angelo: Which tank is the best in World of Tanks?", "Is it true that there is life after death?", "A machine gun has a mass of 20 kg. It fires 35 g bullets at a rate of 400 bullets per minute with a speed of 400 m/s. How can I calculate the force here?", "How can I install Mac OS in my HP Laptop?", "Is the Indian media the worst compared to other countries' media?", "Where can I get amazing collection of floor tiles in Sydney?", "What are the top 10 websites you visit everyday and why?", "Do you think telekinesis is real?", "Are we going to see the next world war?", "Why didn’t RBI introduce the plastic currency in India with the new 500 and 2000 notes?", "Why does Quora require a question mark at end of the question?", "I wanna start preparing for ias exam, how should I proceed?", "How do I study economics well?", "What is the secret behind Bermuda triangle?", "Is pork harmful meat?", "What is the point of articles in language?", "What is Hillary Clinton's foreign policy outlook with regard to India?", "Is Hillary Clinton going to win mainly because she's a woman and not based on a political standpoint?", "Is World War 3 starting as some people are saying?", "How can I get a chance to meet Mr. Narendra Modi?", "What skills take less than 5 minutes to learn that everyone should know how to do?", "How do I get a job at Bain Capital, Blackrock or KKR?", "What is the weirdest dream you ever had?", "What is air turbulence?", "What should I do if my girlfriend broke up with me after a year, but still wants to remain friends?", "Why do Labour party members support Jeremy Corbyn despite knowing that most of the British public do not approve of him?", "What is the strangest dream you've ever had?", "What would Indonesia be with Donald J. Trump as POTUS?", "What is the difference between an agnostic theist and an atheist?", "How will the ban of Rs 500 and Rs 1000 notes affect Indian economy?", "How did Saturday and Sunday become weekends?", "What are good marketing strategies for a small business?", "What is the best project for investment in Mumbai?", "I don't make any diet. Is bulletproof coffee worth?", "Why does a B-2 bomber cost 20x that of a typical stealth fighter?", "How do I stay motivated while learning to code?", "How can one learn to read and speak Old English?", "How can we download torrents now after the ban in India?", "Why currency sign is used before the number while writing and use it after the number while speaking?", "What is it like to work for CNN?", "Who will win the 2016 presidential election?", "Is cat worth a 1 year drop?", "Where can I get professionally qualified & highly skilled painters in Sydney?", "What exactly defines intelligence?", "How does Wikipedia earn money (other than obvious ways like donations)?", "Which is the best budget laptop under 50,000 INR?", "What is the fee structure at IIMs?", "Which book is most useful for studying quantum mechanics?", "What is the most ethical issues in business?", "Why did Ravana have 10 heads?", "How can I learn to play the piano/synthesizer?", "Do you think that the demonetization in India will be successful and all black money will be busted?", "How do I become good at sex?", "At what speed will a speed camera (UK) not be able to catch you?", "Why are all my questions on Quora marked needing improvement?", "Compare the powers of President and Prime Minister of India?", "How's the life at IIT?", "What was the life turning point in your life?", "How long does it take before marijuana is out of your system? Is there any way to do it faster?", "What is the most effective way to complete a vast portion of the general studies syllabus for entrances which would be in a month's time?", "What are the effective ways to build your arm muscles?", "Is there some painless way to suicide?", "What is the increase organic traffic of websites?", "Why do some people think that the Earth is flat when it is very clear that it is not?", "Where can I found best quality walk in wardrobes in Sydney?", "Can you lose weight without exercising?", "What are some small business ideas?", "How do I not feel discouraged that there are so many people better than me in several ways?", "Why is it so difficult to create an account on irctc?", "What are some of the best games for Android?", "Who is going to win the 2016 presidential election?", "How should I overcome anxiety and depression?", "What are the best earphones under 1k?", "What is the best way to learn Spanish on your own?", "Which url has to be used to create a blog on Quora?", "My hair is too thin. How can I make it thicker?", "Where can I find a trustworthy gazebo manufacturer?", "How do I tell a friend that his legs/body stinks of bad odor without hurting his feelings?", "Why do so may people ask questions on Quora that can easily be found by a simple Google searh?", "How do I send another person a message on Quora?", "What are the safety precautions on handling shotguns proposed by the NRA in New Hampshire?", "Which automation testing tool is best for mobile testing?", "Why does India so scared of CPEC?", "What's the best solution to the kashmir issue?", "Are you for or against immigration in Singapore?", "Does Darkseid have a weakness?", "How long does ingested Marijuana show up on urine drug test?", "What are some ways to make crutches feel more comfortable?", "What are the career options after electrical engineering excluding joining the MNCs?", "What are the reasons behind the Bangalore incident on New Year’s Eve? Why did it happen?", "How do i get myself a girlfriend?", "How do I bust a cheater?", "Why are some dogs considered carnivores?", "Why did the ancient Greeks and Romans stop believing in their gods?", "What is special about Kanniyakumari?", "Does a shortcut exist for weight loss?", "How can I prepare for the ssb interview?", "Why is my Australian Shepherd/Red Heeler mix puppy afraid of cats?", "What are hydrogen bonds?", "Is Quora better than Google for answers?", "How do I stop caring about what people think about me?", "How can I stop masturbation?", "What is the necessity of introducing 2000 rupee notes?", "How do I see who is viewing my Instagram videos?", "How could I improve my writing skill?", "When a man becomes a President, his wife is called first lady. If a woman is President, what is her husband called?", "How long do hard boiled eggs last if not refrigerated?", "How will releasing new 500 and 2000 rupee notes help in eradicating black money?", "How can I improve my pronunciation in English?", "How can changing 500 and 1000 rupee notes end the black money in India?", "How do you search for people on Instagram?", "What happened to the horse-drawn carriage industry when automobiles took off in the 1910s and 20s?", "What are ways to lose belly fat?", "Why is Quora so slow?", "Why doesn't natural selection occur as often with humans?", "Why do converts to Islam say that they have reverted to Islam?", "How do I learn general knowledge?", "Can you tell me about the most fantastic dream that you had in your sleep?", "How do Egyptians compare to other Arabs?", "Which phone do I buy?", "How do I lose weight without stopping?", "What is the most probable cutoff for KVPY SA 2016?", "How should I prepare for TSPSC Group-1?", "How can Donald Trump win the elections when people hate him so much?", "How can I write an essay efficiently?", "What is your 2017 New Year’s resolution?", "How can I make my penis thicker?", "How does banning 500 and 1000 rupee notes help to control black money?", "How can I observe like Sherlock Holmes?", "Do you think 9/11 was an inside job?", "What is the best motivational line said by someone?", "I am ugly and fat, how to lose weight?", "Is Illuminati a real theory?", "Is NIIT Delhi good for a digital marketing course?", "What is the difference between Ethernet and Intranet?", "Why does the guy I'm seeing text and then take hours and hours to answer back every time? Why bother texting me if it's over five hours everytime?", "What would be Hillary clinton's policy on India?", "What is the most inappropriate thing you have been asked to do or have done at work?", "How can I avoid sleeping in a boring class?", "How do I become mentally strong?", "Is this the right time to invest in mutual funds?", "What shoud be strategy to crack RBI Grade B 2016?", "How do I keep up the motivation till the end of the day?", "What should we do to regrow hair?", "How do I start a successful private equity firm?", "How do you make money online?", "How should we improve communication skills?", "What's the future of Julian Assange?", "What are some of the most moving pictures you have ever seen?", "What were the major contributions of the political leaders during WW1, and how are the compared to the ones during American Civil War?", "What are some good songs to make a texting lyric prank?", "What can we blog about?", "What are some good Spanish songs?", "How do I to beat a federal drug test if you are a meth user?", "How can I speaking fluently speaking English?", "How and why did trump win?", "How can I track Phone Number?", "How do you deactivate your Twitter account?", "What code language should I learn to make a single player card game?", "How should I improve my English speaking and writing skills?", "Is it possible to install wider tires in a new Thunderbird 350?", "What is the best field for earning money after completing a B.Tech in mechanical engineering?", "Which one do you prefer, real life or Internet life?", "What are the advantages and disadvantages of being an extrovert?", "What are some of the top paying career options after doing a B.Tech in mechanical engineering?", "Does pornstars swallow sperm?", "How can I get a green card to live and work in the USA?", "How do I start my own delivery company?", "I want make a website like w3school using WordPress: which theme and pluging should I download it ? I need some help", "Why doesn't Nintendo sell older Pokémon games (FireRed, HeartGold, etc.) on the Nintendo eshop on the 3DS?", "What is the best way to stop drinking without going to AA?", "How corrupt is India?", "How important is sex in a successful relationship?", "How does Brexit affect Indian economy?", "Where and how was chocolate invented?", "Most inspirational books on audible?", "How do I apply for a PAN card?", "Which is more logical to follow- your mind or your heart?", "Why do people living in the equatorial region have darker skin?", "Will bulletproof coffee help me burn more fat?", "What is your favorite album ever?", "How do I regrow my hair using home remedies?", "What are some of the best travel destinations for solo travellers in India?", "What are some crazy facts about Google?", "Is it true tat the new 2000 denomination currency has some Nano GPS chip? Or is it a rumour?", "What is the best Google Adwords online course and why?", "How can I commit suicide without any pain?", "Does supply create demand or does demand create supply?", "Is it possible to lose fat and gain muscle at the same time?", "Why is Denmark considered the happiest country in the world?", "Where can I find the best quality cupcakes in Gold Coast?", "Which is best Linux distro in 2016 and why?", "Why is kale good for you? What properties does it have?", "How to prepare for CA Final exams?", "How can I improve my writing skills for writing a book?", "What are the career option after completing of B.tech?", "How can I study law more efficiently, faster and retain more information?", "Can an aircraft maintenance engineer is able to fly an aircraft?", "How I avoid useless thoughts?", "Is the global warming climate change things for real or a hoax?", "What is the story behind seperation of north korea and south korea?", "What do college students do to cool off or relieve stress?", "What is the difference between multilevel and multinomial logistic regression?", "How do I improve my skin tone?", "Which is the best data analytics company in India?", "Is Donald Trump racist?", "Do I have a chance to get pregnant if I had sex 5days after my menstruation?", "Which is best escort in bangalore?", "When will the Lollipop update for the Samsung Galaxy Core Prime (SM-G360H) be available?", "How, why and when is geometry used in everyday life?", "What were the best questions asked in an interview?", "Which was your best moment in life?", "Should India go for another war with Pakistan?", "How do I prepare for the quantitative ability and data interpretation section of the CAT? Is there any material available online? Also, what are some good books for the same?", "What are the pros and cons of joining the Foreign Service?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Somatra earthquakes in 2007?", "Was Jesus a Jew? If he was, why did he become Catholic?", "How soon can I take a pregnancy test?", "What do you do on weekends?", "What are your views on the decision of Narendra Modi to discontinue the use of 500 and 1000 currency notes?", "How do I go back to reading?", "How do stop smoking?", "What IS THe use of INCOGNITO?", "What is the difference between a porn figure and a prostitute?", "How do I run a fast 800m?", "Why is the time set to 9:41 am on every iPhone in any Apple advert?", "When and how is anonymous going to hack Facebook?", "How do I increase my penis size manually?", "What is a good way to learn the violin?", "How do I make an Android app with Python? I want to make an app with artificial intelligence and an algorithm. Should I code it in Java or Python?", "Name your best movie you have seen?", "How is socialism and communism different?", "Why can't we all get along?", "How can I stop worrying about what other people think of me?", "Why do people believe in flat earth?", "What are the easiest ways for me to make money?", "What was the biggest mistake of your life?", "Can it will effect my board result card, if I get less marks in additional subject?", "What are the recommended books for IIT JEE?", "What are the conditions/criteria for gifting a Rolls Royce?", "If you could only read 5 books to improve and change yourself, which books would they be? Why?", "What are the responsibilities of a board of directors?", "Where can I find a professional hacker?", "What do billionaires do differently from ordinary people?", "What do you think about the ban on 500 and 1000 denomination notes in India?", "What are the best books for preparation of gate exam(me)?", "Could a solar cell be used as a normal diode?", "What is a procedural language? What could be considered as a non procedural language?", "At what point of his presidential campaign did Donald Trump qualify for Secret Service protection?", "How can we know that the Illuminati is real?", "What is green gold?", "How do I combat social anxiety?", "Is Odysseus considered a hero or not? Why or why not?", "How do I to meditate?", "How does Mark Zuckerberg's intelligence compare to Steve Jobs?", "Is economics part of STEM?", "What are the minimum requirements to enter MIT?", "How do I give my girl the best orgasm?", "What do we exchange biologically during sex?", "Does Hillary Clinton still have a chance at winning the presidency?", "Why do people believe the earth is flat when clearly earth is round from space?", "Which is the best question you've read on Quora?", "What is the longest time a person can stay in a coma?", "Where are the Ferguson riots?", "India: What are your views on caste based reservation system in India?", "How did it feel when you met your soulmate?", "What is a human rights in Ghana?", "How do I stop caring about what others think?", "Can we love two person at the same time?", "Who would win in a fight Marvel vs DC?", "Has history been scientifically tested?", "What should I do to reduce weight?", "How does electricity work?", "How will GST boost India's economy?", "How will Donald Trump getting elected as the President of the United States affect the relations of the USA and India?", "What steps can I take to improve my writing skills?", "What happens if someone eats too much garlic?", "What are the minimum passing marks for Delhi University?", "What is the difference between final, finally and finalize in Java?", "How do I improve my reading comprehension in English?", "Which is the best movie you have seen so far?", "How India can win more medals at 2020 Olympics?", "Why do I get bored easily?", "How do I get my parents to take me to the doctor's?", "I need a database about people who travels abroad in my country, how can I collect it?", "What are the disadvantages of being an only child?", "PTE Vs IELTS - Which is easier in terms of preparation?", "Are psychopaths dangerous?", "What are your views on India banning 500 and 1000 notes? In what way it will affect Indian economy?", "What is the best social login extension for Magento 2?", "Who is your favorite musician?", "Where can I get LSD in Pune?", "How do I learn Russian online?", "How can I train my mind to forget someone I love?", "Was the White House built by slaves?", "What are the best things to do in Cancun?", "What can one do to control his/her anger?", "Which are some of the best romantic movies?", "Which one is best web development company in Noida?", "Why do people want to have children so much?", "Which team do you think will win the IPL 2016?", "Do I have bipolar disorder? What are all its symptoms?", "How should one learn history?", "How can I get over someone I loved?", "Which is the best cigarette to smoke in India?", "Can a lady become a pilot in the Indian Air Force?If yes then how?", "What would happen to God or whatever if people stopped believing?", "What are the best career options for electrical engineer who is interested in construction field?", "Does Donald Trump exhibit signs of dementia or Alzheimer’s?", "How can I create a blog?", "Any heads up on PNB Housing Finance Ltd IPO?", "How do I get myself motivated to go to the gym?", "Why isn't the media pursuing the rape allegations made against Donald Trump?", "What does ISIS really want?", "What are you good at?", "How can I build traffic for my website?", "Is it possible to invent the time machine?", "Can we stop global warming?", "What is the best Final Fantasy game?", "Why haven't we found a graviton yet?", "What are the ways to remove pimples?", "How can I develop apps on android?", "What do you think life would be like without freedom?", "What are the best books to read for self improvement?", "What's the purpose of living and dying?", "Why Sanskrit has the capability to be a programming language?", "What can we learn from Life of Pi?", "What are the 4 functions of skin?", "Who's better: Bruce Lee or Muhammad Ali?", "What is the best photography software?", "What led to Cyrus Mistry ouster from TATA GROUP?", "Technology: What are the best camping gadgets?", "Is America really a democracy?", "What is the secret to living 100 years?", "What's the best parenting advice that you can pass?", "How will a Trump presidency affect the students presently in US or planning to study in US?", "From where can I learn programming?", "What's the best advice you ever received?", "What would happen if Rahul Gandhi becomes the PM?", "What does it mean when a cat throws up white foam?", "What are the symptoms of Asperger's syndrome?", "What might be the effect of banning currency notes of 500 and 1000 on economy?", "What are the Air Force bases in the US?", "Why are many Quora writers lonely and/ or unemployed?", "Is there a way to develop photographic memory?", "How can make money on Facebook?", "Why do Quorans ask questions for which authentic answers are obtainable faster and easier through Google?", "What is the difference between the syllabus of CAT and GMAT?", "What is your wildest dream?", "How can I improve my English writing skills? Which books do you suggest?", "How can I improve in English?", "Who is wrong in the Israel-Palestine conflict?", "Is money necessary to live a happy life?", "Is ethics bullshit?", "What are the most followed topics on Quora 2016?", "What do you think are some industries ripe for disruption?", "Who do you think will win the 2016 presidential election?", "What is the most funny joke you have ever heard?", "What interesting things does Tokyo have?", "How do I deal with a verbally and emotionally abusive sibling?", "Who is the best arrow shooter Hawkeye or Green arrow?", "What do you think Heaven is like?", "Which is the best laptop under 20k today? Fast & smooth.", "Why making a Time Machine is Impossible?", "How worthwhile is the XLRI executive post-graduate program in human resource management?", "What's your New Year's resolution for 2017?", "Do black holes exist?", "What is the proper pressure for a 1.5 ton split ac with R32 refrigrant?", "How do I survive in a long distance relationship?", "What is the best way to lose belly fat? (workout, natural remedies and pills)", "Where can I download game of thrones episode 4 season 6?", "Why cricket is not considered in olympics?", "Why is mathematics so hard?", "What is the secret of effective communication?", "How can I study efficiently?", "What is your review for the movie Dear Zindagi?", "How do I get the service of the best hacker out there?", "Who is the current Prime Minister of India?", "What type government does North Korea have and how is it different from China's government?", "How can you improve your intelligence?", "What are causes of extreme fatigue?", "What are the procedures to register a startup in india?", "How do I get a slim face?", "What is your creative New Year's resolution for 2017?", "Which are the 10 best films of 2016 & Why?", "How can I earn money using YouTube?", "What are some great side dishes that go well with mac and cheese?", "Where can I found best quality solid door upright freezers in Sydney?", "What's the best way to become a Supreme Court Justice?", "What are the best restaurants in Edinburgh?", "What will be the impact of the step taken to ban the 500 & 1000 rupee note on Indian economy?", "What should I do to last longer in bed?", "What are the various scholarship I can apply for M.Sc from USA?", "How did Donald Trump win your vote?", "What is the best digital marketing course online for a beginner?", "Transsexuality: What is the difference between transexual and transgender? Is it just a transitioning from one sex to another and transitioning from one gender to another? Are there only 2 genders?", "Why do muslims get radicalise easily and not other people?", "What are some good online preparation courses for the GATE?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Concepcion earthquake in 1835?", "Which song of Rahat Fateh Ali Khan is the best?", "What came first in science, social science or natural science?", "Is there any permanent treatment for thyroid?", "What makes you proud of being an Indian?", "What is the best answer for tell me about your self in an interview?", "Will Donald Trump beat Hillary and become our next president?", "Why do I have white spots on my teeth?", "How do I get better at acting?", "What is the difference between the iPhone 6s and iPhone 6s Plus?", "Should Gary Johnson be included in the 2016 Presidential Debates?", "Why do people ask questions on Quora while They can get all the answers by Googling?", "Does decaf coffee contain caffeine?", "How should I plan my travel for the USA?", "What are the good universities offering data science master's in Australia?", "What is the relation between phase and line voltage?", "Should people over 89 not be allowed to vote?", "How do I lace open laced shoes?", "Is there any other method for wireless power transmission other than induction method?", "Did you know <*/\\*>1800*-251-*4919*-*<*/\\*> Belkin router Technical support Belkin customer phone number?", "Is it worth learning how to program Wordpress?", "How does a lightning arrester work?", "What is the process to immigrate to USA?", "Are dentists doctors?", "What are some interesting things that defy logic?", "What is the best way to get traffic on your website?", "What is an easy way to commit suicide?", "Who was the greatest warrior in history?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Great Sandy Desert?", "What will be the effect of possible war between India and Pakistan on Indian Stock market?", "Why did Steve Jobs dip his feet into toilet bowls?", "How do I have sex with a girl with her consent?", "Which single fact, made public before the inauguration, could potentially lead to resignation of the President-Elect Trump?", "Do spirts or ghosts exist?", "Can someone clear IAS/UPSC exams without any coaching?", "What do you need to know before buying a leather jacket?", "How did you meet your first girlfriend/boyfriend?", "How did Donald trump win the elections?", "How do I unlock my iPads forgotten password?", "What course should I study to become cyber security expert in India?", "Who will you choose the person who loves you or the person you love?", "What should I do to deactivate my account?", "If Trump becomes President, how will it affect India?", "How can improve my English speaking?", "How do I get my site at the top of Google for free?", "How can I lose weight safely?", "What is the worst thing ever happened to you for being nice?", "Are Cengage books good for JEE Advanced?", "What is the stupidest thing you have ever done?", "Can I establish a startup business in Germany while on a student visa, without permanent residence?", "What would be the safest place to live if ww3 breaks out?", "What are the best interview questions ever asked?", "What is the best way to learn and master a computer programming language?", "Is Spotify available in India?", "What would happen if humans no longer needed to sleep?", "What are some good crime/mystery novels?", "What are the safety precautions on handling shotguns proposed by the NRA in the entire U.S. including it’s territories and possessions? 3", "What plant is this in the photo, any additional information on the plant is appreciated?", "What are the pros and cons of socialism?", "Which is better, trust or science?", "Who do you think will run for president as a democrat in 2020?", "Can global warming be completely stopped?", "How do I hire an ethical hacker?", "How can I increase the traffic to my website?", "How likely is it to get AIDS?", "What are the characteristics of an outgoing person?", "Which are the best romantic movies to watch?", "Which time of the month can a girl get pregnant?", "Why is nuclear energy considered renewable?", "How do I find the real time location of a cell phone number?", "What metrics are used to measure ROI of job boards?", "What are some hot topics for campus selection group discussions this year?", "Why does the world sounds so unfair?", "What are some of the must have apps for doctors and medical students?", "Can time ever move backwards?", "What is the brief comparison of KMC in Manipal and Mangalore?", "I am about to buy an iPhone but I’m confused about whether I should get a 6s or 7. Any recommendations?", "From the scientific point of view, how did the first man learn about sex?", "What stops india to declare a war against Pakistan?", "Was Lord Voldemort a virgin?", "How do I change my profile pic on Quora?", "What would happen if forged ₹2000 notes starts circulating?", "What's good song for a best friend lyric prank?", "When is it too late to learn piano?", "How is life in North Korea?", "What is it like to have a near death experience?", "What should I do after completing my b. tech in EEE?", "What is a simile and a metaphor? How are they used?", "What are the movies that everyone should watch?", "If you could change any one thing from your past, what would it be?", "How do gay (and lesbian) people have sex?", "Which is the best place to do sex?", "What's the most unusual dream you've ever had?", "How should I stop thinking about someone?", "What are some of the best kept secrets of India?", "What the purpose of life on earth?", "What do Indian people think of South Korea and South Korean people?", "What are the best and beautiful residential schools in India?", "What is the best gift you've received?", "How do you earn money on Quora?", "How do I recover my Gmail account when it does not open after password reset?", "Between Trump and Clinton who will win US presidential election?", "Why are dogs considered omnivores?", "Which book is better for learning Core JAVA?", "Why don't I get answers for some of my questions on Quora?", "Who will win the US presidential elections 2016: Hillary Clinton or Donald Trump?", "Which are some of the conspiracy theories that later on proved to be true?", "What is the best way to make more money?", "What are some of the best tricks to get free rides on Uber?", "Why do so many Americans hate Donald Trump?", "How does Quora/Wikipedia/Non-profit sites make money?", "What's it like to be in prison for life?", "Why do people ask questions on Quora that could simply be googled?", "What would be your priority if you were president?", "How can I get traffic in my website?", "How do I be mentally strong?", "What is the best way to prepare for competitive exams?", "Why do so many people post questions on Quora that could be easily and thoroughly answered by simply typing the question into any search engine?", "What does it mean when two people share the same dream?", "Will deafness be cured?", "How do I start my first Java project?", "My question was marked as needing improvement! What does it mean? How do you mark other questions for improvement?", "Why does Harry Potter wear glasses?", "How can I lose weight effectively?", "Is joining coaching center necessary to clear JEE?", "Is Israel funding ISIS?", "How do I unlock disable iPhone 5?", "When the snow melts, where does the white go?", "What will be Hillary Clinton's policy for INDIA if she becomes the president?", "What should be strategy for CAT 2017?", "What is some advice you would give to a 16-year old?", "Why dosen't India give away Kashmir to Pakistan or whatever the Kashmiris want?", "How long after smoking a small amount of meth is it first detected in a urine test?", "How can you find a sugar daddy?", "How can I materialize an idea?", "What's the best advice you ever received?", "How do I lose my weight from 58 to 50 kgs?", "Can you sum up your life in one sentence?", "What is a good soy sauce substitute?", "What is white meat? What are some examples?", "How do I become more positive?", "What are the safety precautions on handling shotguns proposed by the NRA in South Carolina?", "What are your views on ban of 500 and 1000 rupee notes in India?", "Which are the most used languages in the internet?", "What are some mind-blowing Smartphone tools that exist that most people don't know about?", "Which phone should I buy when my budget is 12000?", "How do I deal with emotions?", "How can I learn hacking at home?", "How can I restore a mobile-number only Facebook messenger account?", "How can I hack someone's Google account?", "How beneficial is hot yoga compared to regular yoga?", "Why do people often ask questions in Quora while they can Google it themselves?", "What is the difference between the CAT and GMAT syllabus?", "How do I lose weight?", "Which university provides the best to study medicine in Ukraine, Europe?", "What is the best joke ever heard?", "How do you want to be remembered after you die?", "When the first clock was invented, How did they know what time it was?", "How can I calculate the equivalent resistance of a circuit?", "What do people who work for NASA think about Interstellar?", "How do you protect yourself from mosquitoes?", "What are the advantages of living in a city rather than a suburb?", "What is life’s biggest decision?", "Which is the best university in the USA?", "What citizenship does a person get if they are born in international waters?", "What determines the order of answers to a question on Quora as of July 1, 2014?", "Why do people ask questions on Quora instead of Googling it?", "How should I get rid off loneliness?", "Why do we forget dreams so quickly?", "What are your top ten favorite novels of all time?", "Is gta 5 available for Android also?", "How will H1b visa impacted under Trump presidency?", "Why is the world unfair?", "What's the best metaphor ever?", "How do I become a web developer?", "Why do people use Apple products? What a pain in the ass?", "Which is your favourite Tv serial?", "Is there proof that alien life exists?", "What is the full form of a PhD?", "Have you ever had a dream or a nightmare that came true?", "How do I get rid of excessive weight?", "What existed before existence?", "What are the most followed topics on Quora?", "What did Tom Clancy die of?", "What comes to your mind when you hear the word 'Pakistan'?", "What is Advaita Vedanta?", "Why are metals good conductors?", "Who viewed my video on Instagram?", "What is the increase organic traffic of websites?", "How can I identify my skills strength as well as my weakness?", "How do I get meth out of my system from smoking it instantly?", "How was education during the Japanese occupation like in Singapore?", "Who is the strictest teacher you have ever met?", "How can I improve English speaking skill?", "Can a person live in Pune with salary of only 22000/- in hand per month?", "What happens to employees when the company is acquired?", "What is the oldest religion on earth?", "As a third year btech student what should I do to start preparing for ias exam?", "Which one is the best security software for smartphones and tablets?", "Who is your favorite youtuber and why?", "How do I recover/reset my AOL email password?", "What should be done to avoid watching porn?", "How do I make bacon pancakes?", "\"I know there is probably not a \"\"typical\"\" day for a commercial real estate agent/broker, but could someone give me what a \"\"most typical\"\" day might look like?\"", "Why does the Justin Bieber video Baby have more dislikes than likes?", "Why do pornstars don't get pregnant, ahem seeing the work they do?", "How do I expand my vocabulary?", "Why is India so bad at Olympics?", "What are things that make Indians happy?", "What is the procedure to start our own country?", "What is circular motion? What are some examples?", "What makes salt salty?", "How can one learn Catalan?", "Are humans part of a simulation?", "What are some of the most upvoted answers you came across on Quora?", "How can I lose weight effectively?", "HOw do I speak Fluent English?", "How do I increase my memory power and general awareness?", "What's your best moment of 2016?", "How much should I charge for graphic design?", "When do people prefer black taxis over minicabs in London, UK?", "Why did Trump win the Presidency?", "Why did the Germans need a cyclotron to design an atom bomb in World War II?", "What is the laziest thing you have done which nothing can compete with in laziness?", "How do I become spiritual?", "What are some beautiful women in history?", "Do any animals other than humans commit suicide because of emotional issues?", "Is 291 a good score in gre?", "What are some projects a mechanical engineer can take up for his/her B.Tech Major Project?", "What is something you wish everyone knew about you?", "What is an example of an inorganic compound?", "How should I prepare for CAPF AC exam?", "What does deja vu mean?", "Do you even use Quora?", "What is the trick to maintaining long distance relationships?", "How are the steps used in a scientific method described?", "What are some safe and legal ways to view a private Facebook profile?", "How do you tie a simply tie?", "What would be effect of 500 and 1000 Rs notes ban?", "When there is market disequilibrium, what are the condition that may happen?", "What are the best poetry pieces written by you?", "Which movie made a big difference in your life?", "How can I find a job I really like?", "What are you views, pros, cons on ban of 500 and 1000 notes by goverment?", "What does sex feel like for women?", "What is the difference between enthalpy and entropy?", "Why was Cyrus Mistry sacked by Ratan Tata from Tata Sons?", "How should I improve my English speaking and writing skills?", "How much does the Emergency Care course cost?", "Is it possible to implement Uniform Civil Code in India?", "What are great start up ideas?", "How the way to speak english fluently?", "What changes have you noticed after you started meditating?", "What is the best gift one can give to their parents?", "Is there a war coming?", "What is the difference between the type of questions asked in GMAT and CAT?", "Do people living outside India read books written by Chetan Bhagat?", "Why does the Middle East always seem to be at war and in riots?", "How did string theory begin?", "How would the bilateral relationship between India and the USA be under Hillary Clinton's presidency?", "How will the ban on 500 and 1000 rupee notes effect land/house rates?", "Why did the Greeks call themselves Romans?", "How will India's economy be affected if India goes to war against Pakistan?", "Is there any real way to boost your internet speed virtually?", "Would you like to ask me a question?", "Would i still be able to make a website if we didn’t have net neutrality?", "What are the best Android games?", "What happens when anti matter and matter collides?", "How do I stop the habit of masturbating?", "Do distance relationships work? How can you make it work?", "How can I travel time?", "How should I make money online for free?", "What are the requirements for selection into MIT?", "Will Nisekoi get season 3?", "What is the in-hand salary a recently joined engineer at BHEL receives?", "Who are the famous leaders in Chhattisgarh?", "Where can I get professional advice for buying and selling a property in Sydney?", "What are some mind blowing tools and gadgets that mos't people dont know?", "What is your opinion on the discontinuation of 500 and 1000 rupee notes?", "How will the Indian economy benefit if GST is introduced?", "What are best books for SSC CGL?", "How do I speak English fluently at an interview?", "Who was luckiest person ever?", "Is dark matter the luminiferous ether?", "How do you become pretty/attractive?", "What should I do to become an ethical hacker?", "How many dimensions does the universe really have?", "Do you think Urjit Patel is the right replacement for Raghuram Rajan?", "Is Donald Trump secretly a Democrat?", "What is the Balochistan crisis?", "What are data scientists?", "Worst movies of 2015?", "What would a bedroom in the year 1980 look like but it would have to be an older man's theme?", "Why will no one answer my question on Quora?", "Is having lemon juice everyday in the morning with empty stomach benefits?", "How can I speak fluent English with accuracy?", "Is there a U.S. public pension fund database?", "Why do people try to ask silly questions on Quora rather than googling it?", "How can I increase my height after I'm 23 years old?", "How can I get a second hand car in EMI?", "If Donald Trump wins the election, what would American society look like?", "Why should we study history?", "Can I increase my height after 20 ? How?", "How can I expand my IQ?", "How do I prepare for the GATE and is coaching necessary or not?", "Is Quora supporting Hillary Clinton?", "How can I forget someone I love strongly?", "If we evolved from apes then why are there still apes around today?", "How can I improve my conversation skills so that I can have long interesting convos?", "How would Donald Trump's win affect India?", "How do I increase body height?", "Which is the best way to promote local business directory?", "Which is the best headphone under Rs. 2000?", "How can I stop smoking a cigarette?", "What's the purpose of a human life?", "What are the best domain name registrars? Why?", "What are the solutions to reduce poverty?", "Is it safe to buy a laptop with DOS as compared to Windows system?", "How do I remove politics from my Quora feed?", "What is a Jew?", "In how many dimensions we are living?", "\"What is \"\"program management\"\" at Microsoft?\"", "How do I make money through scrap metals?", "What are some things you look forward to everyday?", "Will Trump really build a wall?", "\"Should India ban \"\"Made In China\"\" products?\"", "What are the reader's views on Harry Potter and The Cursed Child?", "How long do boiled eggs stay fresh in the fridge? How can they be preserved for longer?", "\"When should \"\"per se\"\" be said?\"", "How important is astrology?", "Did social media really cause/impact the Egypt revolution?", "How can I get rid of unbearable menstrual cramps?", "How do environmental factors affect health?", "What is the meaning of my life?", "How can you calculate your total annual income?", "What are free alternatives to Adobe's LightRoom?", "Why is Donald Trump nasty and why do people actually like him?", "What are the best smartphones under 15000?", "How do I permanently delete Facebook account?", "Who would you vote for: Donald Trump or Hillary Clinton?", "What are biotic and abiotic factors? How do they differ?", "Where can I get the exact question papers of CAT 2015?", "Why did Napoleon lose The Battle of Waterloo?", "Suppose India declare war against Pakistan, how many countries will support India?", "Which country has the right over the North and South Poles?", "Is there meaning to life?", "How should I apply for a domicile certificate in Thane?", "Why didn't Harry Potter kill Bellatrix, when he had the chance in Order of the Phoenix?", "When was your first orgasm and how?", "What are some alternate theories to the singularity existing at t=0 just before the Big Bang? What else could have existed just before the Big Bang?", "How do I know that my spouse is cheating on me?", "What are the top 10 website that I should visit?", "Why and how does scientific knowledge change over time?", "What is going on with the star KIC 8462852?", "If my dream is to one day work for the United Nations, what steps can I take now to achieve that end?", "Is it true that you can see who’s viewed your Instagram?", "What are the best UK university for economics given I would like to go into banking?", "What programming language is used for making Android apps?", "What do you think of Rand Paul?", "What business and social problems does data center power consumption cause?", "What would happen if earth's core is completely cooled?", "What was the best day of your life?", "What is the worst way to die?", "If you could live anywhere in the world where would you choose and why?", "How do I delete Facebook account?", "Are humans naturally greedy?", "\"What is an intuitive explanation of \"\"Price of Anarchy\"\" in game theory?\"", "How do I make out difference between infatuation and love ?", "How likely is World War III in the future?", "Why is Facebook forcing us to download their messenger app? (For Android)", "Do the hands of a clock ever separate the clock face into 3 equal sectors?", "What are some of the awesome facts you believe very few people know?", "How do you know if you know yourself?", "What would happen if you made a gold-silver alloy?", "Is World War 3 coming?", "How can I get a patent for my work and theories?", "How should I invest my free time?", "Which is the best digital marketing course?", "Who should/could be the next President of India?", "What are tracer rounds? Are they legal for the public to possess in the state of Colorado?", "How can we make money out of blogs?", "How can I fetch more number of answers for my questions on Quora?", "How can I gain weight fast at home doing exercises?", "Where are the best Italian restaurants in Mumbai, India?", "What do we do now that Trump has won?", "Which online store offers cheap Apple products?", "How difficult is the selection procedure of continental automotives for an ECE fresher?", "How do I make a DIY rocket?", "How do get a crew accommodation for lavish off-duty hours?", "Noida 77 to Noida city centre public transport?", "What is it like to study in McGill University?", "Which is the best E rickshaw brand in India?", "How can I be more social as an introvert?", "What is Darkweb and how to access it?", "How do I find clients for my web development business?", "What are your daily rituals?", "Would anything have changed if Hitler had been accepted at the Vienna Academy of Fine Arts?", "How do I start working at home online?", "Are text messages considered legal proof of liability in a circumstance where someone owes money in USA? ", "What is the difference between a goal and a dream?", "How imminent is World War three?", "Why have you accepted Islam?", "Why do you waer makeup?", "Why do I always feel sleepy in college lectures?", "What does your typical day look like as a computer programmer?", "Islam: Is Islam really a religion of peace? Or are muslim apologists just fabricating the truth?", "How do I apply for Mensa membership in India?", "\"What's the difference between \"\"for\"\" and \"\"to\"\"?\"", "What is a trusted website for an online data entry job?", "Can WhatsApp be hacked?", "What are some of the most inspiring books that changed the course of your life?", "How can I make 1000 dollars online?", "How can I improve my fluency in English to face a more confortable job interview?", "What does ''Average GPA'' mean statistically?", "What are career opportunities in companies after an M.Tech in production engineering with a B.Tech in mechanical engineering?", "What are some interesting places to visit in China?", "Why won't my toilet flush well?", "Can a person be in love with two persons at a same time?", "Where do crop circles come from? What do you think they represent? Who do you think is doing it?", "How do I start a chat with a girl I like on social media?", "How is India fighting corruption by scrapping 500 and 1000 rupee notes?", "What are the best technological inventions and gadgets of 2016?", "What are your views about governments decision to stop flow of 1000 and 500 rupee notes.?", "Is there any actual proof of aliens?", "Is Quora degrading?", "How can I get rid of tiny black bugs in my bed?", "What is the easy way to make money online?", "How do I promote a blog for free?", "What are the best legitimate methods to making money online?", "I made a Gmail account on an Android phone but I forgot the password. What should I do to recover my password?", "Which is the best electric shaver for men?", "What is the best answer for why should we hire you?", "How harmful could it be to have little black bugs in my bed?", "Who is the most underrated film director?", "What should I have to do to make my english and communication skills perfect?", "Is it true if you think of someone they were thinking about you first?", "How much money can you make betting on horses?", "How do I build an intelligent robot?", "How does the propulsion system works in space?", "What makes yawning contagious?", "What are the current efforts to avoid global warming?", "If universe expands and vacuum energy is created with it (with no limit),is there infinite potential energy/infinite vacuum energy that can be created?", "What is main problem of India?", "How do I measure caffeine content in white tea?", "How does one choose the best global health insurance plans for frequent travelers or expatriates?", "What are some questions that we'll never know the answer to?", "Does the brain consume more calories when we think harder?", "How can I learn hacking?", "Who is better Donald Trump or Hillary Clinton and why?", "Why is it so hard to get over somebody?", "Can a vegetarian go back to eating meat?", "Is a high fat low carb diet better than a high carb diet?", "What is the best digital marketing course online for a beginner?", "What are bagpipes? How do they work?", "Which, if any, of the technologies have more to do with your professional life than your private life?", "How can I get rid of acne and scars?", "What should I do to improve my English skill?", "Has anyone ever seen a ghost in real life?", "How do i stop caring about my old friends?", "Can I make money online?", "Is it possible for people to love 2 person at the same time?", "What is a ICU?", "What's the triple point of water?", "What are the most advanced car tools that people don't know about yet?", "What is the difference between humans and the other animals?", "Who will you choose the person who loves you or the person you love?", "What does it feel like to have a doctorate?", "What is the difference between free and paid antivirus softwares?", "How can I get back my original skin colour? Its tanned.", "How do you create a blog in Quora?", "How can I change my profile name in Facebook?", "Why do women have more rights than men?", "How do I start an advertisement company in India?", "Can Donald Trump really become President of US?", "What will the government do with the old currency notes?", "What causes a nightmare?", "How is the state of smartphone business in India?", "Does anyone actually use Google+, and if so, why?", "How did Donald Trump become president?", "Who view my instagram video?", "Which mobile phone should I buy under Rs.15000?", "How do porn stars get paid?", "How do I stop my dog from throwing up white foam?", "What does it feel like to be all alone?", "Where can one take a real IQ test?", "Is hypnotism real?", "What are your views on the recent Indian surgical strike on terror camps in PoK?", "What salary can I expect after a master's in computer science from Germany?", "Where is the best Whirlpool microwave oven service center in Hyderabad?", "What does the moon star flag represent?", "How should males masturbate?", "Are Quora Top Writers picked automatically by an algorithm?", "What is the weirdest question you've seen (In your opinion) on Quora?", "Is there any evidence that can prove the existence of God?", "What are the topics, approach and sources to prepare for SBI PO 2016 GD and PI?", "How can you hack into somebody's bank account?", "How do I start learning programming?", "How can I get an internship at IISc?", "Can you laminate a social security card?", "How can we recover our Gmail password online?", "What is TR means in term of salary?", "Am not starting big? How can I make $1000 per month online?", "How do you know if you're gay?", "A compound has the molecular formula XeOn where n is the number of oxygen atoms. What is the equivalent of n when the dipole moment of the compound is minimum?", "Why disable comments when you can simply not look at the comment section?", "Should men always wear underwear?", "How do you generate traffic for a website?", "What are ways to commit suicide?", "Why is Saltwater Taffy candy imported in Hong Kong?", "What are some of the greatest examples of the presence of mind?", "Why does the Rhizobium bacteria appear only on leguminous plants and not on other plants?", "In ten words or less, why is your life worth living?", "Which things I must do in phuket (thailand)?", "What will be the date and time for the first Clinton-Trump debate?", "How do I reduce my belly fat when I don't get enough time to workout?", "Is nostalgia really a good thing?", "How can I lose 25 kg?", "What are different types of sedimentary rocks?", "What are the reasons behind oil prices decline?", "What are some innovative final year project ideas for a software Engineering student?", "Which are the best online tutorials for beginners to learn ANSYS?", "How is JUMP! On Demand different from JUMP?", "How can I recover my Gmail account's password?", "What are the places to visit in Pakistan?", "China: What are some mind blowing facts about China?", "How does banning 500 and 1000 rupee notes help to control black money?", "Where can I get best assistance for commercial real estate term loans in Sydney?", "What is the best religion for me?", "How does banning 500 and 1000 INR notes help Indian economy?", "How do I get a hack done on my wife's phone?", "What is light made up of?", "What is overpopulation? What are the cause and effects?", "How do I learn not to care about what people think of me?", "Why do tamil people love Rajnikant so much?", "What'd be the maximum wavelength of electromagnetic radiation we'd use to read a message in a paper?", "How do I get to the dark web?", "Why do people ask so many Googleable questions on Quora?", "How do businesses scale up?", "Can I be a soccer player at the age of 17?", "What are the safety precautions on handling shotguns proposed by the NRA in Massachisetts?", "How do you describe femininity?", "What are traditional British dishes?", "What are some beautiful images of death (as a concept or idea)?", "How can I improve my public speaking skills?", "When will Penny Dreadful Season 2 be available on Netflix?", "How can I get more backlinks to my website?", "What are the best ways to get a meeting with private equity firms?", "What workout clothes did guys wear in the year 1990?", "Where can I hire a serious hacker?", "What happened to Katrina Kaif's stardom?", "How much control can one have over one's emotions?", "What is the best way to make the right decision successfully?", "How many stars in the sky?", "What are the most dangerous drugs and why?", "How will the ban of old 500 and 1000 rs notes help in bringing out the black money?", "Which is the best book in electrical machine?", "Did Hillary Clinton lie about Benghazi?", "How much data does the average Netflix subscriber consume?", "What are the best book review sites?", "How can I get rid of fear?", "What are some of the best business books of 2016?", "What is the poorest country in Asia? Why is it so poor?", "How does science explain the placebo effect?", "How do you determine the formula of the stiffness of a spring?", "What is the the importance of history?", "What is it like to work for a pharma company?", "Can we make a complete and functional brain using bioengineering and stem cells or similar?", "How can I become a better problem solver? What mindset should I cultivate?", "What is the difference between FBI and CIA?", "How can I learn body language?", "What can I do to make $2000 in one week?", "What does treating illness symptoms through drugs have to do with medical wisdom for knowing how sickness is cured?", "Why do people pray?", "What are the best Gujarati books?", "Has anyone found a way to make money using Quora?", "How should I increase my height?", "If you became a teacher, what subject would you teach and why?", "How do you prove that circumference divided by diameter of a circle is a constant pi?", "What are some of the best websites to download movies?", "Would you rather be rich or happy?", "Why do people use Quora instead of Google to find answers to questions?", "How will the ban of Rs 500 and Rs 1000 notes affect Indian economy?", "Which will be the best day of your life?", "What would be the basic benefit of demonetizing 500 and 1000 Rs currency?", "What are different types of satellites? What is the most advanced type?", "What is the worst experience you have had with tours and travels?", "How can I destroy my ego?", "What was the craziest dream that you've ever had?", "Why did I get my period 6 days late?", "Which are the best GMAT coaching institutes in Delhi/NCR?", "Can a person lose weight by only dieting?", "Why nobody answer my questions in Quora?", "Does baking soda really help pass a drug test?", "How can I enter into bollywood?", "Do women prefer big penises when having sex?", "How does chocolate chips and chocolate morsels differ?", "Why should one up-vote an answer on Quora?", "Why is India performing bad in Olympics?", "What's your review on harry potter and the cursed child?", "What does rated ratings of a electrical machine mean?", "What is the thing you will never tell anyone?", "How is it to live in Austria?", "Can the President of the United States impose martial law?", "What are some good ways to join the Indian Armed Forces after my graduation?", "What will happen if Balochistan get its freedom from Pakistan and joins India?", "How do I become professional IOS Developer ?", "Who will win Punjab assembly election 2017?", "Have you ever had sex with your teacher?", "What are the best free Online Resources for learning German?", "How do I treat acne spots?", "What can we do to improve our lives?", "What is that one thing Indians are doing completely wrong?", "Which are some things in daily life that seem easy but are difficult?", "How can I utilize free time in office?", "What app can I use to track my husband with his phone by using my phone?", "What strategy is best for studying for the SAT?", "If the universe is expanding, then what does it expand into?", "Can psychopaths love?", "Which questions do you never want to see again on Quora?", "What is the best photo?", "My ex has just left me she said she doesn't love me but we still talk, how can I get her back?", "Can a person sensitive to weed and has a low tolerance to it feel a buzz if they accidentally ingest tiny traces of weed?", "How do I expand my creativity?", "Which is the best online institute to learn big data and Hadoop for a beginner?", "Will there be a war between India and Pakistan?", "Which are the best bluetooth speaker ls under Rs 5000?", "Where can I get high quality promotional self-adhesive sticker printing services in Australia?", "For all bank po exam which is the best book especially for reasoning and quanta?", "Does black hole exists?", "What is your favorite color? Why?", "How do I prepare if I want to start my own company?", "What are the most common symptoms for pregnancy, and can you know with certainty if you are expecting without taking a test?", "What are common myths about depression?", "How do I become a leader?", "What are the things I need to learn as a computer engineer?", "What music do you like best?", "How do I stop masturbation and forget women?", "How can I get internships in DMRC?", "What is commercial testing?", "Where can I get highest quality service at exceptional prices in Sydney for property conveyancing?", "How do you install/uninstall software in Ubuntu/Linux?", "What is the genuine way to make money online?", "When was your first sex experience?", "Movie Review: What is your review of Aamir Khan's Dangal (2016 movie)?", "How do I get internship at Google ?", "Why are all of my Quora questions marked as needing improvement, even though they meet all of the guidelines?", "Why do dogs generally bark and chase moving vehicles?", "Is Emile Durkheim's theory relevant in contemporary times?", "How do you make easy money online?", "What life lessons can we learn from Game of Thrones?", "What causes thunder and lightning?", "What is the best book to read to learn Java?", "Is it healthy to eat fish every day?", "What are the lies that most of us still believe to be true?", "What are the four layers of the atmosphere?", "What effects does eating spicy food have on us?", "\"What does it mean \"\"to know\"\"?\"", "Can you enlighten me on the the effect of current demonetization process in Indian economy?", "How do I move to another country?", "What were the most important causes and effects of the fall of the Roman Empire?", "Does Quora need an image policy?", "\"What does \"\"Exactly, and there's nothing that should\"\" mean?\"", "What are some of the best comedy TV series?", "Was it ever possible for Germany to win World War II?", "How do I start a research lab?", "Is time just an illusion?", "Why are mental illness and genius related?", "What the best way to improve English?", "Will Hillary Clinton trigger WW3?", "Why do people ask questions on Quora that can easily be answered by Google?", "Are we going to see the next world war?", "Is iPhone 7 worth the price?", "When did you first realize that you were gay?", "How do you make easy money online?", "What would happen if Earth lost its gravity for like 5 seconds and gained it immediately after 5 seconds?", "How can the drive from Edmonton to Auckland be described, and how do these cities' attractions compare to those in Windsor?", "How can I see who viewed my instagram?", "What is the best way to remove paint from glass?", "What is the meaning of life? Whats our purpose on Earth?", "Should I get the new MacBook? Is it worth it?", "How did you find a job abroad?", "What is the best way to prevent Cancer?", "Why do some parents believe hitting a child should be considered discipline?", "How do I stop being so loud?", "What was the biggest mistake you made in sales?", "How do I lose weight fast?", "Can you sleep without eyelids?", "Can someone hack my smart phone using WhatsApp?", "Do girls like guys sucking their boobs?", "Where can I get wide variety of formal dresses, bridesmaid dresses & evening dresses in Gold Coast?", "What are the moments in your life you want to repeat?", "After the U.S. dropped a nuclear bomb on Japan why did Japan fight back?", "What is your strategy for trading binary options?", "What is meant by common sense?", "Why do I get bloated every time after I eat?", "Can God make a boulder so heavy he can't lift it?", "What is a verified profile on Quora?", "I wanna start preparing for ias exam, how should I proceed?", "How can I improve my story writing skills?", "How Indian economy got affected after ban of 500 1000 notes?", "How can we get to know my current Facebook password which I forget?", "How do I create a new shell in a new terminal using C programming (Linux terminal)?", "Who are global Satellite Internet Service providers?", "What should I do to earn money online?", "What would happen if Miley Cyrus became the president of the United States?", "What should you do if you want to lose a lot of weight?", "How many planets are there?", "How can you prove time dilation?", "What can I learn from Forex trading?", "Have you ever felt like a complete loser in life?", "What is the culture value?", "What are your views on Indian army's surgical attack at LOC?", "Why does unemployment occur? How can unemployment rates be decreased?", "What does apathy feel like? Looking for detail, ed answers?", "How do I pass a drug test for meth in 40 hours?", "How do I change my Facebook password?", "So how does banning 500, 1000 rs and introducing 2000 rs will curb corruption?", "How can I overcome Harry Potter addiction?", "Is it good to work with a start up companies as a beginner?", "Is cognitive intelligence hereditary or divine miracle?", "What are the best IAS coaching centres in Hyderabad?", "What are the career options after electrical and electronics engineering?", "Do you think there is any country that would beat American economy in a matter of 30-50 years?", "How can I overcome the habit of procrastination?", "I'm 17 years and 10 months. I have started going to the gym. Should I take whey protein or a mass gainer?", "What do I need to check before buying a leather jacket for a guy?", "I think that I'm excessively obsessed with girls & sex. I fantasize about going down on them a lot. Could this be a psychological problem?", "What are the home remedies to prevent hair loss?", "How did you get your pet name/nickname?", "What makes a Labrador/German Shepherd mix such a loyal companion?", "What is the most beautiful thing you've seen?", "How did Donald trump win?", "How can you cancel you Amazon prime free trial?", "What is an efficient market?", "What is your first impression of China?", "Why is measuring TV ratings important?", "What are reviews of Big Data University?", "What did you enjoy most in your undergraduate academic experience?", "Can we message anyone on Quora?", "What are some tips for cleaning eye glasses?", "How should I break up with my girlfriend? I am conflicted? ", "What can India do in Syria?", "What happens if the Pope decides to take back Jerusalem?", "What was it like to grow up in 1980's?", "Why do most people remember the bad things you do to them more than the good things you do to them?", "Time Travel Is It Possible?", "Is Danlaw Inc. Bangalore a good company to work for?", "What is virginity?", "What are some of the NGOs or orphanages in Bangalore where one can help/teach?", "How do I get fit?", "What is degree of superheat?", "How can I improve my English Language?", "What motivates people with technical experience to answer questions on Quora?", "How does it feel having sex for the first time?", "What is good food for weight gain?", "How do dial up internet and DSL differ from each other?", "How do I start with Android development?", "Will Bernie Sanders run in 2020?", "Will Donald Trump beat Hillary and become our next president?", "Why is my puppy scratching his ears all the time?", "What is it like marrying a foreigner?", "What are common dishes in a Chinese breakfast?", "What will be the disaster effect, if nuclear war breaks out between India and Pakistan?", "What are some Google search tips and hacks?", "Why do guys cheat?", "Why did the government of India introduced a 2000 rupee note instead of a new 1000 rupee note?", "If I start ballet now, how long till I can do pointe?", "What is an operational amplifier circuit?", "What are the best electrical engineering softwares?", "How do dry cleaners iron clothes?", "What are typical Halloween traditions?", "What's it like trying to remember a face if you have prosopamnesia?", "Does life have some meaning?", "Who was the biggest traitor in Australian history?", "What things would you buy if you had a billion dollars?", "What is the best solution for stress relief?", "What changed in world politics with the end of the Cold War?", "How do you learn English grammar?", "Why do we celebrate January 1st as the new year?", "How do you train a dog?", "Should we celebrate our birthday?", "What are the best hotels of Rajasthan?", "When will the US have a woman president?", "Why do people ask questions on Quora instead of Googling it?", "What's the next big thing in digital?", "What's the quickest way to get rid of belly fat?", "How do you know whether it's time to continue holding on or time to let go?", "What is the difference between soil and sand?", "What are some mind-blowing wallets tools that exist that most people don't know about?", "What are the best available smartphones gadgets?", "What is the best book for becoming rich?", "How do I prepare for the UGC NET English Literature at home?", "Is it true that talk shows are scripted?", "Where can I exchange Indian Rupees for United States Dollars in USA for the best exchange rate before scrapping deadline of 500 and 1000 notes?", "Why do Quorans ask questions for which authentic answers are obtainable faster and easier through Google?", "What are some mind-blowing Camping gadgets that most people don't know about?", "How can I calculate the conversion rate on Facebook?", "Do you think that the demonetization in India will be successful and all black money will be busted?", "What are some of the funniest jokes you've ever heard?", "Why should everyone be respected?", "What is the list of western countries in the world?", "What is the difference between electrical devices and electronic devices?", "How does it feel having sex for the first time?", "What are the best questions to ask during an interview?", "Why should we study history?", "How does one intelligently ask questions?", "What did Napoleon lose at the Battle of Waterloo?", "How do you know if you are a good parent?", "What are some methods for preventing pregnancy?", "Which is the best compiler for C & C++ programming?", "What do you think about decision by the Indian Government to demonetise 500 and 1000 rupees note?", "What is the job of the enforcement directorate?", "How do we bake cake in microwave oven?", "What's the best place to sell Supreme clothing?", "Are past karma the only cause of one's sufferings?", "What are some proven ways to reduce and manage stress?", "What's life?", "Who is better Donald Trump or Hillary Clinton and why?", "How will black money and corruption be stopped by banning 500 and 1000 notes?", "Why do some people still believe that the earth is flat?", "How do you improve your writing skills?", "Can I get a job as a programmer without a degree?", "What are some technologies that can reverse global warming?", "What are the biggest companies in the world?", "A photon leaves the sun, bounces off a leaf, then hits my retina. Does that photon cease to exist at that moment?", "Who is the most beautiful person and why?", "Will banning 500 and 1000 notes can stop the black money?", "What is the best way to learn and practice C programming?", "What are the best phones under 15000 in india?", "What would happen if a nuclear or atom bomb exploded underwater?", "What do Pakistanis think of Nawaz Sharif's speech at UNGA, New York?", "How is the Samsung Galaxy S7 edge?", "\"What are some books similar to \"\"To Kill a Mockingbird\"\"?\"", "Is betting on bet365 legal in India in 2016?", "Is masturbation for a boy harmful?", "Is astrology true? Should we believe it or not?", "What's your favorite song now?", "How can I realistically make money online?", "Why do I feel lonely even when I'm around many people?", "How do I find a reliable manufacturer in China?", "How does it feel to born in a general category family in India?", "What will be the effect on H1B visas if Trump becomes US president?", "What's the most embarrassing thing your kid has said in front of everyone?", "How do I grow out hair fast?", "How do I recover from depression?", "What is Emotional Quotient?", "Now that it is virtually certain that Sanders will not win the dem. nomination why does'nt he run as an independent?", "Which book is the best to learn algo?", "Is it wise to buy a ticket at airport?", "How do you learn to draw basic pictures?", "What is the real reason for World War One?", "Why shouldn't I visit your country?", "What are the best exercises to get six pack?", "Which is the best course for digital marketing?", "Why World War III are inevitable?", "Is there life on other planets?", "What makes a boy attracted towards a girl?", "How do I prepare for merchant Navy?", "What is TR means in term of salary?", "How do you express sympathy?", "How do I calculate percentile?", "Why do some people think they are better than everyone else?", "Why Modi banned Rs 500& Rs 1000 notes?", "How can I best spend one week in Galápagos Islands?", "What are the best ways to speak English fluently?", "If we have evolved form monkeys then why do monkey still exists?", "Is it advisable to join a well reputed UK university or an above average US university for engineering?", "How do I become focused on school?", "What are the most popular tourist destinations?", "Do you think any other country then INDIA has multi -lingual, multi culture and Bio-diversed?", "What can cause a period to come early?", "Will Donald Trump or Hillary Clinton win the 2016 US presidential election?", "How do I motivate myself for anything?", "What makes Asians looks Asian?", "What is the scope of big data in the future?", "Which answer on Quora got the most likes?", "What is the most crucial lessons life has taught you?", "Can Donald Trump win?", "How can I fall in love again? I was hurt once and swore it would only happen once.", "Will the Common Travel Area continue after Brexit?", "What are the main provisions in India's Foreign Trade Policy and its Implications?", "Which programming language should I learn first?", "What are some quick ways to control your anger?", "Why is it illegal to sell loose cigarettes?", "Can hamsters eat peanuts? Are they harmful for them in any way?", "Who should be the president of India in 2017?", "How do I know that she actually loves you?", "How can I increase traffic to a story blog?", "Which is the best book of linear algebra?", "What are the measures to define a country as a First, Second, or Third World Country? And who decides that?", "What is/are your New Year resolutions for 2017?", "What is the difference between 190 kbps audio and 320 kbps audio?", "What are the best Lucid Dreaming techniques?", "How can I remain married to a narcissist without losing sanity in everyday life?", "What do you think about PM2.5?", "Where can I get amazing collection of floor tiles in Sydney?", "Where can I learn Sanskrit?", "What are the best books for Java beginners?", "What happened to radha when Krishna left vrindavan?", "How do I shave my bikini line?", "Which is a good solar panel installation provider near Sunland, California CA?", "How do doctors prepare for an appointment?", "Why was I blocked from adding questions on quora anonymously and how can I change it?", "How can i make money online easily?", "Are there any cheap places to stay in Goa?", "Are spiders considered insects?", "What is disadvantage of mobile phones?", "How can you know if someone is lying to you?", "Why do Catholic priests have to be celibate?", "What are some lesser known facts about ants?", "What is the helpline number of Zoho Customer Care?", "Will the EU allow the UK to remain in the single market after Brexit, and if so, under what conditions?", "What are ways to start a conversation?", "In A Song of Ice and Fire (book series): Who's more beautiful, Lyanna Stark or Cersei Lannister?", "How do I improve my pronunciation in English?", "What is the best way to learn Java programming?", "If Donald Trump were elected President, who would he appoint to the Supreme Court?", "What is a good programming language to use?", "Which are the best books to learn HTML, CSS and JavaScript?", "Why can't US legalize prostitution but they can legalize gay marriage?", "How does woman's body change after losing her virginity?", "What’s the strangest incident that’s happened on an airline flight?", "What is the most painless and quick way to die?", "What do you hate about school?", "Why do I feel weak after masturbation?", "How is the President of USA selected?", "What are the best ways for dealing with social anxiety?", "Why do a majority of people not like cops?", "How can I increase my website page rank?", "Which are some successful long distance relationship stories?", "How so I ask questions on Quora?", "What is it like to attend a Trump rally?", "Why is Manaphy angsty throughout in Pokemon Ranger and the Temple of the Sea?", "If universe expansion create more gravitational dark and vacuum energy without limit?", "What is the one thing you want in your life the most and why?", "How hard is it to get into Cambridge?", "How do I learn machine learning?", "Why did my iPhone 7 not come with the new wallpapers that were advertised?", "What should I ask as my first question on Quora?", "What's your New Year's resolution for 2017?", "Where did the energy from the big bang/singularity come from?", "How much should an average partner at a medium size venture capital firm expect to make in a given year?", "What will be the effect of banning 500 and 1000 Rs notes on the Indian economy?", "Which is your favourite film in 2016?", "How much coffee should one drink per day?", "Is there any reason which makes Pakistan seems undisputedly right in claiming that kashmir belongs to them?", "Why don't install a battery for desktop computer?", "Why is Trivandrum continuing to be the capital of Kerala when it's inconvenient for people living towards the north of the state?", "How do I treat a blood blister on my eyeball?", "How do I save money while doing online shopping?", "What is the biggest black hole we know?", "Is vacuum energy infinite?", "What are the most suitable majors for any aspiring pre-med student?", "How much will it cost for studying MS in Germany?", "How do I know if I'm in love?", "Can you name a movie with a sad ending?", "How will the scrapping of Rs 500 and Rs 1000 notes help in reducing black money and corruption?", "Which university is the best in the world?", "How do you start your period early?", "How do I prepare for the GRE?", "Does astrology really work, I mean the online astrology?", "What are the most authentic books about life of Prophet Muhammad and his family?", "When, where, and how did viruses come about?", "How do I remotely break into my girlfriend's iphone, without her knowing?", "What about the IAS coaching at Mukherjee Nagar?", "What did you learn from college?", "Do women always enjoy sex?", "How can I extract email addresses from a list of websites?", "How many different religions are there in the World?", "Why do long distance relationships fail?", "Will jumping up in the air just before a plummeting elevator crashes into the ground increase chances of survival for the passengers?", "If you could wake up tomorrow in the body of someone else, who would you pick and what would you do?", "What would the 2016 Presidential Election results look like if electoral votes were awarded proportionally?", "How can I realistically make money online?", "How do I stop my dog from humping my furniture?", "How can one move to Japan?", "Why do some people call Donald Trump racist?", "What are prospects and challenges of pulses in food security?", "How do I handle stress?", "How could I be fluent in English?", "What are the reasons why Buddhist monks wear orange robes?", "What books I should read?", "How do I control my emotions and anger?", "Which is your favourite star in the sky and why?", "What's the best free web hosting site to host apps?", "What do most people not know about airplanes?", "Due to Carrie Fisher's tragic and untimely death, will she be created in CGI for Star Wars Episode 8 or just written out?", "How can I get order on Fiverr?", "Does minoxidil really work?", "Which is the funniest GIF you have ever seen?", "Will meth be in my system after 48 hrs?", "How do I find the best seo company in dellhi ncr?", "I have 74% in my 12th board (CBSE). So can I get admission on IIMs if I clear their cat cutoff?", "Did you dislike Harry Potter and the Cursed Child too, or was it just me?", "What are the safety precautions on handling shotguns proposed by the NRA in Vermont?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Atacama Desert?", "Why are some questions on Quora flagged as needing improvement when they don’t need improvement?", "What are the embarrassing moment of your life?", "Where specifically do tsunamis happen? Why?", "How many cups of coffee should I consume in a day?", "How can the U.S. intelligence community reconcile with Donald Trump, so they can work together?", "What was the Agricultural Revolution and what were its effects?", "How do I solve programming problem?", "How can I make Indian people shop through www.storeguide.in?", "What is the first thing you will do after you wake up in the morning?", "Why do I feel tired in the morning even after getting proper sleep?", "Why are Europeans joining ISIS?", "What is meant by surgical strikes?", "Xiomi Redmi Note3 Pro How to Replace Battery?", "Which among the five seasons (summer, winter, rainy, spring, autumn) is better for farming and cultivating of crops?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Andreanof Islands earthquake in 1957?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Bataan?", "How and when can I fill the form of Improvement exam of class 12 in 2017?", "If someone owns an island, could they legally start their own country?", "What is the best weapon in a zombie apocalypse (think about ammo)?", "Is it healthy to eat egg whites every day?", "What is the function of SIM cards in iPhones?", "What are some evidence that Ramayana and Mahabharata did happen?", "What is a hawala transaction?", "How can you know if a girl likes you?", "Why do Indians keep asking questions about what other nationalities think about them?", "How can I start learning about web development?", "Is Spanish or French more similar to English?", "What makes weeds grow so much faster and easier than other plants?", "What should I do after 10th to become a pilot?", "What is a material culture? How does it differ from a non-material culture?", "From which MBBS year students should start preparing for USMLE?", "How can webstudy csr funding online?", "Is the Samsung Galaxy 4 worth buying now?", "Why does Quora need access to my contacts?", "What are zero sum games?", "How do I get more traffic on my website?", "Why are majority of Indians poor in English?", "Which country is most likely to start world war III?", "What do you mean by business world?", "What is the best way to prepare for BITSAT 2018?", "Is there a way for the DNC to replace Hillary Clinton at this point? Who would replace her if she withdraws from the race?", "Is it possible to see when a Quora question was asked and who asked it?", "Do gay men secretly hate women, or do they hate girls?", "How is a raven like a writing desk?", "How do I check who blocked me on Instagram?", "My Gmail account has been hacked. What should I do?", "What do you mean by continental drift?", "What is the significans and importance of power factor?", "So how does banning 500, 1000 rs and introducing 2000 rs will curb corruption?", "How safe it is for a dog to eat corn on the cob?", "How do I recover a Gmail account when I have the username and password, but don't have the recovery phone number or email or any other information?", "What modern day movies do you think will become classics?", "Who will win 2017 Uttar Pradesh Election and why?", "How soon is world war III?", "Which citizenship is the easiest to obtain and how?", "Why do some men want to have anal sex with women?", "What is in simple words a p-value?", "Which is the best website development software?", "How do I get Trump-related content off my Quora feed?", "Where can I rent a manual transmission car in the Bay Area?", "Why is Saltwater taffy candy imported in China?", "What are some of the best mobile phones gadgets?", "Have you ever been in love? ", "How hard is it and how much do you have to sacrifice to become a doctor?", "What long term health effects are likely for residents of new delhi due to the air quality?", "What are certain things a girl would never tell her boyfriend?", "Do we need change in education system?", "What are some good books on marketing?", "Trump supporters: what about him makes you think he could be a good president?", "What does an Art Director in movies do?", "If the universe is expanding, then what does it expand into?", "How can a high schooler start research in computer science?", "What are the benefits of gst bill?", "What are some mind wallets for safety that most people don't know about and should have?", "How can we earn money online in india?", "Are we getting closer to world war 3?", "What are some ways of recycling staples?", "How can I hack what's app messages using IMIE?", "Trying how to write a question on Quora?", "What skateboard should I buy?", "What is the procedure for opening a NGO?", "How can I make women smile at me or say something to me in public? Do having big shoulders work, ladies? Or what?", "Can you suggest some excellent documentaries on World War 2?", "What is macroevolution? How does it differ from microevolution?", "Did Ben Affleck shine more than Christian Bale as Batman?", "Which is the best bicycle to buy in India around the range of 10000 and for commuting purposes?", "What are your favorite books?", "In a double slit experiment is the particle always detected traveling through a single slit due to its always traveling through a single slit?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Calabria?", "What are the similarities and differences between respiration and photosynthesis?", "How do I get US H1B visa?", "What's it like to kill someone in combat?", "Which is the best QuickBooks Tech Support Number?", "What is Angel investor?", "What is the cure for chronic eczema?", "What should I do after computer science engineering?", "Why does India so scared of CPEC?", "What is beyond a black hole?", "Can I gain weight by joining gym?", "What are the must read books for CTOs?", "How can I increase the page rank of my website?", "Where do I get my property tax statement?", "Hh ", "What is the best way to talk English fluently?", "What should I do when I have nothing to do at the office?", "What kind of shoes should I wear with a grey lace dress?", "\"Why do all the programming languages use \"\"Hello World\"\" as the first program?\"", "Why do so many people hate Hilary Clinton?", "How do I make my study more interesting?", "Why the banning of 500 and 1000 rupees notes?", "Is anyone about to uninstall Quora and stop using it? Why?", "Can any one give suggestions which laptop should I buy at the range of 30000?", "How will the ban on 500₹ and 1000₹ notes impact the Indian economy?", "Is Lost the best ever T.V. Series?", "What are the most important things that parents should teach their children? Why?", "What purpose do you find in life?", "How much do artists generally get paid for music festivals?", "How long would it take for all traces of humanity to disappear if we all died tomorrow?", "What is funniest joke you've ever heard?", "Who are the most irritating actors and actresses in Bollywood?", "Do Jinn really exist? If yes, why scientists are not doing research on them?", "\"What makes you believe that \"\"Everything happens for a good reason\"\"?\"", "What are the facts which proves The Qur'an is word of God?", "How long does it take to drown?", "How do I become an entrepreneur?", "Are smarter people more likely to be lonely?", "How can I make money online quickly and easily?", "Do heaven and hell really exist?", "How can I make my study more effective?", "Who is the barber that does Donald Trump's Hair?", "What are some everyday examples of chemical reactions?", "Why do I get severe cramps during my menstrual period sometimes?", "What helps to heal your broken heart?", "How do you make money with Quora?", "What is the difference between supercharging and turbocharging?", "How can you compare and contrast an espresso maker with a coffee maker?", "What are the different functions of plasma membrane?", "What is remainder?", "What is a panda?", "What is/are your New Year resolutions for 2017?", "What are some adaptations of blue whales?", "What can you hold in your right hand, but not in your left?", "Which is the best gaming laptop under Rs.60000 in India?", "Why is Saltwater taffy candy imported in China?", "Where is the best place for sex?", "How do I become a Bollywood star?", "How do I post something on Quora?", "How do I increase organic traffic to website?", "What are ISIL's or ISIS' motives and goals? How are they accomplishing them?", "How can I gain weight on my body?", "What is the most inappropriate action your kid did in front of strangers?", "What's your favorite song now?", "What does it mean when your period is three days late?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Port Arthur?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Colorado Plateau?", "Why does nobody like Nickelback?", "How can I become a warming person?", "Is it likely to get pregnant during day 3 of my period with unprotected sex?", "How can I deal with depression and low self-esteem?", "While creating a song, are lyrics written first and then music is composed fitting those lyrics or first music is composed and then lyrics are written to fit the music?", "How do I overcome from depression without getting help from anyone?", "What are the best anti-aging products?", "How can I recover deleted text messages?", "Will Donald Trump be the first US President not to accept his salary?", "How can I write a private message to one of the users of Quora?", "How can covalent bonds be described?", "Why is the sky blue color?", "What are the career options after obtaining an MSc in mathematics?", "How do you port a subwoofer box?", "Why was India invaded by foreigners?", "How can an ordinary person make the world a better place?", "What are the best ad campaigns you have seen?", "Which countries provides an opening without price for master programs?", "What is the biggest regret you have?", "How do you know you're in love again?", "What are the best books for IBPS PO?", "How do I get more traffic on my website?", "How does one write lyrics?", "Who will be USA next president, Trump or Clinton?", "What is so wrong with background checks before purchasing a firearm?", "Have you ever met a celebrity?", "What is the cost of owning a ferret?", "How was Hillary Clinton as Secretary of State?", "What are the different organ systems?", "Why is Pokémon GO so popular?", "Is a college education worth it for everyone?", "Should I vote for Trump?", "Do you support Donald Trump or Hillary Clinton? Why?", "What is an NRO account?", "How do I find my lost phone using imei number without going to police?", "If the Big Bang created everything, how did the Big Bang happen if there was nothing before it happened?", "What are the best option after completing my B.Tech in mechanical engineering?", "What is probability?", "How do I recover my gmail password when I lost my registered recovery number?", "How long did the British occupy India?", "Is it healthy to eat fish every day?", "I've not had my period for 3 months now (Last period ended on June 9th). I'm 22, never been sexually active. What should I do?", "What is the best way to monetize user generated video content?", "How is Quora good for me?", "If a mosquito appears to fly at its normal speed inside a moving vehicle with closed windows, is it really flying at its normal speed or is it flying at a speed relative to the speed of the vehicle to appear normal?", "What causes a bad person to become a good one?", "How can I lose weight effectively?", "How can one get up soon, after wake up?", "What is most important thing in life? Can we categorize it?", "How do I stop procrastinating and wasting time?", "Do you really think everything happens for a reason?", "What are the basics for mentalism?", "Which is the best institute for Pega online training?", "What part time jobs can I do by sitting at home?", "Does long distance relationship work?", "Who do you think will win the 2016 Presidential Election?", "How do I get all my Google contacts onto my iPhone?", "How will the scrapping of Rs 500 and Rs 1000 notes help in reducing black money and corruption?", "What is a good recipe for preparing chicken with Hunan sauce?", "If you could just pick up and move right now to live anywhere in the world where would you live and why?", "How do I earn money online?", "What is reality? Is this real life?", "What is the way to increase the height at the age of 21 years?", "What are the things which matter in life?", "How do i lose weight?", "What is the answer of 7+7/7+7*7-7=?", "Will foreign students studying in the USA be unwelcomed after Donald Trump is elected as president?", "Where can I get list of stylish collection of designer floor tiles in Sydney?", "How did the 12th Amendment change the voting procedure of the Electoral College?", "What is the most important thing in one's life?", "How can I pursue journalism after my B.Tech. degree?", "Who will win the Premier League 2015-16?", "Why does lead block radiation?", "What is project Google's project loon?", "What is the best place for a first date in Chennai?", "How do I stop over masturbation?", "How can I overcome loneliness and depression?", "What are things a mechanical engineer should know?", "Which is the best Linux for desktops and for mobiles?", "What is the Minimum Passing Score for the CFA Program exams? How many correct answers do you need?", "What are some mind-blowing smartphone gadgets that exist that most people don't know about?", "Why do people keep buying Apple products?", "What is limited liability company?", "What is your New Year's resolution for 2017?", "What is the conclusive proof of the existence of black holes?", "How do I make friends If I'm an introvert?", "What is the minimum percentile in the CAT to get into any of the IIMs?", "How do I really make money online?", "How do I earn money from the Internet?", "How much money per month is enough to live as a graduate student in Birmingham, UK?", "What are the reason behind that sleepless nights?", "How do I take control on masturbation?", "How can I stop masturbating forever?", "What is the QuickBooks technical support phone number in New York?", "How can one get a job in google?", "How do they know Tchaikovsky was gay?", "Should l take revenge?", "Do you regret getting a tattoo?", "What is Delta Charting Group in Tucson, Arizona?", "How on earth would I decorate my bedroom for a young adult male?", "Who is the most underrated character in the Game of Thrones series?", "I have forgotten my password for Facebook and no primary email and phone is added to my account. How can I get access to my account?", "Which country has never been colonized by any power?", "What are the best movies you ever watch?", "Is it possible to know who visited my Facebook profile?", "Has Ancient Japan been scientifically tested?", "What happened if we use diesel in petrol engine?", "How did you get to the job you have now?", "If God knew Lucifer would rebel against him, then why did He create him?", "What are some of the most difficult questions asked in an interview?", "What is the best career option after bachelor of pharmacy?", "What are the career options for a International Relationships major?", "What makes The Hindu so special that it is the only newspaper which is recommended for UPSC aspirants?", "What are the Best books on quantitative finance?", "What is the difference between an API and SDK?", "Is it weird for a 14 year old boy to date a 12 year old girl?", "How can the Big Bang be created by vacuum fluctuations if time didn't exist before the Big Bang?", "How do I get freelance web design gigs?", "Which are the top medical universities in Ukraine?", "What do you do to overcome writer's block?", "What causes NPD?", "How do I overcome depression?", "How have you helped to create positive change in your community, country or organisation? *", "Why do Americans know so little of the world?", "Who invented tennis?", "Why do many Quora users ask questions they could look up online?", "What should I do if my puppy throws up white foam?", "What are easy ways to lose 500 calories a day?", "Is it true that the higher your IQ is, the more you dream?", "Can electricians install light and ceiling fans?", "What is the problem with websites like Gumtree?", "How can I grow my web development business?", "How do I speak English fluently?", "How can you get rid of detergent stains on clothes?", "Is 290 in gre a good score?", "Why are so many people content with just earning a salary and working 9-6 their entire adult life?", "Do we have to dream big?", "What is physical meaning of wave number (k)?", "Are there any substantial way to quit meth?", "India vs Pakistan - Which country is more developed and better for living?", "Historically, how many countries have the US invaded?", "If you could travel back in time, what life event would you change and why?", "Is it wrong for a girl to confess her feeling towards a boy?", "Can you help someone with asthma without an inhaler?", "What are the options available after graduation in mechanical engineering?", "What are your favorite poems and why?", "Is Iraq better or worse off now than under Saddam? How would Iraq be now if US had never invaded?", "What is the best book to learn C++ for a programmer with C background?", "Why do so may people ask questions on Quora that can easily be found by a simple Google searh?", "What were some of Mother Teresa's contributions to the world?", "How can someone hack Google?", "Is it true that the new INR 2,000 notes will be embedded with a Nano GPS chip?", "Which is the best smartphone to buy in august 2016 under Rs. 15000?", "Is it too late to start medical school at 32?", "Where do phrases come from?", "How should I get rid of belly fat?", "What are some dumb questions ever asked on Quora?", "Which will be the best buy between Yamaha r3 and ninja 300?", "Who are you voting for in the upcoming presidential election and why?", "What is the best way to become a good programmer.What are some good ways to learn programming from the scratch?", "What is group dynamics theory?", "How do I reduce weight rapidly?", "Do Quora users still see questions that are marked as needing improvement?", "How long does meth stay in your system? If last use was Friday, would it be out by Monday?", "How do phones get viruses?", "How do I improve my communication skills.?", "Why do people say Islam is a religion of peace?", "How do I get the first million users for my app?", "Is killing mosquitoes ethically wrong?", "\"What makes people \"\"fall\"\" in love?\"", "I have to masturbate 3 times to feel an orgasm sometimes only 2 times what is wrong with me I went to the doctor and they do not believe me?", "What should I do if my puppy throws up white foam?", "Do you believe in Santa Claus? If so, what evidence do you have for your belief?", "What are the best places to visit in Portugal?", "What are my options for earning money online?", "What’s Pakistan’s view on Uri attack?", "Does a long distance relationship really work?", "Is Sociology a good optional subject for UPSC mains? Why?", "Is there any way to recover an e-mail in Gmail after it's deleted from the trash?", "Why do everything on the universe need to be symmetrical/in balance?", "How can i grow facial hair ?", "Can I be pregnant after 5 days of period bleeding?", "Is Quora respecting freedom of speech?", "Is SRM ramapuram worth going through a management quota?", "Which are some of the best romantic movies?", "What are the funniest jokes / stories you ever heard?", "What is the best way to start learn hacking?", "Howdo I get into Stanford with a poor GPA?", "What do you like to do with your friend?", "How do personal and interpersonal skills differ from each other?", "What happens to my stock options when I quit?", "How do Quora users feel when they read a question that could have been answered instantly via a Google search?", "What are some of the best ways to thaw lobster tails?", "How can I convince someone that Clinton is a worse candidate than Trump?", "What is healthier, tea or coffee?", "How can I earn money from Facebook (not illegally)?", "What should I do to get better grade in my class?", "What do you think about ban on Rs. 500 and Rs. 1000 currency notes?", "Which are the top 10 psychological thriller films?", "What are the safety precautions on handling shotguns proposed by the NRA in South Carolina?", "What are the most highly anticipated movies coming out in 2017?", "How do you wear a promise ring?", "How harmful or unhealthy is masturbation?", "What irritates you on Quora?", "Should I get a Pembroke or a Cardigan Welsh corgi?", "What are the best ways to earn money from home?", "Why can users change other users' questions without asking permission from the original user who posted the question?", "What is the best introduction to computer science book?", "How can I speak English more fluently?", "Why do people keep asking questions on Quora even though the most of the information is available out there on Google?", "What is a microcontroller and what are its applications?", "Why do some people still think the Earth is flat?", "Which Macbook should I buy MacBook or MacBook Pro?", "Why is Barack Obama considered a social democrat?", "Is it right to having sex before marriage?", "When, how and where did the concept of Hell originate?", "How can I increase website traffic?", "Daniel Ek: Why hasn't Spotify come to India yet? When is it launching in India?", "How I cab use Jio sim in 3G device?", "How do you know you are in love with someone?", "Which are the best private universities?", "What are some good ways to discover young unknown rock bands, like rage against the machine and foo fighters?", "What are some haunted/spooky places in Delhi?", "How can I improve my story writing skills?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Syrian Desert?", "Can we live in a world without money?", "What is the biggest mistake you think you have done in your life, which you may or may not regret?", "How do we stop social media addiction?", "How do I get over a straight crush?", "What are the hazards of travelling in my 9th month of pregnancy?", "Why does an electron move around the nucleus?", "What are the differences between Darwin's Theory and Lamarck's Theory?", "How can I stop temptation to watch porn?", "What is the difference between system software and application software?", "Does Palestine really exist?", "What is the best digital marketing course online for a beginner?", "What is a manometer?", "Who's your favorite writer and what book of theirs would you recommend for reading?", "What existed in the space before Big Bang?", "How can I lose weight ?", "How do I breakup with a girl without hurting her feelings?", "What is a good question to ask Quora?", "What are the safety precautions on handling shotguns proposed by the NRA in North Dakota?", "How can I get back deleted Instagram messages?", "Why is it UK team for olympics while only england team for football world cup?", "Was King Richard III a good king?", "What is the evolutionary function of curiosity?", "How has Quora impacted your life?", "Do muslims use Patanjali ayurved products?", "Which camera is better Nikon D5200 and Canon D1300?", "Does life have a meaning, or does it simply exist and have no meaning?", "What is the difference between Promotional & Transactional SMS?", "What do you think , can Google+ beat Facebook?", "Is there anyone who can help me translate a paper from Urdu into English?", "How do I develop patience for reading books and large articles?", "Are there many Japanese men that are attracted to Persian women from the Middle East?", "How do I study for accounting?", "What determines a substance's specific heat capacity?", "What are the best speakers for karaoke?", "Can science prove god does not exist? Or can God prove he exists?", "Why does smoking make you lose weight?", "How do I promote a new website?", "Which are the best earphones under 600?", "I have cellulite on my legs which makes me look fat. How do I get rid of it?", "How do I make a rocket?", "What is your favorite thing about life?", "What do you think about the Chinese national football team?", "Will the world eventually run out of fresh water which can be drank?", "What are some famous ESL learners?", "Why did many polls and odds makers fail to correctly predict the outcome of the 2016 US Presidential Election?", "What happened in Bengaluru on M.G. road on New Year's Eve?", "How many questions are asked on Quora each day?", "Who is most luckiest person?", "Which is the best news portal for Chhattisgarh news?", "Why is Hillary Clinton worse than Donald Trump?", "What is the bad thing about quora?", "Who is the most famous poet in the world?", "What is the difference between infatuation & love?", "Physics: does gravity really exist?", "What are some possible causes of night terrors in children?", "What differentiates Quora from Yahoo! Answers?", "What is Veto power?", "When and how will North Korea collapse and implode?", "When should I start taking multivitamins?", "How do I become rich with no money?", "Where can I get a free Minecraft server 1.10.2 forever?", "Which are the top romantic songs of Bollywood?", "What is a black swan theory?", "What are the pros and cons of C# vs Java?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Arabian Desert?", "What is VGA?", "How can I improve the quality of my life?", "How will replacing 1000 notes with 2000 notes going to stop corruption and black money?", "How do I avoid someone whom I love deeply, when she has no feelings?", "What are the best sarcastic one liners you've heard?", "Which programming language is best for developing low-end games?", "Can Donald Trump really become President of US?", "If sun dissapears suddenly what happened first? We will see it or we will feel it from the absence of sun gravity?", "How do you lower your blood pressure?", "How funny was the TV Show Joey after F.R.I.E.N.D.S.?", "How do I crack the GATE 2017 for the EEE branch?", "How is wind formed?", "Is it a good idea to buy a used car from a rental car company?", "Did the Nazis kill Slavs to give the Jews free land?", "Why are there no female Navy SEALs?", "What are your comments on Rahul Gandhi's Twitter account hacking?", "Does anything make a person gay, or is a person really born gay?", "How has Quora changed the world so far?", "Do I love her?", "How do I stay healthy as a vegan? What vegan athletes eat?", "Where bearings are used?", "Will Nigeria eventually become the top superpower?", "What is the most common age of Quora users?", "How is the coefficient of kinetic friction calculated?", "What are some ways to get leaner?", "When was your first sex experience?", "How I can speak English with fluency?", "How do I prepare for my presentation?", "How do you get rid of acne scars on your chest?", "Where can I find DJ for teenage Birthday party in Sydney?", "How do you know when it is true love?", "Who is live on google world famous astrologer?", "What is your New Year Resolution?", "How can I prepare my CV?", "What is your opinion on Britain exiting the EU?", "Why do so many people add questions anonymously?", "What is happening in Aleppo and why?", "How much time (maximum) does Accenture take to give joining after final selection?", "What is India's infant mortality rate?", "How do I claim the warranty of an online purchased mobile from Flipkart?", "Can Donald Trump win?", "What will be the implications of banning 500 and 1000 rupees currency notes on Indian economy?", "How will Trump's victory effect India?", "How Indian population can be controlled?", "What is a list of interesting banned books?", "Would Bernie Sanders have defeated Donald Trump?", "What are best books for SSC CGL?", "Is it too late to go to medical school at 24?", "How can I utilize my time while traveling on the Metro for more than an hour?", "How can I learn to sing online?", "How can medical science respond to increasing antibiotic resistance?", "What is the difference between expatriates and immigrants?", "What are the mysteries of the Bermuda Triangle?", "Can you share best day of your life?", "Can you see who viewed your Instagram?", "Can I use Jio sim in my 3G mobile?", "How do I stop caring about the opinions of people?", "Why is ice slippery?", "Do shock collars work on dogs?", "How do I increase the sensitivity of my penis head?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Dasht-e Margo?", "Has the Ancient Khmer Empire been scientifically tested?", "What are some leguminous crops?", "How do I bring more traffic to my website?", "How do you stop stopping?", "Is World War 3 on the way with the US Elections?", "Why do people ask questions on Quora while They can get all the answers by Googling?", "I love food and have a big appetite. I'm also quite busy. What tips can you give me to lose weight?", "In which bank should I open my savings account?", "How do I get loan on existing business in india?", "How do I add an image to a question on Quora?", "How can you increase your IQ?", "What are benefits of rooting Android phone?", "Why did you decide not to have kids?", "What is the biggest problem of Japanese education?", "How to gain weight ?", "What is the main threat for accessing the deep web?", "How do I put up my profile photo on Quora? It doesn't have an option.", "What should a person do when everything goes wrong in their life?", "What is the world's view on the design of India's new ₹500 and ₹2000 notes?", "Moms: what can you write to your moms to cheer her up?", "How can we make others take us seriously?", "What might be the effect of banning currency notes of 500 and 1000 on economy?", "How does anyone start a startup?", "Who is CEO of Infosys?", "Why is Saltwater taffy candy imported in Australia?", "How do I really kill myself?", "Can I get pregnant a day before my period and still have my period?", "What are some painless ways to commit suicide?", "Who is the best teacher in India?", "How do you feel when you fall in love?", "What songs make you cry and why?", "What are the best places to hangout in the weekend in Pune?", "What are the best sledging moments in cricket history?", "What is the best Doctor Who episode to get someone addicted to the series?", "How do you handle stress?", "Why would my boyfriend have a fake facebook account if he doesn't even use it according to him?", "How can I make money online for job?", "How do I convince a girl for doing sex?", "How do I find a good custom essay writing service?", "What's the long term impact of demonetization of 500 and 1000 notes on Indian economy?", "How do you raise self confidence?", "What is the importance of art in human life? What's the relationship between arts and philosophy?", "What is the so called knowledge and learning? What are the differences between these words?", "What are IBAN numbers?", "How can one overcome the fear of speaking in public?", "How can I learn ethical hacking online?", "Where can find public companies looking for looking for non recourse loans?", "MNC: 857 or 863 or 874…?", "How do I stop eating junk food?", "Does magic really exist in the world?", "Why do people have to ask Quora for questions?", "Why do fusion reaction and fission reaction both release energy?", "What is the truth behind the Bermuda Triangle?", "How do you find out what the best food to give 4 week old German Shepherd puppies?", "Why was the creation of the incandescent light bulb important?", "Is the Canon powershot a720is still a good camera in 2016?", "What is the best way to control the use of credit cards?", "How do I prepare for SSC CHSL?", "How much does wolfram alpha cost?", "What would happen to the ISS when it is decommissioned?", "What would it be like if the whole world was one nation?", "How do I fly an airplane?", "Does mass have an affect on gravity?", "What is the phone number for Zoho Customer Help?", "Where does the pharmaceutical industry come up with the names for their drugs?", "What is the best way to earn money through online?", "How can I copy and paste text in Instagram?", "Does Gary Johnson have any chance left at winning the presidency?", "What is it like to smoke pot?", "What is a good soy sauce substitute?", "How can Facebook and Twitter make money for you?", "How does one overcome fear of failing?", "How long would it take to send an unmanned rocket to explore the interesting planet at Proxima Centauri?", "What separates the top 10% of startup CEOs from the rest?", "How are laws enforced?", "What are the pros of eating skunk meat?", "How does it feel to fall out of love?", "Who invented the internet and how?", "What are some ways to monetise your Twitter account?", "Can trump make America great again?", "What are the best incest movies ever?", "What is it like living in France?", "What skills are needed to become a film critic?", "How do I start a knitting and crochet business?", "Which is the best CBSE school in Howrah or Kolkata?", "What are your new year resolutions for 2017?", "If we have evolved form monkeys then why do monkey still exists?", "What are some tricks to study pharmacology?", "What causes a person to feel thirsty after they breastfeed?", "How do I transfer a bike to my name in Hyderabad?", "How can I lose 5lbs in 2 weeks?", "What does kiosk application do?", "How do I promote my product on Amazon?", "What is that cause my heartbeat rate to increase after I take a birth control pill?", "Psychology of Everyday Life: What are some things that make Indians happy?", "Why Hillary Clinton wearing red and Donald Trump is wearing a blue tie for debate? Shouldn't they be wearing the party they are running for?", "How much does it take to start a business?", "Did India really carry out surgical strikes?", "How iPhone is better than Android?", "How exactly does banning Rs 500 and Rs 1000 notes curb the problem of black money?", "How do I start learning cyber security/ network security form scratch?", "Would anyone date a prostitute?", "How do I learn the stock market?", "Is the University of Vermont a good school?", "Does Hillary Clinton still have a chance at winning the presidency?", "How do I reduce anxiety?", "How are the inflation and growth of the economy related?", "How should I improve my english communication skills?", "Is the film MS Dhoni, The Untold story worth watching?", "Is choosing bioengineering at IITB a good choice?", "I am 19 years old girl and my height is 5'3. How can I increase my height?", "How do I overcome heroin addiction?", "Which is the best institute in Mumbai for doing Financial Modeling certification course?", "How does a person learn how to hack?", "How astronauts makes free gravity training?", "How do I learn c++ programs faster?", "Are aliens watching us now from their home worlds?", "Was tamil actor M G Ramachandran overrated?", "What's the best way to get a job in Europe?", "What are the best apps for blocking unwanted calls?", "What is the best place for a visit in December in India?", "What do you think about the Indian Government policy of not circulating INR 500 and INR 1000?", "How do I apply for an internship in Mumbai?", "What is your favourite game?", "Which is the best treatment for vitiligo?", "Is there any way to hack facebook account?", "What is sparkling water and still water?", "Should I jailbreak my iPhone again?", "What is better SBI PO or LIC AAO?", "Which is the best institute in Delhi for GMAT Coaching?", "What are logarithms used for?", "How do I learn some simple, practical ways of doing meditation?", "Why do some people hate the USA?", "How was the KVPY 2016 sa?", "What's the best book on Joseph Goebbels?", "What are the easy ways to earn money online?", "What are some good low carb recipes?", "What's it like creating a successful startup?", "Can your phone get a virus?", "What is the physical significance of the magnetic quantum number, m?", "From where can I pursue digital marketing course?", "How can I go into the breathless state of meditation?", "Why Wikipedia doesn't filter it's content like Quora? A lot of unwanted information is creeps up many times.", "What motivated you to become vegetarian?", "How can you resolve the problem of accounting software tool by quickbooks technical support number?", "How are concentric and eccentric contractions formed?", "In which countries is prostitution legal?", "What would happen to Earth if enough mass was added to Jupiter to allow it to become a star or sun?", "What is the Best interracial Dating Sites?", "How do I track that my email was opened by the recipient?", "What are the reasons why wars happen?", "What are the best new camping gadgets that most people don't know about?", "Which is the best way to learn coding?", "How can I get the best grades at school?", "What is the point of hacking NASA server?", "What will happen if two black holes collide?", "What is it like to meet Shahid Kapoor?", "Why Quora has word limit for question and question descriptions?", "How do I quit smoking?", "Which are some must read books?", "Does iOS really work better than Android?", "Can earth survive?", "Where can I find a list of U.S. family offices?", "How do I get a job in VLSI companies?", "How the load on engine controls the speed of governor?", "What does your typical day look like as a computer programmer?", "How can I last for a longer time during sex?", "Is Kashmir safe now for foreigners?", "Why are some humans considered carnivores?", "Why do colors look more red in one eye and more blue in the other?", "How to report a license plate?", "What are some good inspirational movies?", "What are the expected consequences of Declaring 500 and 1000 rupee notes as illegal?", "How can changing 500 and 1000 rupee notes end the black money in India?", "What computers do not use a von Neumann architecture?", "How do the pharmacy companies come up with the brand names for their medicines?", "How can you increase your height?", "How do we control our emotions?", "What's your favorite Bollywood song and why?", "Are there bots asking questions on Quora?", "What is the point of doing everything we do in life?", "How can one get away with murder, without any suspicion at all?", "How can I delete an old Facebook account that I forgot it's password?", "How can I disconnect my Spotify account from Facebook?", "What exactly is GOD?", "\"When people say \"\"Maths\"\" instead of \"\"Math\"\" are they indicating plurality in some way?\"", "When you sell a car, what happens to the sales tax paid while buying the Car?", "What are composite volcanoes? What are some examples?", "How did you meet your spouse?", "Does anyone still trust Hillary Clinton?", "What are the high level procedural programming languages?", "What is the Best photo editing apps for Android?", "Why does quora mark my questions as needing improvement?", "How hydrogen peroxide help on cold sores?", "What countries are in South America?", "How long does it take to learn dance?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Dasht-e Loot?", "What are all the sex positions?", "What are the best ever books that everyone should read in his/her lifetime?", "Banning 500 and 1000 rupee notes is appreciated but why is the government bringing 500 and 2000 rupees again into the market?", "What great movies have incest as a theme?", "What are some examples of forced convection?", "When is it okay to give my dog Aspirin?", "What powers do the president and prime minister of India hold on each other?", "Is wage gap real?", "English is my second language.How can I improve my writing?", "What do the people from England, Wales and Scotland think about the Irish accent?", "Is there any difference in being spiritual and being religious?", "What are the most amazing movies you have seen, but not so popular? (any language)", "What's the difference between a business model and an industry model?", "Why do we study physics?", "How do I get cheap flight tickets?", "How should I deal with an extremely critical friend?"], "tp_queries": ["How do you control your horniness?", "What do i do after my MBBS ?", "What are the top self help books I should read?", "What will be Hilary Clinton's policy towards India if she become President?", "Which is the best book for tensor calculus?", "What are some cool hacks for Android phones?", "What are some of the best motivational clips?", "What is the best way to reduce weight fast?", "How does IQ test works?", "Is it safe or unsafe to use Xiaomi Products?", "Which is the best book for cosmology?", "How much chances are there that NASA already knew that there is water on Mars?", "How can I learn more about stocks?", "How do I spend my long weekend in an effective way?", "Why do people join ISIS?", "Which are some of the most beautiful houses around the world?", "What's the most important lesson about life?", "What is Trump's take on Edward Snowden?", "How do I draw shear force and bending moment diagrams (strength of materials)?", "What is the easiest way to learn java programming?", "What are the best websites for entrepreneur?", "Is it safe to travel through Italy?", "How can I be more brave?", "Why do so many people say Hillary Clinton is evil?", "When/how did you realize you were gay/bisexual? Were you in denial?", "What are some good science documentaries?", "What do we use water for?", "How do I get into IB india?", "How can you overcome the depression, homesickness and anxiety of culture shock?", "What would happen if every human being can read the thoughts of all other human beings?", "What are the advantages and disadvantages of 500 and 1000 rupees ban in India?", "What are the life lessons one can learn from Batman?", "When and how is mechanical energy not conserved?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Registan Desert?", "What are the ways of losing weight?", "How can I create a stage name?", "How do trees grow in a zero gravity environment?", "\"What should I do if Quora marks my question as \"\"Needs Improvement\"\"?\"", "Why is saltwater taffy candy imported in Austria?", "What is your New Year Resolution for 2017?", "What is the impact of Donald Trump's victory on Indian interests?", "How can I continue to improve my English?", "How can I prepare for my interview?", "What would be the effect of Trump's presidency on international Master's students who plan to work in the US after completing the degree?", "What are stars made out of?", "How should I lose weight?", "How do I post here?", "What is there to learn in photography?", "What is the best book for DEV C++?", "How do I earn money in my free time?", "I am completing my 2nd year of computer engineering. I want to start my preparation for GATE 2017 (stream CS/IT). How do I start it now myself?", "Where Can My Small Business Capital Injection Come From?", "Can someone explain Newton's third law of motion?", "How do you distinguish the difference between micronutrients and macronutrients?", "What is best online coding bootcamp 2016?", "What does the daily schedule of those successful people look like?", "How do Americans view Vietnamese people?", "How bad can Trump's election as president be for students aspiring to study in US?", "What will the government do with the old notes of Rs 500 and Rs 1000?", "Where is the oddest place you've had sex?", "What is credit score?", "Which are the best Hollywood movies of all time?", "What is the effect of black money on India's macro economy?", "What is difference between fact and opinion/view?", "Will the corrupt politicians still have their black money safe in Swiss Bank even after the scrapping of old Rs 500 and Rs 1000 note?", "Can India develop faster if bigger states are divided into smaller states?", "What are the best places to hangout with friends in delhi?", "How can technology help us?", "How could I make money online?", "What is the typical role of a brand manager?", "Is vacuum energy the same as dark energy? is it infinite? if it is, how and why?", "Which is the best smartphone right now and why?", "Has anyone overcome depression by themselves without external help?", "Does green chai tea assist with weight loss?", "What Can happen to India if Donald Trump becomes president?", "How can I become Top Writer on Quora, what should I care most in this process?", "Can I buy a fighter jet?", "How do I access hackforums.net?", "How do you convert RCA to HDMI?", "How can I earn money from google?", "Which is the best online shopping?", "Is there a center in the universe? If so, do we know where is it?", "Why do people study physics?", "Does the sign of an inequality change when multiplied by a variable? Why or why not?", "What is the best way to edit APK files?", "How do I increase my height?", "What is the iq of the average person?", "Could you recommend some special dishes of your city?", "What are the purpose and the justification of US military help to Egypt?", "How does the embedded NGC technology of the Rs. 2000 note works?", "Has Ancient Egypt been scientifically tested?", "How did Donald Trump win despite projections that he would fail?", "Why wasn't Leonardo DiCaprio Oscar-nominated for Titanic (movie)?", "How is time travel possible?", "How do mountain ranges in Oklahoma differ from mountain ranges in Idaho?", "Is there a directory of individual landline and cell phone telephone numbers?", "What operating system do programmers and developers at Google use?", "What is 0 DIVIDED by 0?", "Is there any evidence of alien life in space?", "What is the pattern for CAT 2016?", "What are the economic implications of banning 500 and 1000 rupee notes?", "How should I start to learn c language?", "I'm a triple Capricorn (Sun, Moon and ascendant in Capricorn) What does this say about me?", "Was NEET 2 tougher than NEET 1?", "Do Muslims eat pork?", "What after mechanical engineering?", "Who is the all time best fielder in Indian Cricket team?", "How do l contact a hacker?", "What is a sure way to make your baby laugh?", "\"What do you think about the movie, \"\"The man who knew infinity\"\"?\"", "What are the best Books for Signals And Systems?", "Is trump trying to lose?", "Do you think Trump will be the next president?", "How can I improve my studying?", "What is it like to meet Donald Trump?", "What are some examples of cultural integration?", "What are some symptoms of eccentric and concentric contractions?", "How can I become a mountain guide?", "If vacuum energy is created as space expands, can infinite energy be created?", "Is Linux Mint a good alternative to Ubuntu? Are there any differences between the two?", "How can I get over the fear of public speaking?", "What is the scope for MBA marketing graduates in hospitality sector sales & marketing?", "What is the best additional course for mechanical engineers?", "Do you believe in free will or destiny? Why?", "What are the requirements to learn hacking?", "What is the best weight loss story?", "How can I stop watching porn?", "What is so special about 'Rafale' fighter jets? Why is India keen on acquiring them?", "What do South Indians feel about the idea of a separate South India?", "How is time travel possible?", "If I smoked 2 weeks ago, how do I pass a drug test?", "How can I hack someone else's WhatsApp account from a different place?", "Why are the Minions crazy for bananas?", "What is your favorite, lesser known TV show?", "How do I get to know my crush?", "What medical tests a couple should undergo before getting married?", "Which are the most overrated movies in 2016?", "How are my friends earning millions from home just by using Uber app?", "How much does it cost to get hair transplant in India?", "How can we avoid human verification in 8 ball pool hack?", "When someone vanishes something in the Potter universe, where does it go?", "What is the best way to become a journalist?", "What is the best engineering field in the world?", "Why is Donald Trump not in jail for his comments?", "What are the ways to increase organic traffic on Facebook page and on website?", "Can I hack WhatsApp?", "Can I change my DOB in birth certificate?", "What is a traditional economy? What are some examples?", "What is the Delta Force main focus?", "I want to learn Coding/Programming from scratch. How to start?", "How exactly does banning Rs 500 and Rs 1000 notes curb the problem of black money?", "Are fat burning pills helpful along with exercise? What are the best fat burning pills (non-steroidal)?", "What can I do to make an extra $1000?", "What is the best mutual fund to invest for a long term in India?", "What can you do to lose 40 pounds in 2 weeks?", "How do I convert to an introvert?", "Why was Christopher Columbus considered a villain?", "How can I travel around the world?", "Can I.Q. be enhanced?", "What does it feel like to go to prison?", "Which is the best University in Pakistan? Where do they stand compared to IITs?", "What's your stand on the recent Supreme Court's order about national anthem in cinema halls?", "How do I improve my communication skills.?", "Are GMO foods actually bad for you?", "What are some mind-blowing outdoor adventure tools that most people don't know about?", "What are the best test automation tools?", "What lesson(s) would you share with your 25 year old self if you could travel back in time?", "What is the relationship of a human body's Ph Power Hardness and getting Cancer?", "How do I make a multiplayer Minecraft server?", "How do I become software developer in india?", "Which celebrities are there on Quora?", "Does Congress party digging their own grave slowly as they opposing everything done by PM Modi like saying Jay Shriram or doing surgical strikes?", "What are the best cars in the world?", "What is the most interesting fact that most people don't know about?", "My favorite movie from Star Wars was Rogue One, what was yours?", "How can I used 3 phase motor in a 2 way supply?", "What are the best ways to be a better web designer?", "In what year will we see successful in-space refueling or repair of a small satellite?", "What is the best teacher and student relationship story you know?", "Why is Indian Army killing innocent civilians in Kashmir?", "What is a money tree?", "Can I get a dental seat if I got 405 for NEET 2016?", "What's the fastest tank ever to be made?", "What is the likelihood that on December 19th, the Electoral College can vote out Donald Trump and vote in Hillary Clinton?", "Is MacBook Pro 8 GB 2015 good for gaming?", "What are the reason of poor performance of India in Rio 2016 while expectations were too high?", "How will demonetization affect India & Indian economy?", "How can you deal with self-incompetence?", "How do I transfer WhatsApp chat messages from my Android phone to an iPhone?", "How close are we to World War Three, and how bad would it be?", "How can I get a domain for free?", "What is the best experience you ever had with your friends?", "How can I recover my deleted Internet history?", "Who do you think wins this US presidential election?", "If I got 650 marks in MAT exam what will be my percentile?", "Is it easy to earn 10000 per month with 1lakh rupees?", "What is the best book for kids?", "What makes you truly human?", "What are the good software companies in Chennai?", "What are some good lyric prank songs to send your best friends?", "Am I justified in being afraid to bring a child into the world?", "What are the best ways to overcome boredom?", "How do I crack the SSC CGL exam without coaching?", "How do I speed up my computer?", "What's the worst thing you've ever done to another human being?", "What are the best places to visit on a 3-day trip in and around Kerala?", "How can I see who viewed my instagram?", "How can I increase my vocabulary?", "What are the future of mobile applications?", "How do i lose weight?", "\"Why do they say \"\"God bless you\"\" when you sneeze?\"", "How does the double camera on the iPhone 7+ work, including improving things like depth of field?", "I always feel sleepy and lost in my own world.What should I do to avoid this and concentrate during my lectures?", "I have an incurable disease. My wife left me because she can have more fun without me. She hung in for a while. Why?", "What are the boundaries of the FBI’s geography jurisdiction?", "How can I get into a top university?", "Is a Amazon Kindle really worth the money or Can I just use my Nexus tablet with Amazon kindle app to read the books?", "How can I learn english quickly and well?", "Why does my Quora home feed sometimes show me answers I already upvoted a while ago?", "Can white hair turn into black?", "How do I get rid of bad habits?", "Which is the best place to hangout with friends in pune?", "Is taking protein during a workout good for health?", "How can you earn a living on Quora?", "Why could Hillary Clinton go to jail?", "Is is true or just a rumor that RBI Rs 2000 note will carry a GPS tacking device?", "Do long distance relationships work?", "What is the main reason for discontinuing 500 and 1000 Rupees Note in India? What are the pros and cons of it?", "What are the ways to use Whatsapp on pc other than bluestacks?", "Who is the most beautiful woman of your country?", "Why is saltwater Taffy candy imported in Canada?", "What are some good universities in Germany for masters in computer science?", "What is a good age to have sex?", "What parts of the human body are poorly designed?", "What are the best ways to lose a lot of weight as quickly as possible?", "Which are best sites to download movies?", "How can I receive FM radio broadcasts on my iPhone 6s Plus?", "What is acupuncture? How does it work?", "What are the chances that Donald Trump will be the next US president?", "How do satellites work?", "Does petroleum jelly (Vaseline) help eyelashes grow?", "What should I do improve my communication skill?", "How do I reset my Gmail password when I forgotten it?", "Why did all the countries join the Korean war?", "What are some of the best novels you have read?", "How was education in Singapore during the Japanese occupation?", "What are the eating habits of a weasel?", "What is your honest opinion about the Philippines and Filipino people?", "Why are mobile phones getting uselessly fast? When the real thing is how long its battery can last?", "What is the revenue model of Reliance Jio?", "How can I know who unfollowed me on Instagram?", "What's going to happen to America if Donald Trump wins?", "How long is it safe to be on hormone replacement therapy?", "How do I start making money off of amazon?", "What is the best quote you have heard?", "How can India's education system be fixed?", "How can I improve my communication skills in English?", "How do I last longer in sex?", "What are the best Wearable technology?", "Islam: According to islam, are all non-Muslims going to hell?", "Do you prefer Coca Cola or Pepsi Cola, and why?", "What do you think about decision by the Indian Government to demonetise 500 and 1000 rupees note?", "What would happen if England left the United Kingdom?", "What is it like to work at Factual in 2016?", "Why do some people drive slowly (10+ MPH under the speed limit) in the passing lane?", "\"What is the meaning of Socrates's statement that \"\"the unexamined life is not worth living\"\"?\"", "Why use Quora when Google answers almost everything?", "Why are we here on earth? What's the purpose?", "How can you improve your communication skills?", "How can I recover data from an external hard disk?", "How many countries have nuclear weapons?", "What is the perfect website that lists all types of word noun, verb and adverb?", "How many people pay income tax in India?", "Why are there still some women who are voting for Donald Trump?", "What is a good beginners book on topology?", "How do I install Mac OS on a Dell laptop?", "Should the Indian education system be changed?", "What has life taught you recently?", "How can the GST bill, passed by the Rajyasabha yesterday, boost the Indian economy?", "What's your current favorite song?", "How can I get the absolute best deal on a cruise?", "What is the best strategy to crack the main and advanced JEE?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Cascadia earthquake in 1700?", "What was there before universe was born?", "How can I learn to think faster on my feet?", "Why do some people ask simple direct science questions in Quora when there are sufficient resources available in internet?", "Where is best place to live in Mumbai?", "What was your first mobile phone?", "How can I improve my English Language?", "How can this reservation system can be overthrown from India?", "What should an eggplant look like on the inside?", "How do I filter out questions/answers about Bernie Sanders, Donald Trump, and Hillary Clinton from my feed?", "Could there have been any humans before Adam?", "Hi Avg @@@1800_@_251_@_4919@@@ Avg Antivirus Tech Support phone Number?", "Do you really think it's better to have loved and lost than to never have loved at all?", "What are the best digital marketing courses for mid-senior level marketing managers?", "How do I approach a stranger beautiful girl?", "What is actual height of bollywood stars?", "What are the benefits of getting married in this life time?", "I lost my password with my Gmail account. How do I reset it without the account recovery info?", "What is an easy way make money online?", "How do I learn to use JetBrains IDEs to their full advantage?", "What is the best diet to gain weight?", "What should I do to make money online in India?", "Why is Saltwater Taffy candy imported in Mexico?", "What is the best option after btech in mechanical engineering?", "What do i do after my MBBS ?", "What is the best place for honeymoon in winter?", "How do you know if your partner is cheating on you?", "Why do people find Manaphy annoying?", "Why do people cheat?", "What can I do to improve my English speaking?", "How can I see who viewed my video I just posted on Instagram?", "How do I prepare for UGC NET (Hindi)?", "How can the drive from Edmonton to Auckland be described, and how do these cities' attractions compare to those in Toronto?", "What is the situation like for Christians in Pakistan?", "What will be the impact of election of Donald Trump as the 45th US president, on India?", "What is NCERT book?", "Is there anything wrong with being an atheist?", "What are some good things to do before you die?", "What's the difference between an artist and an artisan?", "Which phone has the best sound recording quality?", "How much I can earn through blogging?", "Would you date a guy who is 5 inches shorter than you?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Registan Desert?", "What will be the effects of demonetisation of 500 and 1000 notes on the Indian economy?", "What do the breeders in Mad Max: Fury Road represent?", "What is the difference between achievements of previous Indian governments since independence and the current Modi (BJP) Government?", "Catholics: what is the proof of purgatory from the Bible?", "What are ways of earning money online?", "What can you do with a Business Administration degree?", "What do you do to manage food cravings?", "What are the some of the best examples of hypocrisy in India?", "How do I deactivate a Yahoo! account?", "My question was marked as needing improvement! What does it mean? How do you mark other questions for improvement?", "What are some of the best photos taken from a cell phone?", "Why doesn't anyone here answer my questions?", "Is Islam really a religion of peace?", "Does plucking hair stop it from growing back?", "What are your top 5 best movies youve ever watch?", "What's it like to be mistaken for being a different ethnicity than you actually are?", "Now that Donald won the election, how will this affect the admission of international students into undergraduate and graduate programs in the US?", "Who would be the perfect President of the United States?", "Do Buddhists believe in a God?", "Why is India performing bad in Olympics?", "What is presence of mind?", "Why do people have trust issues?", "Would Bruce Lee at his peak be able to contend with today's top MMA fighters?", "What are the best places to visit on a 3-day trip in and around Kerala?", "How do I get a rank in CA CPT and is two months of preparation enough to get it?", "What would happen if Pakistan declared war on India today?", "What are benefits of change in ₹500 ₹1000 notes?", "What should I do to improve my explaining skills?", "What are the symptoms for having low blood sugar?", "Is paying for LinkedIn Premium worth it?", "How can I stop making excuses or justifications?", "Which is the best website to buy lingerie online in india?", "Who is Gilgamesh?", "How can we hack a phone?", "Is space travel fake?", "What are balanced forces and what are some examples?", "Why was cyrus mistry sacked?", "Which Royal Enfield bike is best?", "How do I stop being possessive over my girlfriend?", "What is digital marketing?", "What are some best ways to earn money without monetary investment or fixed regular job?", "Do you know of startups that focus on providing local tour guides with a specific focus on off-the-beaten track culture, arts, foods, etc?", "How can we wipe out terrorism from the world?", "Was global warming replaced by climate change because they found there was no global warming?", "How can I control myself from masturbating while watching porn?", "What is your plan for the new year?", "How do I expand my vocabulary?", "How can I improve my English pronunciation?", "What are the ways of losing weight?", "What are some of the uses a laptop has?", "What causes a person to go insane?", "What are the safety precautions on handling shotguns proposed by the NRA in Alaska?", "How can you improve your communication skills?", "What are some of the best horror movies?", "What step must taken to make Indian Politics more transparent? Corruption free?", "What problems do solo travelers face when going abroad?", "What are the best movies of all time?", "Is 32 too old to start a PhD program?", "Which is the best restaurent in nagpur?", "If your period is 10 days late, are you pregnant?", "What is the best way to overcome your phobia?", "How can I become a freelance content writer?", "Who killed John Lennon and why?", "What according to YOU is the purpose of life?", "How can I increase the traffic on my website without investing?", "What happens if you swallow chewing gum?", "Which is the best university to do distance MBA in India?", "How do I make friends as a shy, socially awkward introvert?", "How do I get rid of my WhatsApp addiction?", "What are Newton's three laws of motion?", "What are the uses of Darmstadtium?", "How can I defeat my desire against fast food?", "How does it feel when PV Sindhu won the silver medal on the Rio Olympics 2016?", "Is Batman considered an antihero?", "Why is Saltwater taffy candy imported in Japan?", "When was first clock made? How was the time set?", "Should student take part in politics?", "How can I beat procrastination?", "Why doesn't the Moon fall on Earth?", "Nobody is answering my questions on Quora and all my questions, even the descriptive ones are regarded as needing improvement. What should I do?", "What is the file system in Linux?", "How can a newly recruited teacher instantly make a name for himself so as to attract students to his tuition services?", "Which is the best book for understanding Kali Linux?", "What daily habits can greatly upgrade life?", "Who are your favorite movie stars?", "How does banning 500 & 1000 rupee notes solve black money problem?", "Which country have an amazing education system?", "Is Hillary Clinton really worse than Donald Trump?", "What is the best way for making money online?", "How would Hillary Clinton keep USA's relationship with India if she becomes president?", "What are eternal closed timelike curves?", "What tips do you have for someone entering into growth hacking?", "Do you think time travel is possible?", "What are some websites out there that provide the same service as Blue Apron?", "Why Angela Merkel let Refugees to come Germany?", "What are the safety precautions on handling shotguns proposed by the NRA in Mississippi?", "What is the best way to reduce your calorie intake?", "Can I make money with Amway?", "What do the people from Pakistan think about Indians?", "Does ECE have a scope in India?", "What is a half wave plate?", "How can you fix a garage door with a broken spring?", "What's your favourite colour?", "Are there any free online iq tests that are accurate?", "How will Trump's presidency affect the Indian students who are planning to study in the US?", "Is it possible to increase the size of a penis?", "What is a beta software? How does it differ from an original software?", "How do you reset your Yahoo! password?", "How did you get away with murder?", "Where can I find free exporter importer data of shipping for international trade business?", "What are the best coding bootcamps in India?", "What does it mean when a guy is emotionally unavailable?", "What are the ill effects of demonetization of 500 and 1000 rupee notes in India?", "I wanna start preparing for ias exam, how should I proceed?", "How much Pepto Bismol should I give my dogs?", "Who do you think is going to win the presidential elections and why?", "Why do some people copy and paste the question and details in answers?", "What are some good books to learn Korean from?", "What is the most painless and quick way to die?", "What are the best phones under 15000 in india?", "Will Israel go to war with NZ over the UN resolution?", "I know some people that STILL believe the earth is flat. Why?", "I been seeing some questions on Quora and Yahoo that anime might exist in another parallel universe so is it true?", "How do you know if you're in love with someone and might only be denying the fact to yourself?", "What do you think of the decision by the Indian government to demonetize 500 and 1000 rupee notes?", "What are the sexiest videos on Vimeo?", "What would happen if time completely stopped (i.e. atoms/molecules, everything within the universe stopped moving)?", "How do I reset iPhone without passcode or fingerprint?", "How can I get rid of blackheads under my nose?", "How can we stop terrorism permanently?", "How do I make $100 a day?", "Why did Harry break the Elder Wand in the last scene of Deathly Hallows Part 2?", "What is the best place for a visit in December in India?", "How do I recognise a voLTE mobile?", "Should Sai Baba be considered as God?", "How do I to make money online?", "Can an IAS officer give any order to an IPS officer?", "What are some mind blowing camping tools that exist that most people don't know about?", "How might my Quora question no one likes be deleted?", "How do I start an essay?", "What is the best mutual fund to invest for a long term in India?", "What are the ways a dumb person can earn money online?", "How I can improve my English communication?", "What is life's most satisfying purpose?", "How could one turn a million into a billion?", "What is the function of a computer hard drive?", "Have you ever been raped?", "What does it feel like to drive a train?", "Why is Nehru's birthday celebrated as children's day?", "What's a good book to learn programming for the absolute beginner?", "Who would win a war between Vietnam and China? Why?", "If the earth is round and we live on the surface (keeping in mind the law of gravity) why doesn't anybody fall off?", "How can I make money online quickly and easily?", "Can pornography be art?", "What is the scope of Mechanical Engineering?", "How do I review a paper? What should I include in my review?", "What were the most followed topics on Quora in 2016?", "How do I gain access to a person's instagram photos, if their account is private?", "Is it true that if you don't use it you lose it?", "How do I get rid of my butt pimples and the scars caused by them?", "How can I control sleep while studying?", "Can reservation for backward cast be cancelled?", "How do I make money through YouTube?", "What is the best content of the e-learning course?", "What would be the effect on India if Donald Trump really becomes the president of US?", "Are witches real?", "Why has Narendra Modi not appointed any Lokpal yet?", "How will hillary Clinton deal with foreign issues?", "Who would win in WW3 if it broke out?", "What will be the adverse impact of uniform civil code on Hindu customery laws if it is implemented in India?", "Which mobile is better under 15k?", "What should I learn now to become a game developer?", "What are the best places in chennai?", "What are some of the best anecdotes?", "Who will win the 2016 presidential election?", "What are some best business ideas with minimum investment?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Arica earthquake in 1868?", "Does touching a TV screen can affect the TV and can I clean the TV or does that affect it?", "How do I lose 15 kilos?", "Instagram (product): How can I know who visits my Instagram profile?", "If universe can expand without limit and it creates dark/vacuum/gravitational energy with it,then is the potential energy infinite?", "How can an individual learn about linguistics?", "Why stray dogs bark at rag pickers?", "What are places that can be visited in Gurgaon?", "How do I crack the TCS aptitude test?", "How do I know that a guy likes you?", "What are some best ways to earn money online?", "Why are there no female Navy SEALs?", "How can I pass the IELTS?", "Which moisturizer is best used for dry skin?", "Why the banning of 500 and 1000 rupees notes?", "Can we be immortal?", "Why do people on Quora ask silly questions about the facts which can be googled very easily?", "How do I get into Archaeological survey of India?", "What Is your New year resolutions in 2017?", "Why were my last few questions I asked marked as needing improvement?", "Why isn't the media reporting on the rape lawsuit recently filed in NY against Donald Trump?", "Have you been raped?", "Which was the best tank of the 1960s and 70s? Leopard 1, M-60, AMX-30, Chieftain, or T-62?", "How do I get over a broken friendship?", "Who would win in a fight between the Imperium of Mankind and the Galactic Empire?", "Which Ivy League university is the easiest to get into?", "What are some of the worst questions asked on Quora?", "What are the best programming languages for beginners and why?", "How should I start work with freelancer?", "How do you think a World War III would play out?", "Why is Twitter killing Vine and not selling it?", "What online resources are there to learn Esperanto?", "What are the weirdest questions you have seen on Quora?", "What is the best camera for a photography starter at an affordable price?", "What do you do to spy on a friend's Snapchat?", "What will the American education system look like in the future?", "Which are examples of inelastic collisions?", "Can dark matter exist in earth?", "How can girls prefer bad boys more than kind gentlemen?", "What are some of funniest jokes that you have ever heard?", "Why do we worship the linga of Lord Shiva?", "How do I stop stalking someone on social media?", "What is a good, reliable online job that I can work on at home?", "Do people still wear monocles?", "How can you prevent a bathroom mirror from fogging up during a hot shower?", "What is the nicest thing that a complete stranger has ever done for you?", "What is the best way to inprove my English writing ability?", "Why does my butt bleed every time I poop?", "Do you believe that you can be in love with two people at the same time?", "What are your favorite music genres?", "What are all the available options for government jobs after completing B.Tech in mechanical engineering?", "Is there any good reading room available near ACE academy Abids?", "Why can't India set up many sea water desalination plants to solve water problems?", "How do I lose weight?", "Tarzan is a myth or real?", "What are your top 10 favorite bands?", "How could Donald Trump become a dictator?", "How do I improve my English writing ability?", "Do you think a brain transplant will be possible to perform in the future?", "How will banning Rs. 500 and Rs. 1000 notes help in overcoming corruption in India?", "How do you find the magnitude of the net force?", "Why are hematomas caused when drawing blood", "What does this Google Doodle mean?", "What's the possibility of planet Earth running out of drinking water?", "I'm 18 and have nothing to do with my life, what should I do?", "Kerala, India: How do you describe a typical keralite/malayali man?", "Why is Singapore and China in a bad relationship?", "How do I know if it's time to break up with someone?", "What are some cool and unique ways of marketing for promoting a website?", "How can I locate my husband's phone location without him knowing?", "What does it say about America if Trump is elected president?", "Does long distance relationships actually work?", "What should I do now in my love life?", "Which is the best book for building Self Esteem and Confidence?", "What are the best way of loose the weight?", "What will be impact of 500 / 1000 notes ban on real estate?", "What are the things that can escape from a black hole?", "What are the best ways to make money online?", "Is man inherently good or evil?", "What should I do to improve my memory?", "What is the best way to learn about investing in the stock market and what stocks to buy?", "How do you cope with social anxiety?", "What are your most inspiring movies?", "How do I become an international arms dealer?", "Which company provides the best SEO services in Delhi?", "What is the difference between baking powder and baking soda? How are they used differently for cleaning?", "Where do I learn to make an Android app, using Python, from scratch?", "How exactly does the Indian economy work?", "I cut my hair and I don't like it. What should I do to make it grow fast?", "From where do atheists get their morality?", "What's your favorite anime? And why?", "The Newly Introduced 2000 Rupees and 500 Rupees notes are enabled with NGC Technology (Nano GPS Chip) ? Did any country introduced such currency?", "What are some secrets that a girl would rarely be fond of sharing with a boy?", "What has been the best movie of 2016?", "How can I earn money online?", "Could human intelligence be decreasing?", "How can I make a question in Quora?", "What are the best Italian cooking techniques?", "What's the best advice you've ever been given?", "What will be Hillary Clinton's immigration policies be like?", "Daniel Ek: When will Spotify be available for Indian customers?", "What are the best health & fitness apps for Android devices?", "Which is the best book to prepare for xat?", "How do you make yourself completely come out of your comfort zone?", "What is the best way for preparing CFA Level - 1 Exam?", "What are the best courses for mechanical engineer for high salary?", "If you could ask God a question, what would you ask?", "Does the Black Knight satellite actually exist?", "Why do people give a shit?", "Are there any generators that generate unlimited coins and cash in 8 ball pool?", "How can I get really good at deducing things like Sherlock Holmes?", "What is best puzzling question ever asked in an interview?", "Can I be in the army if I have a terrible memory / recall?", "What would happen if the sun quits for a week?", "Why do people I don't follow on Instagram show up in the search bar when I type one letter?", "What would be a realistic plan to lose weight?", "Should I get the new Macbook Pro?", "How can I improve my study efficiency?", "Is really true love exist?", "How do you know if you're in love with someone and might only be denying the fact to yourself?", "What are the coolest inventions of the 21st century that people don't know about?", "How do I handle my anger issues?", "How do eccentric and concentric contractions compare and contrast?", "How do I hack Instagram account? Someone is using my identity and posting inappropriate post?", "Do astronauts masturbate in space or what do they do when they get aroused?", "Is wwe fake?", "Which will be the best day of your life?", "How is disease stopped through giving drugs to relieve illness symptoms?", "If he had such a good time on our date that he had to kiss and text the second it ended, why would he radio silence me for 3 days now?", "How can I get over social anxiety?", "If God is omniscient, then do we really have free will?", "What are some mind-blowing technologies things that exist that most people don't know about?", "Does eating prunes help with constipation?", "I need an SME term loan. Where can I get one?", "What is the functions of communication?", "What do we know about Hillary Clinton's health?", "Can I drive on an Indian driver's license in the US?", "How would you feel if the government banned soft drinks for minors?", "What would happen if Hillary Clinton and Donald Trump both suddenly dropped out right now?", "Where and how did Mother Teresa help the poor?", "How can I become a math genius?", "What are the weirdest things that make you happy?", "What is a Cumulative Distribution Function or CDF in case of random variables?", "How can one invest in Bitcoins?", "How many countries exist in the world this time?", "How is life of IIT?", "Which is the best e-commerce platform in India?", "What Is your New year resolutions in 2017?", "What are the best thug life moments of your life?", "Is curved spacetime the state of displacement of the strongly interacting dark matter?", "How will banning Rs. 500 and Rs. 1000 notes help in overcoming corruption in India?", "I don't have a proof of address, how do I apply for pan card?", "Who will become the next PM of India?", "Will Hillary Clinton pardon herself if she's indicted for a crime?", "What do you do when you have free time?", "What does it take to unsubscribe from Quora? I do not want anything from Quora any more.", "Is there any evidence of life on other planets?", "How can I purchase a One Plus 3T from Amazon using a Bajaj Finserv EMI Card?", "Where can I get a free guided meditation from Sadhguru?", "What are the funniest memes you have come across on Narendra Modi?", "How do I stop my computer addiction?", "What are the best home exercises to lose weight?", "What is the relation between linear and angular displacement?", "What will be the effect of Donald Trump becoming the president of US on India?", "How long meth stay in system?", "Which is the best laptop to buy at price range 40-45000 rs?", "What is it like to smoke marijuana?", "Does green tea reduce weight? How does it work? How many glasses should we have daily?", "Which is your biggest fear?", "What is the difference between Ubuntu and windows?", "Why has Narendra Modi not been appointed as Chief Information Commissioner and a Lokpal yet? Has he something to hide?", "Has there been any serious scientific study into unexplained phenomenon such as ghosts etc.?", "What is a factor for 3?", "What's up with Donald Trump's hair?", "What would you do if given the power to become invisible?", "How do I learn WordPress from scratch?", "Why do people think Trump is racist?", "Where can I found different types of floor tile collection in Sydney?", "How do I repair a broken Apple iPad screen?", "How many Vietnamese have Chinese blood?", "Why didn't Severus Snape appear when Harry used the resurrection stone?", "How do I prove that there is no god?", "How do I start a food startup in Pune?", "Are there any competitive coders from Tamil Nadu?", "Who will win 2019 Lok sabha elections?", "Does hypnotism work?", "How will long distance relationship work?", "Is IELTS or pte easier?", "Does oyo rooms allow local unmarried couples in Hyderabad?", "What is the best laptop under 60,000 INR?", "What are the requirements for selection into MIT?", "Are atheists are afraid of dying?", "How has India changed after having Narendra Modi as the PM?", "What made Facebook better than MySpace?", "What are the best Hollywood thriller movies?", "Why do Muslims hate the BJP?", "What actually happens in the Bermuda Triangle?", "If there's infinite energy in zero point energy and infinite virtual particles in vacuum energy, is this real or just a mathematical thing?", "What makes life difficult?", "Why do people write such lengthy answers on Quora?", "What songs make you cry and why?", "Where can I hire a real bad ass hacker?", "Should I crop my American pitbull terrier's ears?", "How much would it take to learn C#?", "Is ISBF affiliated to University of London?", "What is the compulsory public education system?", "What is Implicit function?", "Is it better to work out at night or in the morning?", "Does iCloud store Safari's history/data?", "What is data science", "What do I do when I no longer look good in Facebook pictures and people keep putting them up?", "Why do people hate fat/obese men and women?", "How can gain my weight?", "What are some mind blowing tools and things that most people don't know?", "How do you calculate retention rate?", "How can I improve my intelligence?", "How can I be a native English speaker?", "Why is it OK to vote for Hillary Clinton because she is a woman, but not OK to not vote for her because she is a woman?", "How can I improve my English pronunciation?", "Should India have a uniform civil code (personal laws)?", "Why do I find girls bare feet attractive?", "How can I get an internship at Deutsche bank?", "What are the ways of losing weight?", "How do I start preparation for IAS?", "What is the phone number for The Ellen DeGeneres Show?", "Could India and Pakistan unite again?", "How do I write add on in Quora while asking questions?", "How do you delete a question on Quora?", "How do I know whether someone really loves me?", "How much time will my Jio sim will take to get activated?", "What are some of the best data scraping tools?", "What is it like to work at a startup for the first time?", "How would you communicate with aliens?", "What could go wrong if I take Ibuprofen with Tylenol?", "What's the most interesting thing about aspd?", "Is it a good time to join Twitter as a software engineer?", "Why have European colonial powers never conquered China like they did with India?", "How do I recover my Gmail password?", "Why do you think TV networks compete?", "How can I grow long hairs?", "How do I control my emotions and anger?", "How did Donald Trump become such a racist?", "Is learning Chinese really difficult?", "What's the nicest looking coworking space in Bangalore?", "Is drone delivery possible?", "What is the best online coding bootcamp?", "What's better at the age of 22 being single or commitment in a relationship?", "What are the prospects for pulses for sustainable food security?", "Why do I feel like I'm tired of life?", "Do space shuttles create sonic boom? If no then why?", "Which hurts the most? Saying something and wishing you had not, or saying nothing and wishing you had?", "⁠⁠⁠What are you most passionate about?", "Has religion developed globally?", "Is there any way to travel faster than light speed?", "Do you believe American police officers are too militarized?", "Will a gap year after graduation adversely affect my interview at IIMs?", "How can I get rid of pimples all over my face?", "\"Whenever I come across the word \"\"minorities,\"\" why do Muslims always come to my mind even though there are other minority groups in India too? Why do we never speak about their rights?\"", "Which Android mobile phone is best under Rs.8000 ?", "What is the best way to overcome porn and masturbation addiction?", "How do websites like The Pirate Bay survive?", "Do many people fake smiles when they get their picture taken?", "Have you had a paranormal experience? What happened?", "How can I be a native English speaker?", "Where can I found different flavours for cupcakes at Gold Coast?", "What is the correlation?", "How is Trump planning to get Mexico to pay for his supposed wall?", "Why can't India secretly invade Pakistan and kill Dawood like US killed Osama?", "I have completed my mechanical engineering with below 60%. What should I do to get a job in good company?", "What is your favourite tea?", "What are some good coaching institutes for medical coding training in Bangalore?", "What is the difference between narcissism and self-love?", "How do I tell if a girl I sit next to likes me?", "How are Quora views counted?", "Is Arvind Kejriwal/AAP's Government better than Sheila Dixit ?", "How should I learn faster?", "How do I learn not to care about what people think of me?", "I want to improve my English?", "How can I immigrate to Canada from China with my husband together?", "Are there health benefits/risks associated with drinking diet coke or coke zero as opposed to regular coke?", "What are some examples of isolationism?", "What are some good ways to improve English vocabulary?", "Do people with autism know that they have autism?", "What would happen to Pakistan if it is declared as a terrorist nation?", "Do caterpillars know that they're gonna be butterflies or do they just build the cocoon and be like, what am I doing?", "What is the best way to drive traffic to a website?", "What is the salary of IBPS PO in hand?", "Which is the oldest relegion in the world?", "Can we see light?", "Why Should I invest in M3M Urbana Premium Gurgaon?", "Best places to eat in Chennai?", "How do Americans think about Chinese?", "Are all non-Muslims going to hell according to Islam?", "Who will Hillary Clinton and Donald Trump pick as their running mates?", "Is there any real proof of mermaids?", "How can I make my teeth white?", "What is the right to life liberty and the pursuit of happiness? What are some examples?", "What are the best companies for a civil engineer?", "How do I become better at drawing?", "Can graffiti artists spray graffiti in Rockdale County, Georgia?", "Does a long distance relationship really work?", "What are some funny things to include in a speech for student council?", "How can I upload profile picture on Quora?", "What are remedies to get rid of belly fat?", "What precautions do female pornstars have for not getting pregnant while shooting?", "Which websites are banned in India?", "What were the best PC games in 2016?", "Smartphones: What is the best phone camera at the moment?", "Why is Saltwater taffy candy imported in the Philippines?", "What's the most awkward/embarrassing situation you've ever faced in your life?", "What other movies are like Interstellar?", "Is there a way on Quora to ask why a specific question was marked as needs improvement?", "Have you ever looked into a mirror during an OBE?", "Time Travel Is It Possible?", "Of the three Amritapuri sites for the ACM-ICPC, which is the best to visit?", "Who is the best website builder?", "Which is the best laptop available in India in a budget of 60k?", "Do the Chinese really hate the Vietnamese? If yes, why?", "As a web developer how can I contribute to open source on GitHub?", "Which is the best Hollywood movies of 2016? Why?", "Who's your favorite author and why?", "How do biotic and abiotic factors work together to make an ecosystem?", "Who would be better for India, Donald Trump or Hillary Clinton?", "Is it possible to hack WhatsApp from a laptop through long distance?", "What are some of the best camping gadgets and tools?", "Which standard book should I use for cracking GATE INSTRUMENTATION?", "How can I win in UGC Net Exam in English literature?", "What will Michelle Obama do once she leaves the White House?", "How do I forget this girl I had a crush on for 4 years?", "How can I control my emotions?", "How do I increase the page rank of my blog?", "How do you start your own hedge fund? How do you explain the concept of this business model to prospects who may not know better?", "How can I see who viewed my instagram post?", "How do I start study for CA exam for Nov 16?", "A and B throws a Fair dice one after another. Whoever throws 6 first wins. A Start's first. What is the probability that B wins?", "What is the best way to earn money online?", "How can I hire a hacker?", "What is the best thing someone has done for you?", "Which is the best book you have ever read?", "What are some of the most overrated movies in 2016? And why?", "Are there any ways to make money through Quora?", "How do sophisticated patterns of crop circles actually come about?", "Which programming language should I learn according to today's market trends? C, C++ or Python?", "In aboriginal culture, why is the Dreaming important?", "What would you do differently if you knew what you know now at any given age?", "How do I get a girlfriend?", "Why do I get bullied? I am 61 years old.", "How does evolution explain how non-living objects became living things? How the step from non-living to living occurred?", "When did movie credits shift to the end of the movie?", "Who is the main character in The Great Gatsby: Gatsby or Nick?", "What is your New Year Resolution for 2017?", "What do you think about Bob Dylan winning the Nobel Literature Prize as a singer and a songwriter?", "How did the 2016 US election polls get it so wrong?", "Is length contraction real?", "Is there any other life existing except on Earth?", "How can I reduce my fear of flying? I have a three-hour flight in a couple of weeks.", "What is a botnet?", "Which should I choose SMS Jaipur or AIIMS Jodhpur? Why?", "Why doesn't Wikipedia run optional ads?", "Banning 500 and 1000 rupee notes is appreciated but why is the government bringing 500 and 2000 rupees again into the market?", "Are supernatural powers possible?", "What is the best way to get a postgraduate scholarship in a British university? PS: I'm Syrian?", "What happens when diesel is used in petrol engine?", "What are the best legitimate methods to making money online?", "How can you know if you're in love or just attracted to someone?", "What are some alternative ways to lose 5 pounds in 2 weeks?", "Which is the most used computer language?", "What language should I learn first?", "What are the various ways through which one can earn money online?", "Which country is the most loved throughout the world?", "Why does India not make video games?", "Did Mukesh Ambani knew about the currency change?", "Where do you think we actually go when we die?", "Why does Quora discriminate between users allowing different amount of question details for different users?", "What is the customer support phone number for AVG antivirus?", "Do any one know games played on paper?", "Did Neil Armstrong really see aliens on the moon? Or is the whole story made up?", "I want a WiFi router that can give good performance with my BSNL broadband connection, which router I should prefer?", "What are the best places to visit in Kerala? What is the best way of transportation there?", "What is importance of sex in life?", "What is mean by aggregate 60% in PCM for merchant navy?", "What is the function of a HIDA scan?", "What's the best picture you have ever seen?", "What are some of the best ways to lose 5 pounds in 2 weeks?", "How can you lose weight fast in a healthy way?", "How can I get my focus back?", "What is the best way to get started with learning Android development?", "What is the exact meaning of life?", "Why I feel so awkward around people and cant even reply?", "What are you most insecure about ? Why?", "What are advantages of Myriad Pro as body copy?", "How does a 5 stroke engine works?", "Would you consider dating your female best friend?", "Why don't the Japanese hate the United States for Hiroshima and Nagasaki?", "How do I become a good writer, and reader?", "\"How often do you mark questions as \"\"needing improvement\"\" on Quora?\"", "If my brother was vaporizing weed in his room would I be able to smell it at all?", "What is the most important thing you want to do before you die?", "How can I be a male model?", "What if I have viewed someone's video on Instagram but I'm not following them. Will they be able to see me in their viewer's list?", "How can I add text on top of an image using HTML?", "How do I know that my husband is cheating?", "Is it possible to escape the friend zone? If so, how?", "Which are the top 100 Hollywood movies one should watch before dying?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Yalu River?", "How should you start learning programming?", "How do you know if you're in love with someone and might only be denying the fact to yourself?", "\"What did Einstein mean when he said: \"\"Science without religion is lame, religion without science is blind\"\"? And do you agree with him?\"", "What is relation between gravity and time?", "What question would you ask to GOD if He would answer to only one question?", "Why does Lady Rainicorn from Adventure Time speak Korean?", "How can I remove my account from Quora?", "Has India provided any proof of the surgical strike?", "Does Quora support Hillary Clinton?", "Is there any jobs in Silicon Valley for electrical engineers?", "Is there any IT company in Germany which directly hire experienced employees from India?", "Can you tell me Everything you know about aliens?", "What caused the British Empire to fall?", "What is the best way to commit suicide in India?", "If you could be invisible at will, what would you do?", "What's the absolute easiest way to commit suicide?", "How is demonetization helping India?", "How do I know that I am in love?", "Is Red Bull energy drink made by bull sperm?", "What do you say when your potential employer asks you how you would like to be compensated?", "Why is the uplink frequency greater than download frequency in satellite communication?", "I'm trying to think of some good embedded systems projects to do (to add to my resume), what types of projects will impress?", "Is there any proof or evidence of alien / extraterrestrial life existence?", "Who are the most followed Quora users from each country?", "What does Donald Trump's win mean for Indian students in USA?", "What is a lucrative career for someone who is an introvert but bad at STEM?", "Why is Quora showing me the same questions again and again when I visit the website or app?", "How can I lose body fat in my belly and chest?", "What's the meaning of AF?", "How do I study to get distinction in MBBS first year?", "How can I study to get better grades?", "How do I get rid of belly fat and thigh fat?", "How do I find my old account in WeChat?", "How can I earn money online?", "How can I learn to play guitar?", "Why is Donald Trump being criticized for minimizing his taxes?", "What books do you recommend reading?", "Did Chris Wallace do a relatively good job as presidential debate moderator?", "What are the tips to grow taller?", "What can you do in a lucid dream?", "Where can we download Microsoft Office for free?", "Who is my best friend?", "What is the difference between ordinary petrol and speed petrol?", "What are the best book to learn C#?", "What are the things you want to do before you die?", "If you only had 24 hours to live, what would you do? Specifics please.", "Why do people add questions on Quora when they've already been asked?", "How should I convince a startup investor that he should invest in my idea?", "What are some amazing fact about Ramsetu?", "What are the causes of having a swollen and itchy labia minora?", "What will you do if you were elected as the President of United States?", "How can I study efficiently?", "Are you a dog person or a cat person?", "Has technology affected relationships?", "Would you rather live in the city or rural area?", "What are some ways to lose 30 pound in 1 month?", "My girlfriend of four years cheated on me with another man and is now happy with him. How do I get over her?", "What is the best way to learn about body language?", "Can we create another thing like internet?", "What are the wittiest pieces of sarcasm?", "What is link juice in seo?", "Who do you think would win the election, Trump or Clinton?", "Which movie website is better: IMDb or Rotten Tomatoes?", "What is the use of GST bill?", "Is nuclear energy non-renewable? If not, why?", "Were humans meant to be polygamous or monogamous?", "How can I upload a video on you tube?", "What is the expected cut off for KVPY SA 2016?", "Which are the best books for iit jam mathematics?", "How do you get rid of moles on your face?", "How can I meet Sir Narendra Modi Ji?", "What does sex feel like for a girl?", "China cosmetic companies?", "Which is best college for biotechnology in India?", "Is it the dark matter that waves in a double slit experiment?", "Has anyone ever been forced to wash dishes to pay a restaurant check? Or is it just a movie trope?", "Is the world truly flat?", "What do professors and students think about the Make School and it's reputation?", "What are the best Tumblr blogs?", "What is the GRAND purpose of life?", "Is Vietnam safe to travel alone?", "Is there anything comparable to India's caste system in other countries?", "How can I sell my patent?", "What is the best gift we can give to our parents?", "Can I hack Facebook?", "What type of music do you like?", "Would you vote for Michelle Obama if she was running for President?", "What are some of the best countries in the work and stay?", "How can you find the total surface area of a cuboid formula?", "What causes the difference in the facial features of people of different races?", "Why is the Japanese yen so weak in comparison to the dollar, even if Japan is a developed country?", "Is it possible to shift from merchant navy to Indian navy?", "What is web application?", "Has there been any major conspiracy theory that has turned out to be true?", "Chartered Accountants (CA): What is best coaching in Delhi for IPCC both groups, first attempt?", "Does providing aid to poor countries increase the risk of overpopulation?", "What's the life like to be a foreigner living in Beijing?", "What is the scope of supply chain management in India?", "How do I stop my insecurities?", "How does Quora count the views of my/your answers?", "What's the longest word in the English language and what does it mean?", "Is a loan-based crowdfunding platform classified as a financial institution?", "I'm a 13 year old lesbian and am in love with my best, straight friend. What do I do?", "I am 17. I want to become an entrepreneur. I want to do something innovative. Where do I start?", "How to prepare for CA Final exams?", "What should I do to become an army general?", "Is a third World War imminent?", "How do I block topics on Quora?", "What incident changed your life forever?", "What does iso 9001:2000 mean?", "Do insects feel pain?", "What are your views on de legitimization of 500 Rs and 1000 Rs note by Government of India?", "Which is the best place to see in Bangalore?", "How can one move on after a breakup?", "Who will win the Election? Trump or Clinton?", "If you knew you had one day to live, how would you spend it?", "How do I recover my Gmail account when the recovery phone is no longer in service and forget my old password?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Mojave Desert?", "How high a GATE ranking is required for doing a PhD from IISc with ECE?", "Do many people fake smiles, when they get their picture taken?", "What should I do to become a Top Writer on Quora in 2017?", "What is the latest update on SEO?", "What are the best life tips?", "Who will win the 2016 presidential election?", "What is the purpose of life? Why are we here?", "How do I learn Russian online?", "Should I care what people think about me? Most have a positive impression of me, but should I care to keep it that way?", "Why do relationships hurt so much?", "What's the difference between complementary and alternative medicine?", "What do you think about ban on Rs. 500 and Rs. 1000 currency notes?", "Where can I find sample screenplay script?", "How could you hack someone’s mobile phone?", "If the Indian government has decided to demonetise 500 and 1000 rupee notes, why are they bringing back new 500 and 2000 Rs notes?", "What is Quickbooks tech support number in Arizona?", "Where can I get very friendly assistance in property for sale across the Sydney?", "What are the bitter truths of going to the US to pursue an MS, as an Indian?", "What are some alternative German potato salad recipe without bacon?", "What's the best way to convert PDF to JPG without sacrificing image resolution in online?", "Would Bernie Sanders have beat Donald Trump?", "How do we can remain satisfied in a long distance relationship?", "What is the difference between a dynamic and a static website?", "How many times have sex in week?", "What is the biggest misconception about the military?", "Does Hinduism believe in evolution?", "What is power factor? What is its importance?", "What are your favorite rock songs?", "I have bought a laptop on paytm and I got a cash back of Rs.7000. Can I transfer this amount to my bank account?", "Is India really the only nation where subsidy is provided for the Hajj pilgrimage?", "How can I get a visitor's visa of the UK from India?", "What is the best place to hide a body?", "What is mean by current?", "What is the current fee structure of BIT Sindri ( a 4-year B.Tech) including the admission fee?", "What do you think the cutoff of KVPY 2016 SA would be?", "Why don't we try to convert all the salt water on the earth into fresh water?", "Is there infinite energy in zero point energy or it is just a mathematical result with no physical existence?", "Which is the best gift that you have ever received?", "How is life after MBA from IIM?", "What are my options for earning money online?", "What is a Wurtz reaction?", "Will we ever run out of pure drinking water?", "What is the best embarrassing moment of your life?", "When will Apple launch new MacBook Pro? Is it in 2016?", "How do we make money online?", "What podcasts on SoundCloud that will help me 'get smarter/more intelligent'?", "If I save $50,000 per year, how should I use my savings?", "Is there a way to extract and save the high resolution images from the Google art project?", "What is the importance of the compound light microscope?", "How can someone lose weight quickly?", "What should the purpose of your life?", "How exactly is the proposed GST bill beneficial for our economy?", "How can I earn $100 per day?", "Is Nyquil good for sore throats?", "Is dark matter a sea of massive dark photons that ripple when galaxy clusters collide and wave in a double slit experiment?", "Where can I get good quality cupcakes and a lot of different flavor in Gold Coast?", "How can I last for a longer time during sex?", "How do you make sure to appear as offline on Facebook?", "What is the best joke you've ever heard? Please keep it clean.", "Why was my question marked as needing improvement?", "Do you find it funny that Bob Dylan won the Noble Prize for Literature?", "What can young programmers do to avoid backpain issues before 20yrs experience?", "Should I buy a Nexus 6P or a Oneplus 3?", "Why did gay marriage get legalized in America?", "What era would you like to live in?", "What is best gift for any girl?", "Where can I get an unique taste for cupcakes in Gold Coast?", "Is it healthy to eat a tomato every day?", "Why there are people who still believe that earth is flat?", "What is the best way to use the Internet?", "My boyfriend gropes me in his sleep all night. Is this normal?", "Why do artistic gymnasts chalk their hands?", "How can I start my CA preparation?", "Which kingdom includes organisms that are all multicellular?", "How could I improve my English?", "How is Lipton Green Tea related to weight loss?", "What are some good short stories?", "What are the Seven Kingdoms?", "How will the events of WWIII play out?", "What is your review of Passengers (2016 movie)?", "How do I get rid of my anxiety?", "How do I make a model of a rocket?", "Am I alright at drawing for a 14 year old?", "How does Quora count the views of my/your answers?", "How much is the salary of a pharmacovigilance person?", "How do you feel about noise?", "Can you take a pregnancy test in the afternoon?", "My syllabus is more or less done. What should I solve ? How and what should I revise for JEE 2017 now?", "How can I get better grades in maths?", "How do I detune a guitar?", "Why is ISRO the most successful?", "How and where do I promote a startup travel website?", "What are reasons that you love someone?", "Which is the best smartphone in India under Rs 15000?", "Why do goldfish eat other goldfish? How do I prevent this from happening?", "What was best sex you ever had?", "What is best way to increase presence of mind?", "I am turning 16 now and I want to become a professional footballer? What should I do?", "What are the causes of soil erosion?", "\"Why is a \"\"crush\"\" called a \"\"crush\"\"?\"", "What is the best photo ever taken in your life?", "What is the best way to change your life?", "How do people write in blue big words?", "How do I start business from nothing?", "Why is India not removing article 370 from Kashmir?", "What are the best books for clat 2017?", "What would happen to this country if Trump were elected president?", "How do I focus on one thing?", "Which startups are hiring in Pune?", "Is the use of food grade diatomaceous earth safe?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Singapore?", "Which moment was one of the best moment of your life?", "How is robotics changing the world?", "How much would it take for a person of 65 kg to become slim?", "Does gravity have infinite range?", "What TV show should I watch after Sherlock and Suits?", "AVG antivirus technical support phone number to install AVG antivirus software setup?", "Is it possible to hack WhatsApp?", "What are your 10 favorite songs of all time?", "What is the iq of the average person?", "Why do many Quora users ask questions they could look up online?", "What are the best translations of The Holy Quran in English language?", "What are the possible options for India to deal with Uri terror attack?", "How do I find the motivation to lose weight?", "How do I speak fluent English with confidence?", "What will be your new year resolution for 2017 and your plan of execution?", "Is hacking an ATM possible?", "What is the difference between a poison and a toxin?", "What are the best books for UPSC/UPPCS?", "How can I study to get better grades?", "How do I stop myself from thinking about my ex?", "Would demonetization of 500 and 1000 rupee notes actually help in curbing black money in India?", "What is it like to visit North Korea?", "Which are the best sites to download Hollywood movie torrents?", "Which are best places to visit in GOA during vacations?", "Which are the best android smartphones in the rangevof 10000 INR?", "I have one a Mayan flute gold in, what is their story?", "Is the strongly interacting dark matter which fills 'empty' space and is displaced by matter what relates general relativity and quantum mechanics?", "What are the best places to visit in Kerala for 3 to 4 days?", "What makes Indians sad?", "What is reality?", "How can I increase the traffic on my website?", "What does Usain Bolt do differently to be so fast?", "How can I overcome my social anxietyl?", "Thermodynamics: What are some examples of the polytropic process?", "How can I learn to speak English fluently?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "Is it possible to change my DOB in birth certificate?", "What is the best motivation book?", "Why should euthanasia be legalised?", "How can I make my penis thicker?", "How can I spend my time more efficiently?", "I have one, an Mayan snake flute, with gold in, what is it's story?", "How do I create my own country?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Peru earthquake in 1687?", "How can I become hacker?", "Do people make money from binary options?", "Which is the best free antivirus?", "How can I get rid of mobile phone addiction?", "What was the best kept secret ever ?", "Do you regret transitioning to another sex?", "Why do all of my questions on Quora need improvement?", "What are some mind-blowing bike inventions that exist that most people don't know about?", "How do people join ISIS?", "How can we define India in a sentence?", "Can someone see if you have viewed public Instagram?", "Can I pass a urine drug screen test on Monday, if I smoked a bowl of meth on Friday?", "Will there be a war between Russia and America?", "What are some of the ways to locate my stolen phone?", "Will glyx 13 proceed with phase 3b and 3a trials in sequence or simultaneously?", "How do I get white skin?", "How should I prepare for GSoc 2017?", "Why do dogs pee on tyres?", "What will be your new year resolution for 2017 and your plan of execution?", "How do people deal with jealousy?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Simpson Desert?", "How do people deal with black money because of the ban of 500 and 1000 rupee notes?", "Should India go through war with Pakistan?", "Does white privilege exist?", "Is a perpetual motion machine theoretically possible?", "When will Apple release the new MacBook Pro in 2016?", "Which philosophical books would you consider to be the best (or among the best)?", "Whats the best way to reduce belly fat?", "How do you read someone's mind?", "Which is the best way to prepare for SSC CGL at home or by ourselves without coaching?", "What would happen if Trump and Pence both died right now before being sworn into office?", "My face has gained a lot of fat .How do I reduce it?", "What kind of a profile should I need to land a decent university in Germany?", "What is the relationship between the two?", "What would you do if you had an unlimited source of wealth?", "How do I make a distinction between adult film stars (porn stars) and prostitutes?", "How long will the human species last?", "Which is the best book for bridge designing?", "What does it take to be a bug bounty hunter?", "Why do so many smart people consume drugs?", "\"Why was my question marked as \"\"needs improvement?\"\"\"", "What's a good book for beginners to learn Swedish?", "Could humans ever travel back in time?", "Do the Illuminati really exist?", "How do I become an UX designer?", "How can I make an animated GIF?", "What is one accomplishment you are most proud of?", "What are the best FM transmitter apps for iPhone?", "How do you make a delicious turkey?", "Can you follow a topic anonymously?", "What is IELTS and its use?", "Which is the best addiction?", "What is the best way to self-learn a language and be able to speak fluently?", "Where can I found high quality meats in Sydney?", "How much blood can I donate?", "Who is the best looking female character in Game of Thrones?", "Where should I stay in Goa for the first visit?", "How many dimensions are reported to be existing in our Universe?", "Will India ever be able to catch hold of Dawood Ibrahim?", "Why do men send pictures of their penis to potential partners?", "What are the ways to find the hidden talent in me?", "How do I use the Jio 4G sim in 3G cellphone?", "How can one make money online?", "How can we solve the problem?", "What will be the effects on earth if there is no moon?", "Which are some commonly mispronounced words?", "What's the best way to learn phrasal verbs?", "Is it possible for human to invent time machine?", "What are the best places around the world for a honeymoon?", "Which is better, the Rolling Stones or the Beatles, and why?", "What are the pros of mesh topology?", "What is your response when someone asks about your salary?", "What is the smallest known star in the universe? How is this known?", "Where is the best Fridge service center in Hyderabad?", "Which companies are doing reverse logistics in pharmaceutical?", "Culture of India: Why do some Indians eat with their hands?", "What percentage of questions are yet to be answered in Quora?", "Would you vote for Trump and why?", "What are some features of MS Excel?", "How come Indian and Mexican cuisines are somewhat similar?", "What is the primary, principle purpose of life?", "What is the best programming/coding language to learn?", "Why was super glue invented?", "How do I prevent people from negatively affecting my Quora question?", "What does it take to move to another country?", "\"Is \"\"Unity in Diversity\"\" still possible in India?\"", "How can I lose weight quickly?", "What is the best Special Forces unit today?", "What were your experiences when you had roll no. 1?", "What is the best way to make brownie?", "Are Gods ancient aliens?", "What is the forecast as to when iPhone 8 will come out?", "Why we celebrate Nehru's birthday as children's day?", "\"What does it mean when a person shouts out \"\"Allah Akbar\"\"?\"", "What is meant by hard pull (inquiry) and soft pull of one’s credit history report?", "Do men appreciate Lingerie?", "Is Trump destroying America?", "Is Indian media worst in the world? ", "What is more important than money and time?", "I want to open a savings account & an RD account. Which bank is good, ICICI Bank, Yes Bank or Indusind Bank?", "Is rock music dead? Can it ever make a comeback?", "What creates a bully?", "What is my purpose in life? Why is there life on Earth?", "Why is Saltwater taffy candy imported in South Korea?", "What are the usual stereotypes about Czech Republic and what are your experiences with Czechs?", "Who is the most inspirational person ever?", "Why was Jayalalitha buried and not cremated?", "How does presynaptic α2- receptors and prostaglandins E series control of sympathetic nervous activity?", "How can you make money while you are a college student?", "What are the best books to learn astronomy for beginners?", "What are the likely impacts of Internet2 on business?", "What is the best way to spend a weekend in Bangalore?", "What makes North Indians hate English?", "Will the decision to demonetize 500 and 1000 rupee notes help to curb black money?", "How can I have more flexibility?", "\"Why did the Americans call the Germans in World War 1 \"\"Huns\"\"?\"", "What do you think about ban on Rs. 500 and Rs. 1000 currency notes?", "Is universe expaning with no limit because of potential energy transforming into kinetic energy? If yes, then is there infinite potential energy?", "What super power would you have if you could have any ONE you choose?", "What do terrorists gain by killing innocent people?", "What do you think about banning ₹500 and ₹1000 notes?", "What would you like to do in your spare time?", "Why did the Indian government demonetize the current 500 and 1000 rupee notes and replace them with new notes?", "How would you rank the Harry Potter books and movies?", "What is the best way to prepare for CA final group1 papers?", "What are some of the online coding bootcamps in India?", "Why is my Maltese/Husky puppy afraid of cats?", "How do I stop my Husky/Border Collie puppy from chewing my socks?", "What does Trump’s victory mean for international students?", "How can you give dogs Benadryl to calm them down?", "What is your new year resolution?", "What are your 7 worst habits?", "\"What is the importance of confession in \"\"The Scarlet Letter\"\" by Nathaniel Hawthorne?\"", "How do I claim warranty on a Kindle purchased from Paytm India?", "What are the top three books that you can read over and over again?", "Where can I learn Python with trading?", "What is the best and safest way to clean a Samsung flat screen TV?", "What will the sky look like when the Milky Way collides with Andromeda?", "Why did Akshay Kumar take up Canadian citizenship?", "What are some interesting things about Indian Railways?", "How do musicians make money?", "Wanna ask someone please. What is life? And what is the purpose of our life?", "Where can I get a wide variety of wedding dresses in Gold Coast?", "Does sex always hurt the first time?", "What is the best guitar?", "What is good way to learn robotics?", "What are examples of solids?", "What is a solutions architect?", "What will prevent the fake currency makers across the border to print the new Rs.500 and Rs.2000 notes?", "What is best way to make money online?", "What are the best wallpapers for desktop?", "Why do you think Donald Trump is running for President?", "How do I prepare for the IAS 2017?", "Is it possible to make internet friends on Quora? How?", "How much time does it take to learn web development?", "How can I play PS3 games on PS2?", "Which phone should I buy under 15k?", "How can I make myself to wake up early in the morning?", "How do I effectively study Direct Taxation in CA Final and score an exemption in exams?", "Help! I need motivation to lose weight. I need to lose 30 kilos?", "Why do nuclear scientists in India keep dying? Why isn't the government or media requesting answers?", "How do I get out of stress?", "What would be the temperature at the core of a black hole?", "Which is better chemical engineering or biotechnology?", "What are your biggest challenges as a CEO?", "Why doesn't Donald Trump release his tax returns?", "Which is the best water purifier for the home? Where can I buy the best water purifier in India?", "Why there is no gujrati in Indian army?", "Do girls date guys that are shorter than themselves?", "How do I bag internship at Google India?", "Which are the best anime?", "How is 0! = 1?", "How do I lose weight fast by perfect weight Loss plan?", "What is the role of a business analyst in an IT company?", "What are some of the best mosquito repellents?", "How do I live with an alcoholic?", "What can be the ranking of the engineering colleges (mention private/government funded) in Delhi NCR?", "Who is YHWH?", "What is the best way to ask out a coworker?", "What do you think about banning 500 and 1000 rupee notes in India?", "Is the BJP really a communal party?", "What should I wear for my brother's wedding?", "How can I get hard erections?", "How can I grow taller at the age of 15?", "How do I stop masturbating/watching porn? I can't/don't masturbate without watching porn.", "What are the best sites to download movies?", "Is it possible for antibiotics to cause acne?", "Is Sherlock Holmes gay according to Sir Arthur Conan Doyle's writings?", "Is it too late to study medicine at 23?", "Can humans become immortal?", "How do I declare Three 2D arrays dynamically in C?", "What are the applications of thermodynamics in dairy industry?", "Which is the best coaching institute for SSC CGL preparation in South Delhi?", "Does powering up pokemon before evolving them effect the CP of the evolved form? Will the evolved form be stronger if I powered the pokemon up first?", "I have been in the US with my F1 visa for eight years now. Can I rent out my room through Airbnb? If so, is there a limit on income?", "What are the best compliments for a girl?", "How I can speak English fluently?", "What does the insanity workout do?", "How did Donald Trump win the Presidential election?", "How can I find if someone has deleted their whisper app?", "What was the immediate cause of the First World War?", "Why should I work hard in high school?", "Why does India have such a huge problem with violence against women?", "Education and success - is there a correlation?", "How will long distance relationship work?", "Is it ever good to be self centered?", "How does it feel to have a pet?", "Is the new Macbook Pro 2016 an over priced disappointment?", "If God is all powerful can he make a rock so heavy even he cannot lift it?", "How important is money in your life?", "What's your New Year's resolution for 2017?", "Can I change my direction and still have a constant velocity?", "Is there evidence that the illuminati exists?", "Why's watching snooker easier than playing it?", "Why do I get a feeling that Zee News is pro BJP/Modi all the time?", "What is the reason behind government's ban on 500 & 1000 rupee notes? What are the immediate effects and how useful will it be in curbing black money?", "How would the world be different today if Hitler had never born?", "Which is better, League Of Legends or Dota 2?", "Super Smash Bros. Brawl: What is the best Wolf O'Donnell strategy?", "Since bad genetics gave me bad teeth should I not be alive so I don't get Alzheimer's disease?", "What are the reasons why eradication of 1000 rs and 500 rs notes?", "How can someone overcome servere social anxiety?", "Where can I search for best hotel at Nainital?", "Why does WCDMA come under 3GPP? Is it evolved from CDMA? If yes then why not to 3GPP2?", "What is make money online?", "How many lines of code do Software Engineers write per day?", "How do biotic and abiotic factors compare and contrast?", "What song can you listen to and never get tired of hearing?", "What is the procedure to get a mobile signal tower constructed on my barren land in India?", "Which one is better: FIITJEE or VMC? Why?", "What's your resolutions for 2017?", "What are the new features in iPhone 7?", "Has Ancient Babylon been scientifically tested?", "Why would Hillary Clinton start a war with Russia?", "What are my chances with a 299 GRE score?", "What are the odds that Trump will be impeached?", "What are some meaningful new year resolutions for 2017?", "How can I get an investor for my startup?", "How can I know the flight status of a US Airways flight?", "What are the pros and cons of transpiration pulls?", "\"Does ouija boards really work? Or do we just \"\"imagine\"\" stuff that happens?\"", "Can I hack into my husband device?", "What is actually a limbo?", "How can one become emotionally and mentally strong in life?", "How much did Product Hunt get acquired for?", "How can I hack my snapchat password?", "What should I do or not do while in Ireland?", "What's the best sexual experience you have had?", "How does it feel to have your first sex?", "What is that one incident that changed your life for better?", "Why Hollywood is making so many remakes of their old movies? Why do studios keep rebooting old franchises?", "Where can we find Whirlpool Air conditioner Repair Center in Hyderabad?", "How important is physical intimacy in a relationship?", "What are the benefits of being a most viewed writer?", "Which are the sexiest job of a man according to girls?", "How do I get over somebody?", "Why do we age slower when traveling at or near the speed of light in space?", "What will President-elect Trump's priorities be in his first 100 days in office?", "\"Why do they say \"\"God bless you\"\" when you sneeze?\"", "How can I learn Java effectively at home? Some good websites?", "Why did Argentina declare war on Britain?", "Will Google Nexus 5 get an Android N update?", "How can I start making money by starting a blog?", "Which is best laptop under 25000 with all features like VGA and hdmi port?", "What is a perfect number?", "How do I verify my Facebook account if it is sending the code to my old phone number?", "What is a fully developed laminar and turbulent flow?", "What are some intersting Harry Potter facts?", "How can I lose my weight quickly ?", "How do I control my anger and have patience?", "When and how could India ever become a permanent member of the United Nations Security Council?", "Will Donald Trump really make America great again?", "Should hamsters eat popcorn?", "What technicality results in humans being more intelligent than other animals?", "Can caffeine make you sleepy?", "What is the difference between moral and legal rights?", "What makes a perfect cup of coffee?", "How long does crystal meth stay in your system and how can I dilute it?", "What are some good website for general knowledge?", "How do I prepare for GATE 2017 without coaching?", "What makes you an insightful problem solver?", "How do I start with competitive programming?", "How can I learn English in a short time?", "How can I gain weight on my body?", "What are tips and tricks to become a great poker player?", "Which one is better: Samsung Galaxy S6 or the iPhone 6?", "Could humans ever travel back in time?", "What are the best places to visit in San Diego?", "Is Ayurveda boring?", "When can I meet God?", "How do I lose my weight from 58 to 50 kgs?", "Which has better coffee, Starbucks or Tim Hortons?", "What are the safety precautions on handling shotguns proposed by the NRA in Wisconsin?", "How does the ban on 500/1000 denominations affect various domains of the Indian economy?", "What is your New Year Resolution for 2017?", "What are some mind-blowing vehicle accessories that exist that most people don't know about?", "What was the best thing that you did this year?", "How do I avoid highways on my iPhone's Maps?", "Why so many political leaders are opposing demonetization?", "What is the best coding bootcamp in Canada?", "Do anti-virus companies write viruses to create business for themselves?", "What is the best way to promote your YouTube Video?", "Are we all hypocrites? Justify?", "What are best career options available for electrical and electronics engineer today?", "Which is the most dangerous chemical on Earth?", "What are covalent bonds? What are some examples?", "What are the best hashtags to use as a photographer on instagram?", "How will replacing 1000 notes with 2000 notes going to stop corruption and black money?", "What is your favorite school subject and why?", "On what basis does an answer in Quora gets collapsed?", "Does Congress party digging their own grave slowly as they opposing everything done by PM Modi like saying Jay Shriram or doing surgical strikes?", "How much population of India paying income tax?", "Which is the best NIT in India?", "What are the good books for GMAT preparation for starters?", "How do I get free Instagram followers fast?", "Why do you have to fast before surgery?", "Which is the best book for learning Python language for beginners?", "What makes a person join ISIS?", "What is the difference between 2G and 3G mobile networks?", "Is the universe infinite? If so, what is it expanding into?", "What was the most interesting and strangest crime case you ever heard of?", "How do I lose my weight from 58 to 50 kgs?", "What are the powers of prime minister of India?", "How do I buy shares?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Vallenar earthquake in 1922?", "Can resonance frequency be used to destroy anything? If yes, how?", "How likely is it that Michelle Obama will run for president in 2020?", "How can I flip my computer screen?", "Why do some people still think the Earth is flat?", "Why do most of Indian Muslims hate/against PM Modi?", "What does it feel like to be an Indian Army/Navy/Airforce officer?", "What are the most important books ever written?", "What fields can I enter after completing a B.Tech in mechanical engineering?", "What is the best fact that I should know?", "How can study for longer hours at night without falling asleep?", "What is a good diet to lose weight?", "What are some companies that use Mixpanel?", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Taklamakan Desert?", "What do you think about banning 500 and 1000 rupee notes in India?", "Is there any known cure for eczema?", "World happiest country?", "What is the best university for Indian students to study MBBS in Ukraine fees?", "Why are some Americans so resistant to the idea of its country enforcing its immigration laws?", "What is the best book to learn C++ for a programmer with C background?", "List some social, cultural events for college fest?", "Is there still hope for the Voltron movie?", "What is the most delicious brand of chocolate?", "What bank is good for a savings account in India?", "When is the last day for earth?", "What are the health benefits of Turmeric?", "How much detail do I need to put in for a provisional patent for software?", "What is your favorite inspirational song of all time?", "What are some good beaches to visit in Kerala?", "How many times a day should you meditate?", "How do I know if a shy guy likes me?", "What would happen if Pakistan declared war on India today?", "How many wives did akbar have? And their names?", "Which is the best QuickBooks Hosting Support Number in New York?", "How do I delete a Gmail account?", "How can I grow my beard faster naturally?", "What is the best beginner's book on Python?", "If you could have one big question answered what would your question be?", "How can I improve in my writing?", "How do I find the right girl for me?", "What is the purpose of RecordReader in Hadoop?", "Who have easier lives, men or women?", "What is the best place to visit in India in the winter?", "Is too much of Quora a bad thing?", "What's the best way to make a passive income online?", "What is principles of cutting tools?", "Have you ever seen any ghost?", "People says that I lack imagination when I clearly not, what should do? How should I response to them?", "How do I get rid of my acne and get nice skin?", "Where do we go to when we die?", "How do I get rid of face pimples?", "What are the safety precautions on handling shotguns proposed by the NRA in Maine?", "How can I study in B.TECH 1st year efficiently? I am not able to study. Please help.", "What's the most awkward/embarrassing situation you've ever faced in your life?", "What is your review of Harry Potter and the Cursed Child?", "How can we get rid of masturbation?", "How would demonetizing 500 and 1000 rupee notes and introducing new 2000 rupee notes help curb black money and corruption?", "Any advice for female solo travellers?", "What goes through your mind when you are about to give a speech on television in front of millions of people?", "How do I recover my Facebook password by email?", "How can we meet to PM Narendra Modi?", "Why do people have cellulite and how do you get rid of it?", "How the black money be recovered by simultaneously demonetising 500, 1000 notes and introducing 500 , 2000 notes?", "How can we earn money online while studying?", "Do Hollywood actors really have sex in movies during sex scene?", "How do I hack into someones Facebook?", "Is it true that ₹ 2000 currency notes in India are embedded with GPS chips? Can it be done at all?", "Can a black hole be infinitely small?", "How did you overcome your fear?", "How do I report identity theft?", "What is the example of Presence of Mind?", "Which book would you like to see made into a film and who would you choose to see in the lead roles?", "What is the best place in India for a solo trip?", "What is peak value of 220V a.c?", "What was the funniest novel which you've read?", "Who acquires or purchases works of art for hospitals?", "How do I talk to the moderators who marked my questions as needing improvements in Quora?", "How can I change my password to my gmail account when I cant rember the phone number or old password?", "What are units of density?", "What are the existing biographies or autobiographies of Bruce Lee?", "Which is your favorite bollywood movie in 2016?", "How do I get more traffic to my site?", "How do I improve my communication skills.?", "How do I make a magnetic motor?", "\"What are the best answers to \"\"why should I hire you\"\" in bank interview?\"", "What would happen if war were declared between India and Pakistan?", "What exactly happened in Big Bang and when it happened?", "If you had to change one thing about Quora, what would it be and why?", "Which is better, biotechnology or biomedical science?", "What made you start using Quora?", "Is economics still a good major choice for the future?", "What it is like to be a pornstar?", "How can I make my girlfriend feel really special on her birthday?", "How does Sonakshi Sinha get movies?", "Worst Movies Ever -- What movies have you watched and wanted to sue everyone involved with the movie for its existence?", "How do I start to overcome clinical Depression?", "How can I get rid of girlfriend?", "Is it a good idea to lose your virginity to a hooker?", "Is a mobile app necessary for business?", "Is pre marital sex a sin?", "Which are the best fitness bands?", "What is the best travel hacks?", "What are some good resources to learn web scraping with Python?", "Who was Pancho Villa? How did he die?", "What is a rough endoplasmic reticulum?", "What are the benefits and side effects of drinking warm water with honey and lemon every morning?", "What causes diarrhea all of the sudden?", "How can I meet Sir Narendra Modi Ji?", "How should I prepare myself for campus placements?", "What are the pros and cons of the United States switching to the metric system?", "Could a camera ever be better than our eyes?", "How do you pick locks?", "Why do people write questions on Quora that could be answered with a quick web search?", "If you could change anything about education, what would it be and why?", "What led to the rise of fascism?", "What is neutron star?", "What statistical significance level is used in medical research?", "What feature should a good robo-advisor have?", "How do I remove app from internal memory to SD card?", "Why are there still people who think that the Earth is flat?", "What Is Masala Bond?", "How did 2008 economic crisis happen?", "What are some mind-blowing vehicle accessories that exist that most people don't know about?", "What's next for the Democratic Party after a poor 2016 election season? What did we learn from them?", "How should I prepare for IIT-JEE in 3 months?", "How are white vinegar and white wine vinegar different?", "How can I efficiently lose weight?", "Which Bollywood movie you like the most in 2016?", "What is the best way to increase Page authority?", "What is the best story you have heard?", "How do I lighten dark underarms?", "Why does America remain such a religious country?", "What are some differences between Latin American Spanish and the Spanish in Spain?", "How do you know if you're in love?", "What is there in the Bermuda triangle?", "Which server-side scripting language should we use in web development today?", "How do I to get rid of acne scars?", "What was the Victorian era's culture like?", "What is Hillary Clinton's greatest achievement as a Secretary of State?", "How can I Increase the traffic of my blog?", "Why is 0! equal to 1?", "Which is the ugliest pet in your opinion that people actually like to keep?", "What is the best gre book?", "How do I lose weight without exercise?", "How do I get Instagram messages back when deleted?", "How can I find my true purpose?", "What happen when India and Pakistan become friendly nations?", "What's the fastest way to learn C?", "How can I increase speed of studying?", "Hows it like to date an air hostess?", "What will the third world war look like?", "What are you doing in Quora?", "Why sex is important in our life?", "What is the difference between International relations and International studies?", "Does chronic stress cause Anhedonia?", "How can I prepare for CA CPT?", "What is the area of the shaded part?", "What are the safety precautions on handling shotguns ?", "\"When a question on Quora is marked as 'needing improvement\"\" does that make it invisible?\"", "How can someone be the best thing and the worst thing that has happened to you?", "Did the void exist before the Big Bang?", "What is the best memory you have with your sibling?", "What are Mathematical puzzles?", "How do I delete all posts at once on Facebook?", "When should you be able to have sex?", "How can I travel time?", "How do I get wavy hair overnight?", "What's it like to be a lawyer?", "Why is anal sex pleasurable? Don't the feces get on the penis?", "What are the places to visit in Kerala during September last and October 1st?", "How do I use the Jio 4G sim in 3G cellphone?", "If you compare Manmohan Singh and Narendra Modi on the basis of their performance as Prime Ministers, who is better?", "How can one get better grades?", "How do we tell my grandmother that my father, her son, has died?", "How do I come up with an idea for a coding project?", "How do I calculate CGPA?", "What is the physical meaning of divergence, curl and gradient of a vector field?", "What is the Sahara, and how do the average temperatures there compare to the ones in the Sonoran Desert?", "What is the best way to dispose of a human body without leaving any trace of its existense?", "What are the cons of phase modulation?", "What's your opinion about Katrina Kaif getting the Smita Patil Memorial Award?", "What should anyone do to increase their presence of mind?", "Which music do you like best?", "What are the reasons some people commit suicide?", "How can I increase the traffic on a site?", "How popular is atheism in India?", "Hi Avg @@@1800_@_251_@_4919@@@ Avg Antivirus Tech Support phone Number?", "How can I know if aliens exist?", "Is it good time to buy gold stock April 2016?", "How can we trace any mobile's location?", "Why does my Virtual DJ keeps crashing?", "What are the best places to visit in Udaipur?", "Are ghosts real?", "How will banning Rs. 500 and Rs. 1000 notes help in overcoming corruption in India?", "Until what age does a boy's height increase?", "How can you reduce first time sex pain?", "What are Free online IQ tests?", "How do you guys wake up without an alarm clock?", "What are the chances that the Electoral College votes against Trump and for Hillary?", "\"How true are \"\"The Biggest Scam in the History of Mankind\"\" video's claims about the U.S. and international monetary systems?\"", "\"What is the best way to \"\"convert\"\" a website into an iOS app?\"", "Which is the best mutual funds to invest in India?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Arica earthquake in 1868?", "How can I earn money online, seriously?", "Do you like history?", "This time India sent Nation's largest delegation ever, so how many medals India will carry from Rio Olympic 2016?", "How do I ask a girl out for coffee?", "Why doesn't India have a population control policy? Can such a policy be practically introduced?", "\"Why was Quora named \"\"Quora\"\"?\"", "Why carbon12 is salected for atomic weight? Not other element for example lithium or other element? Justify", "Have you ever slept with a stranger?", "What are the best places to visit in Kerala? What is the best way of transportation there?", "What is the easiest way of committing suicide?", "Do apps like Clean Master actually boost your phone's performance by analysing the CPU temperature and other things?", "Has anyone personally involved or experienced or have seen ufos or Etraterrestrials?", "What are your favorite Twitter accounts?", "Purple nails, what can it be about?", "Is it too late for global climate change?", "Why is Manaphy so angsty?", "How would you switch out isotopes?", "What people with huge amount of black money will do after today's bold decision by PM Narendra Modi to ban 500 and 1000 notes?", "What is the best way to improve my spoken English soon?", "Is it possible for a man to love two women sincerely?", "Which is the most dumbest joke that you have ever heard?", "How do I get my questions answered quickly?", "What are the minimum prerequisites before learning artificial Intelligence?", "Which book is best for data structures and algorithms for beginners?", "What should I do to make money online in India?", "How do I learn spoken English?", "How did you overcome your drug addiction?", "Does your zodiac sign really affect your personality?", "How practically is proved that earth core is molten rock?", "In Game of Thrones, can dragons kill White Walkers? If so, how?", "What do you think of the first US presidential debate?", "What is your opinion on the purpose of life?", "Does getting a dental implant hurt?", "How can I get rid of migraine pain naturally?", "How do I get free Pokemon go coins?", "How do I overcome clinical depression?", "What is intentional fallacy?", "Are there other websites like Quora?", "Will President Obama's legacy be looked upon more fondly than President Bill Clinton’s?", "How can I improve my English pronunciation?", "What are your top five music albums?", "How did you get wealthy?", "How Will Donald Trump's election affect Europe?", "How can I stay motivated myself during hard times?", "Why are maximum breaks rare in competition in snooker?", "How can I change my website to a one page WordPress theme?", "Are both Brahma and Saraswati & Abraham and Sarah the same?", "Is it possible that there is life in other planets?", "What are some examples of open source application software?", "How can I lose an extreme amount of weight?", "What would happen if NATO incorporated Ukraine right now?", "How do I get credit card for myself?", "How do I satisfy a girl during sex?", "What made Tata group chairman Cyrus Mistry to quit?", "How can I download a video from Investopedia?", "What is the difference between a tuxedo and a normal suit?", "What are your favorite and least favorite alcoholic beverages?", "What is the approx salary TCS give to USA employees ?", "What are the theories as to what happens after death?", "Do women like big black cock?", "What is my purpose in life? Why is there life on Earth?", "What is the best platform/media/source to learn digital marketing?", "How do I control emotions and reactions in nervousness?", "What are some simple ways to save money?", "How is scientific notation used in everyday life?", "What is the most expensive item that people are willing to buy for their dog?", "How do I market a novel?", "What is your biggest regrett in life?", "Did Pierre de Fermat really have a proof to Fermat's last theorem or did he think he did?", "What is the fastest way to lose weight?", "Where can I find efficient rubbish removal service?", "What are the facilities provided for IES officer?", "March 8 is International Women's Day. What is the best country in the world for gender equality?", "Can excessive masturbation cause memory loss?", "How can I grow taller at 18?", "How is PewDiePie getting so many subscribers?", "How do I break up with a suicidal girl?", "How can I control talkativeness?", "What is a procedural language? What could be considered as a non procedural language?", "How do you know if you have fallen in love with someone and not just like them?", "How did startups get financial help?", "Why is Saltwater Taffy candy imported in Mexico?", "Who do you think you were in a past life?", "How do I control anger and impulsive emotions?", "[Spoilers]What do you think about Harry Potter and the Cursed Child?", "Is basic housing a human right?", "What is equity risk premium?", "What are some fun things to do on a Friday night?", "What are the five most important considerations for starting a new business?", "Which one is better to adopt - solid or hollow shaft?", "Which is the best smartphone under 20000?", "Is it cultural appropriation when black women straighten their hair, dye it blonde, or wear blue contacts?", "What are the best places to visit on a 3-day trip in and around Kerala?", "What does about future b.tech in biotechnology?", "Will there be another recession soon?", "Is it possible to be born with naturally purple eyes?", "What European countries charge no tuition to international students?", "What is the best way to commit suicide in India?", "Silicon Photonics: What is silicon photonics and how does it work?", "What are some of the best US universities in the field of computational solid mechanics for pursuing a PhD?", "What do I do to get orders on fiverr?", "Did Hillary knowingly pay people to incite violence at Trump rallies and blame it on Trump supporters?", "Would you risk your life for a stranger?", "What marketplaces do you use to sell your used clothing on?", "Do people still worship the Greek gods?", "How can I stay fit without going to a gym?", "How do I cope with feeling overwhelmed?", "What are the signals a guy gives when he is attracted towards a girl?", "How much does a fresher earn in IT?", "How do I install and start up C programming language?", "Why should someone choose Windows over Mac OS X or Linux?", "What were the results of the Industrial Revolution?", "\"What really happened to the \"\"Unknown Rebel\"\" of Tiananmen Square protest in 1989?\"", "How will GST boost India's economy?", "How much time does it take to learn web development?", "I feel like a loser, what should I do?", "Are we heading toward World War 3?", "Why are some news channel and people saying that the new 500 and 2000 notes cannot be faked?", "How many human beings have ever lived?", "What is the best coaching institute for GMAT in Delhi NCR region?", "Who is your favorite composer and why?", "How can I plan/prepare my CA final exams in Nov 16 considering all practical subjects coaching is done, but I'm not sure I remember anything?", "Is House Baratheon dead?", "What do Colombians think about Juan Manuel Santos being awarded the Nobel Peace Prize, 2016?", "How can I ask my question on Quora?", "What exactly happens to my brain when I fall asleep?", "What will happen to the border between Northern Ireland and Ireland following the Brexit vote?", "Which is the best book for startup branding?", "How can an individual choose the right career?", "What is the best digital marketing course available online and offline in India and Why?", "How do I add long details to my Quora question?", "Why can't the US government just print more money to absolve its debts?", "If your period is 10 days late, are you pregnant?", "How do you start your own hedge fund? How do you explain the concept of this business model to prospects who may not know better?", "My questions on Quora all need improving. How do you ask a question on Quora?", "Who is the smartest, and who is the dumbest person in the world?", "How do I delete my question from Quora?", "Is there anything that can be done to prevent a child from inheriting its parents' bad eyesight?", "Who is a teacher?", "How can I start writing blog?", "If you had an unlimited amount of money, what would you do with your life?", "What all places can one visit on a two day trip in Kerala, India?", "What all are the advantages of a computer?", "What's your opinion about the decision on removal of 500 and 1000 rupees currency notes?", "Does height increase after 18 years?", "Are there more bisexual women or men?", "Can you teach yourself how to sing?", "What are the safety precautions on handling shotguns proposed by the NRA in Arizona?", "How do I start business, if I have no money?", "How can I motivate myself to do a diet and exercise?", "How do i get traffic for website?", "I'm going to stop eating and drinking anything as well as exercising a lot every day. Will I lose a significant amount of weight in seven months?", "Is there anything like Netflix where I can find every Big Bang Theory episode?", "Is the potential energy of vacuum energy, virtual particles and/or dark energy infinite? NO MERGE", "How cold can the Gobi Desert get, and how do its average temperatures compare to the ones in the Patagonian Desert?", "How should I study in first year of MBBS?", "What is the best way for underweight to gain weight?", "If dark energy is being created with expansion can infinite of it be created?", "What is it like to marry someone you never loved?", "How can I get rid of chub around my stomach area?", "Which are some of the best romantic movies?", "What is the mobile app that will help me to improve my coding skills?", "What are a few of the habits that successful people do daily?", "Daniel Ek: Why is Spotify not available in India?", "How is a concentration gradient used in biology?", "How much can I deposit in my bank account (after 500-1000 notes ban) if I have already 4 lac in my account?", "What are top certifications in IT?", "Why did Mercedes stop making the SLS AMG?", "Can you suggest me the best university to study medicine in Ukraine, Europe?", "Whu is my period 3 weeks late?", "How do I improve my reading speed?", "Can anybody give me the details of the lateral entry program conducted by IIIT-Hyderabad?", "Why do people get fat?", "How do we live a happy life?", "What are some best anime?", "What is the best free app that I can use to track somebody's phone?", "Is it possible to permanently delete a Quora question?", "How do I start preparation for IAS exam?", "Why are black people faster runners?", "What fiction and nonfiction books are essential?", "What should I check before purchasing domain and hosting?", "What is the easiest way to upload audio alone to YouTube?", "What is Star Trek about?", "Why does God created the heavens and earth?", "What is the difference between nutritionist and dietitian?", "Do spirits really exist? Has anyone tried a Ouija Board?", "What's your opinion about the decision on removal of 500 and 1000 rupees currency notes?", "How do I post an image in Quora?", "What are some mind blowing things that people don't know exist?", "\"What is the meaning of \"\"Life\"\"?\"", "Importance of reading?", "Is at least the potential energy of vacuum energy and dark energy infinite?", "What is the use of Java interfaces?", "How do I prepare ink at home for inkjet printer?", "What was there before universe was born?", "What do you think about the BJP government not making the black money list public?", "What is the scope after doing Bcom Hons?", "What’s the best used car for under 7000?", "What is one thing you caught your child doing that you wish you had never seen?", "\"Where did the phrase \"\"excuse my French\"\" come from?\"", "Why does it hurt being in love with someone who does not love you back?", "Which sites can l find native English speakers for English speaking practice?", "Is the world really going to end? If so, then how will it end?", "What are the stages in database design life cycle?", "How can I change my profile picture on Quora?", "Why can you not accelerate to faster than light?", "What does the rough endoplasmic reticulum do? What are some examples?", "How do I find my list of GMail addresses?", "What does earned value mean?", "Which is the best bank in Nepal for students?", "What is the easiest way to lose weight faster?", "What is the exact meaning of phase voltage and line voltage?", "Why India is not able to perform well in Rio Olympic 2016 as compare to London and Beijing Olympics?", "Is iPhone really worth spending such loads of money?", "What should every woman know about men?", "What time of year is it best to visit Singapore?", "Does masturbation affect memory?", "Where can I get best qualities outdoor tiles in Sydney?", "How do you become the top writer on Quora?", "How can I study the Bible?", "How does modern media influence people and their mindset?", "Will France become a Muslim-dominated nation?", "Has anyone ever met up from Quora and dated?", "What's the best definition of UX you've heard?", "Whom should one follow on Quora? And why?", "What will the afterlife be like?", "Can a black hole swallow another black hole thats nearby?", "Is it possible to lose weight without doing exercise?", "What are the ways to say no to a girl after meeting her first time in an arranged marriage?", "Which TV show had the best ending you've seen?", "Why do people still believe in flat earth?", "Why isn't transgenderism considered a disease?", "Which is the best apps for download games?", "Which is your top 10 hollywood movies list?", "Which is the weirdest question you have ever come across on Quora?", "How do I contact a real hacker?", "How can I maintain my long distance relationship to the best of my ability?", "How can I learn to speak a fluent English?", "How can I become an actor?", "What are some useful tips to overcome Writer's Block?", "What's the fastest way to learn Japanese?", "Will you feel something if you accidentally without knowing ingested a few specks of weed?", "Why would a parent abuse their child?", "What is the exact difference between a suit and a blazer?", "What knowledge is required to contribute to Github projects?", "What is best way to make money online?", "What should I do before selling my laptop?", "How can I start a freelance consulting business?", "What is a hymn?", "How many version of Quran exist now?", "What is a palindrome number?", "What makes The Godfather trilogy the greatest movies of all time?", "Are Apple products overrated and overpriced?", "What are the five best movies of all time?", "Were the surgical strikes carried out or not?", "What are some good recipes for Chocolate Chip cookies?", "What are some easy ways to make done extra money online?", "A stranger miscalled me from the private number. How do I find out his number? Is there any free stuff which can help me?", "Is it healthy to eat a tomato every day?", "How banning 500 and 1000 rs note will help fight corruption in India?", "What is some of proof collected over the years that indicates the existence of aliens or extraterrestrial life?", "What is time for processing time f1 visa application?", "What is the role of nucleic acid in living things?", "How do I deal with people who are jealous of me?", "How India can respond to the Uri terror attack?", "Who is the topest lover specialist astrologer?", "Do you think Salman Khan is a good actor?", "How will people come to know of Jon Snow's real parentage and Will they believe it?", "What are some mind blowing bike tools that most people should have?", "What's the easiest way to make money online?", "What were the major effects of the cambodia earthquake, and how do these effects compare to the Concepcion earthquake in 1751?", "How do I make money through Quora?", "How do I get rid of my frizzy hair?", "Where can I find the questions I ask on Quora?", "Is there a bank that open accounts online?", "Quora: What would you improve or change about Quora?", "Does the HTC One E9+ have any issues?", "Which debit cards work in Neteller?", "Do insects feel pain?", "Should I do a PG diploma in industrial robotics or an advanced diploma in software testing?", "How lightning arrester works?", "Which is the best site to prepare for tech Mahindra selection?", "What are the best was to lose weight?", "How can I teach myself how to sing?", "What are the best sex tourism destinations in India?", "How is the decision made by Indian Govt to demonetize ₹500 and ₹1000 is useful?", "What's the importance of GST bill in India?", "Where did the Hollywood Undead come from?", "How can I stop my porn addiction?", "What is Muscular dystrophy? And is there a cure for it.?", "Where can I hire a serious hacker?", "What's the best gaming console, Xbox one or PlayStation 4?", "What was the significance of the battle of Somme, and how did this battle compare and contrast to the Battle of Hong Kong?", "What are the best intuit quickbooks support plans?"], "fp_queries": ["Which level of prepration is enough for the exam jlpt5?", "What can cause stool to come out as little balls?", "Would a second airport in Sydney, Australia be needed if a high-speed rail link was created between Melbourne and Sydney?", "I don't beleive I am bulimic, but I force throw up atleast once a day after I eat something and feel guilty. Should I tell somebody, and if so who?", "How do you become an air traffic controller?", "University of the Philippines: If I take a second BFA in the UP College of Fine Arts, can I be exempted from gen. ed. or core subjects?", "How can I move to Jamaica?", "What is the county of Edgware and how does the lifestyle compare to the London Borough of Enfield?", "What is a qualified SAP ERP key user?", "\"Why do a lot of theists and agnostics confuse mainstream atheistic thought with \"\"positive atheism\"\"?\"", "How can I go to Disneyland with little money?", "How can I contact Donald Knuth?", "If a die is rolled. what is the probability that the number on top is a 3?", "What is Morse code?", "What is the best backend for my app?", "What type of government does France currently have and how has it benefited the country?", "What are some creative ideas for arranging a freshers' party?", "Why are the people on Staten Island are racist?", "What are some good characteristics of the American culture?", "Why are the HTTPS sites not working?", "Has Ancient History been scientifically tested? Is it all real? Did it happen differently than we were told it did? Did it even happen at all?", "Who is won indutal medal?", "Which are the best recruiters for technology executives in the san diego Area?", "What is the best answer for 'Hmmm'?", "I got selected in Infosys via campus placement in September 2015 and received my letter of intent in June 2016. When can I expect the offer letter?", "There is a good looking guy that acts like he is by boyfriend and that we have a thing. What does it mean?", "What would happen if ants disappeared from the Earth?", "Who are some artists with interesting or inspiring childhoods?", "Does the end justify the means?", "Will Narendra Modi win 400+ seat in L S 2019 ?", "What is the lead time for SSN4EGS411 board?", "Do any popular Quorans gain financially through Quora?", "What is the length of rebars on beams between slabs?", "What types of government did Aristotle want?", "What is the happiest thing about you? What is the saddest thing about you?", "Are there any parallel universes?", "What is the difference between a virtual circuit and a circuit switch?", "What are some things people believe about Ireland but are laughably far from the truth?", "What are the different types of nuclear families? How do they all differ?", "What is Nuru massage?", "I created a Telegram group but I could not find the option to Add Admins. Why?", "How do you reset your Yahoo! password?", "Do Tamils usually watch Malayalam movies?", "Why did you lose your virginity?", "What is Donald Trump's IQ?", "How did most creatures develop noses? What was the starting point?", "Where do you want to spend your last days of life?", "Which technology will win the OLED vs LCD battle?", "How do I accept that I will always be alone?", "What are some examples of typical bacteria?", "Do employees at Pennsylvania REIT have a good work-life balance? Does this differ across positions and departments?", "Which is better Honda City or Maruti Ciaz?", "Can dreams come true?", "What are the pros and cons of GitHub versus Bitbucket?", "What are startups?", "A polynomial leaves remainder [math]2[/math] when divided by [math]x-1[/math] and remainder [math]1[/math] when divided by [math]x-2[/math]. If the polynomial is divided by [math](x-1)(x-2)[/math], then what would be the remainder?", "Can gun control prevent a robbry?", "What country has the most attractive women -- either in absolute terms or in density?", "What is your review of www.buttermyresume.com?", "How do I install Windows 10 on new Hard drive?", "Did Hitler underestimate the jewish mafia-nation?", "Why are Laxmi, Saraswati, and Ganesha depicted together?", "What is the perception of Mikhail Gorbachev among Russians today?", "What is your review of South Indians?", "If I liked Skyrim, what other games would I like?", "What is the best way to meet new people?", "What is it like to live in the Chinatown or Nob Hill areas of San Francisco?", "What is Barack Obama doing now?", "What is the business model for wooroll.com?", "How do you get a job with a criminal record?", "What is the best way to meet women?", "What is the first reaction of a girl when a boy proposes?", "What is the difference between Javascript, JSP, Node.js and EJS? From where should I begin?", "Why is pewter so expensive, and how does its properties compare to those of aluminum?", "What are the best gifts ideas for sisters to give on this Raksha Bandhan?", "What will be my in Hand salary if I have?", "What steps can be taken by Indian Ministry of Tourism to improve foreign visitors coming to our country?", "What companies are similar to IDEO?", "Which are the most modern courses in engineering?", "Is nearbuy shut down?", "How do foreigners who have settled in India feel about India?", "How do I recover my Gmail password when I don't remember my recovery mail ID?", "What is an explanation of Gödel's Incompleteness Theorems suitable for a 10 year-old?", "Is it not normal to go out with friends?", "What is your thoughts on the theory that all of us living, is just the Earth being aware of itself?", "Where can I find some cool home decor products in USA?", "How is BIM trichy as compared to IIM Kashipur?", "What does it mean when I dream about somebody dying?", "μTorrent: How does VPN keep someone's identity anonymous when downloading torrents?", "How do I know if I can trust my business partner?", "How are peanut butter and jelly sandwiches good for you?", "What are the best stocks to invest in 2015 for the Indian market?", "What are the different types of physics and what is and example of it in astronomy", "What are the most important things you should teach a kid?", "What is the difference between England, Wales, Scotland, Ireland, Britain, Great Britain, United Kingdom, the British Islands and the British Isles?", "\"Does Facebook charge content sites to display a \"\"Post to Facebook\"\" button on their pages?\"", "I got a python Kerberos module installation error. How can I fix it?", "How would you explain your stance on the TPP to the Prime Minister of Singapore who is in the USA now?", "What is 45 converted to a fraction?", "What is a DAG (Directed Acyclic Graph)?", "What did Pope John Paul II accomplish?", "Following the Brexit decision, which companies are already moving their business away from the UK?", "What rank can I expect if I score 134 marks in wbJEE 2016 medical?", "Pepsi 500ml Contains only 250 calories. Why is it not allowed in a weight loss diet?", "I am currently in class 12th PCB. And I want to become a designer like interaction designer and want to work with Google. So what should I do?", "Why is greater than 80 km and less than 240 km considered as medium length transmission line?", "How should one prepare for campus placement?", "Do you think it is fair to compare Hannah Reid from London Grammar to Florence Welch?", "Which one is better to buy: Moto G3 or Samsung Galaxy J7?", "Why did America support Pakistan in the war of 1965?", "What is difference between self balanced binary search tree and AVL tree?", "What is the best way to learn Cyber Security?", "What are the best interview questions?", "How much distance do I need to run daily if I want to lose 1kg per week?", "What should I do when I don't know what exactly is the purpose of my existence?", "Would it be just as difficult, or maybe even more difficult, to make an irrational AI robot as it would be to make a rational one?", "What are the challenges faced by Quora when choosing to use WebView for their mobile app?", "If you are unhappy with your current job, would you quit right away& find another job or wait until you find a job. What are the pros & cons of each?", "What would be the easiest popular website to code from scratch?", "What is Best video player for pc?", "What type of government does Guatemala have? How does it compare to those in other countries?", "How many Hindu Parliamentarian in Indonesia?", "What are the things Indians are proud of which they should not be?", "What are the best Free VPN for Indonesia?", "I lent an unemployed friend money. I am successful and could afford to. How do I get them to pay me back when they think I don't need it back?", "Are german shepherd dogs loyal?", "Which are the best Drug or Alcohol Rehab, Detox and Recovery Program Centers in the Mono County California area?", "What can I do if I fall in love with someone who doesn't love me?", "Is Mr Darcy based on a real person?", "A rectifier converts AC into DC but still the output of half-wave and full wave rectifier is sinusoidal. Why?", "Which drawing software is easy to learn in mechanical?", "How do I Style the PyQt4 Widgets in Python?", "Who are the best pune to mahabaleshwar cabs provider in pune?", "\"Why is \"\"Sense and Sensibility\"\" a good book?\"", "Is it “easy” to become wealthy if you have a computational PhD?", "How do CBSE board calculate 9th Sa exams grade?", "Why do you support the TPP?", "Is calcium flammable?", "Why do our veins appear green?", "In India we are having Aadhar card, voter card, ration card, PAN card. Will it not be better to unite all of these into a single card?", "Does Uber get any signal or feedback when a driver or passenger cancels a ride? Can Uber figure out if someone is to blame?", "How is the placement in chemical engineering at IIT BHU?", "What are your favourite German podcasts and why?", "How do I loose 4 inches in 5 months?", "Is Stefan Molyneux smart?", "How should I ask this bank teller out?", "Uses of tetracyclines?", "What is your worst experience?", "In networking, Is router use in Mesh topology?", "Why is pyridine more basic than pyrrole?", "How do you measure vibration?", "Simple talking words in kannada?", "What is the best platform to start off in a game development?", "Is there any short guy (under 5'5) who is considered to be successful?", "Why hasn't the U.S. made an anti missile defense system as good or better than the Russian S-400?", "Which are western countries where interracial marriage is quite common?", "Does Free trade affect the national sovereignty of a state?", "What is ‘Edgware’ and how does the lifestyle compare to the London Borough of Brent?", "Should welfare recipients be drug tested?", "Is there a way I can see what my friend has been liking on Facebook?", "What things do INTJs say?", "When is Reliance Jio expected to launch their 4G services?", "Which is a good place to stay in Hyderabad?", "How does Quora define spam? What are the consequences of spamming on Quora?", "How can you prepare a short summary of The Iliad?", "How do stop spreading cold or flu in the air at home?", "What is your position in your current or previous job?", "What are some life hacks for students?", "Do aliens really exist?", "How do I reset my Gmail password when I don't remember my recovery information?", "How do I use bitcoin?", "What are some methods of generating artificial gravity?", "The Wolf of Wall Street (2013 movie): *Potential Spoiler* How did the FBI agent get the note Jordan Belfort writes to Donnie Azoff while wearing a wire asking him to not incriminate himself?", "In hiring an executive assistant, can I assume that today's college graduates have an in depth knowledge of Microsoft Excel, Word and Access?", "Do UFC fighters wear guards?", "Typography: What fonts are used in Haiku Deck?", "What are some tips on making it through the job interview process at Air Methods?", "Pure shear simple shear?", "Do pilots have sex with the air hostesses?", "What is the difference between Microsoft Windows 32-bit and 64-bit architecture?", "Is it normal to watch a movie before 4 months of my JEE Mains exam? Do any of the dedicated students do this?", "In the real world can men and women ever be equal?", "Why are there so many terrorists in the world ?", "What is the eligibility criteria for doing MS in mechanical engineering from Germany?", "Why did Germany lose WWII?", "What happens at Sri Chaitanya?", "Which are the best movies to watch?", "What is the meaning of criticism?", "What makes a dense liquid sink?", "Is reliance jio offering 1 year of free internet on LYF Smartphones purchase?", "What are the best aspects of working at Range Resources?", "\"What is the etymology/word origin of the Tamil word \"\"Tamil\"\"?\"", "What are some examples of the second law of motion?", "What are the advantages Indians enjoy over others?", "What is so great about Generation X?", "How is laminate flooring installed?", "Would you come to jamaica to date a black man like me?", "What are the tips and hacks for getting the classes that you want as a freshman at Xavier University?", "Is TripIt worth using?", "What is the most romantic poem ever written?", "Should non-vegetarian food be completely banned in India? Why?", "What is Trump?", "How is the word 'mischievous' used in a sentence?", "What are the rules and regulations when visiting an inmate at Valdosta prison and how does it compare to prisons in Florida?", "How widely accepted are credit cards at small businesses and restaurants in Israel?", "Why isn't anime popular in America?", "What is Tori Kelly's net worth?", "\"What is the definition of \"\"amnesty\"\"? How can you use it in a sentence?\"", "What is effect of demonetization on the happiness of an average Indian?", "I am a layman. What is Form 16, Income Tax return and the fuss about it?", "Did dwarves have magic like the elves?", "How is the Lewis structure for cyanide determined?", "Why did Pakistan ignored Jinnah's views and became Islamic Republic after partition?", "What are the different kinds of skateboards?", "Which genre or artists should I listen to?", "What is the real running cost of a super car?", "I got a mark of 41% in the FIITJEE FTRE admission test - will I get a scholarship?", "I am in my late 20s and feel I have wasted a lot of time. Is it too late for me to achieve something worthwhile?", "What is your investment checklist before you buy a stock?", "What should I do about my crush on this guy?", "Should I join a coaching for CAT?", "How can the word 'aquamarine' be used in a sentence?", "Which Oscar Wilde book should I read first?", "How does a cam pump work?", "Who was Chhatrapati Shivaji Maharaj?", "How can we improve payment gateway system to endorse cashless payment more since non reliable cashless transaction is very common in India?", "Who is the best politician?", "Why is hard engineering not sustainable?", "Can compressed sensing be used in EEG?", "What are some unusual aspects about politics and government in Singapore?", "How does it feel to be a lesbian?", "Why did Messi and Ronaldo score so many goals in the last years?", "Which country by far is most ethical?", "What are the best coworking spaces in Delhi?", "Smartphones: What is the best phone to buy below 10k rupees?", "What is The Sims 3 rated?", "What career can combine my degree in mechanical engineering with my interest in international relations?", "Who are some lesser known important historical figures of Qatar and what should people know about them?", "What are statutory powers? Do constitutional bodies hold statutory powers?", "How possible is it for a 14 year old to get pregnant by a 12 year old?", "How do you become famous and receive a lot of views, upvotes, and followers on Quora?", "Can I able to make 5000 rupees into 1 lack rupees in 1 year of period.if it possible how can I able to?", "I dont no whether am in love or its just a crush.can u help me?", "Can I use Jio 4G in HTC desire 526 Gplus pleace?", "What is Software consultant designation?", "Does MoPub pay me money from connected Networks?", "What are the most important and powerful questions in your life experience with which you have ever coped? Which question changed your life most?", "Which is grammatically the correct one to use? Let you and I go together or Let you and me go together.", "How do you know that you are no more in love?", "Is it okay to have sex with my mom?", "What is the age requirement to rent a hotel room?", "For the last 10 days I get aroused in the middle of the night and masturbate until ejaculation while literally sleeping. I don't want to do that but my arousal is so high that I cannot control it. I am feeling very weak due to this. Why does it happen and how can I control this?", "What are some great books to give as gifts this upcoming holiday season?", "When will Pottermore be open to the public?", "What is the most annoying thing about India?", "How does Twitter select trending topics?", "How can I use Omegle on my iPod Touch and how is it compared to using Lollichat?", "Consider the automobile manufacturing industry. Why is it that the production of vehicles is always active? Will there ever come a day when the demand comes down to nil?", "How do you know if someone is smarter than you?", "If light being pulled into a black hole is being pulled at the speed of light so it cannot escape does that mean anything inside is moving at the speed of light?", "What are some nice Tamil names to name my son/daughter?", "Can I become a pilot in India if I have passed the 12th with biology?", "We all know about the present condition of Indian politicians; they are all just using us to run their train, but still, they win elections and rule over us. Why aren't people giving their vote to NOTA?", "What are the steps for registering a company in India?", "Why do strokes pre-maturely kill so many people in southeast Asia and East Asia?", "How do you earn bitcoins?", "Why does someone's empathic presence make us feel better?", "How safe is eating pink chicken?", "Has the USA done more harm than good in the 21st century?", "How much is €16.300 in INR?", "Why are iPhones so expensive?", "Why does Chlorine have valence 1?", "Where does the Norwegian language come from?", "How many times does the average teenage couple have sex per week?", "What are these two types of mushrooms?", "How many working musicians are there in the world?", "\"What does Eminem's new song \"\"Kings Never Die\"\" mean?\"", "How do you know if you're gay?", "How do I find a lost dog when it is brought only 1 day back?", "\"Which one is proper, \"\"To whom it may concern\"\" or \"\"Dear Sir/Madam\"\", when you apply for a position?\"", "Whic gas used in tubes light?", "Is Tourettes a mental illness?", "\"What does \"\"grit\"\" mean?\"", "Would Donald Trump’s having become President adversely affect the job prospects of non-Americans who graduate from American universities?", "What is it like to meet Bobby Fischer?", "What is the best favicon you've ever seen?", "Is laser hair removal permanent?", "Introduction of legal methods?", "Would you like to share your learning experience and build a learning routine to help others learn fast and systematically?", "Is the Islamic state practicing the purest form of Islam as it existed at the time of Muhammad?", "How can I convert an .ASHX file to .PDF?", "Mid-Career Crisis - Should I do an MBA?", "Who was the first Indian to climb Mount Everest?", "Can history repeat itself?", "Can you keep a Red Panda as a pet?", "What is the closest Turkish equivalent (if there is one) of any the following words: startup, entrepreneurship, entrepreneur, business, scaleup and new business?", "Why not make Manish Sisodia the Chief Minister of Delhi?", "Which cleaning service company is best in South Australia?", "As Euro members how long marriage should valid to get permanent residence?", "What is a broadcast domain?", "What are the chances that Medium will last into the 2030s-2040s?", "What is your worst experience with bullying?", "How do I prepare for the GATE ECE 2017 on my own without any coaching classes?", "My sister was bitten by my pet dog 8 months ago and the dog is still normal healthy and alive. Is vaccination required by my sister?", "Boredom: What can I do when I'm bored in my house?", "Can Quora users edit other people's answers?", "How do I tell my best friend I don't what to be best friends anymore?", "What is the salary of chief minister?", "How many valence electrons does oxygen have?", "Since Carrier has been granted a tax break, can other companies threaten to ship jobs elsewhere if they do not get a tax break as well?", "What are the best metaphors?", "I'm looking to make some quick bucks as I broke my phone and my mother is paying for the repairs temporarily, how do I do this?", "Can I find a job with only knowing high school computer science fields?", "How would you solve this physics problem?", "How should we study in medical school?", "The pain from getting a tattoo relaxes me. Is there something wrong with me?", "Which programming languages are used at Internet of things?", "New Media: How do I get a show on Hulu?", "Does federal reserve bank come under jurisdiction of supreme court?", "Which are the best mobile to buy under 8K INR?", "What are ONIX files?", "Why should I do join the Disney College Program?", "Why is Google not buying Twitter?", "What are some of the misconceptions you have which you got from watching porn?", "Which are the best restaurant in Ho Chi Minh City?", "How is social class determined in Japan?", "What are some examples of simple sentences with a simple subject and a compound predicate?", "What could be causing the internet on my smart phone to be going slow?", "What trivia (and/or little-known facts) do you find interesting about Texas?", "Is it allowed to write with an ink pen in the UPSC main examination?", "Do guys approach girls only because of their looks?", "\"What is the meaning of the word \"\"pit\"\"?\"", "Is the aryan theory true or is it a false story by the British?", "What is the meaning of Telugu word 'Thaakidhu'?", "How does calculating the volume of a cylinder compare to that of a sphere?", "How do I draw the shear and moment diagram?", "What is the reason for the separation of the waters of the Indian and Atlantic Oceans?", "What grade on the US GPA scale is the equivalent of a B at an Indian high school?", "What's the best IRC client for Mac OS X?", "Does acupuncture really work?", "Why does Saturn look so fake?", "Which foundation is used for two storey building on hard strata?", "Which are some of the low cost services for startups?", "How do you stop the itch from a wasp sting?", "\"When gun enthusiasts say, \"\"why don't they enforce the laws we have?\"\" What laws do they mean, specifically?\"", "Can H-1B visa holders do higher studies in the US?", "Is it worth pursuing a graduate degree in journalism?", "What is the best magazine for global issues?", "Is it still possible to get pregnant while pulling out even if you are under birth control?", "Which startups use CouchDB?", "What is the greatest thing that can happen in terms of U.S Foreign Policy if Donald Trump is elected as President of the United States of America?", "\"My IFTTT recipes using GMail all fail to trigger. IFTTT already has access to GMail, yet it continually asks for \"\"Offline Access\"\" and still fails?\"", "What statements from Indian banks are required to show interest earned in India on FD?", "If ancient philosophers such as Aristotle,Socrates or Plato were alive, what would they think about coding/programing and AI?", "How do I get over music addiction while preparing for software job?", "Bioinformatics: What is the difference between a single-end and a paired-end fastq file?", "What do you feel is the biggest challenge facing today's youth?", "What does the rest of India think about the Keralites?", "All dielectrics are insulators but not all insulators are dielectrics. But in reality we use many semiconductors like gallium arsenide as dielectrics. Why is there a conflict?", "Why am I getting the wrong answer in SPOJ?", "What is the location of Palawan, and how does this Island compare to Mo'orea?", "Why do people get married?", "Why are we governed by so many incompetent people?", "We are a part of this hypocrite Indian society, where love marriage is all about caste and love is something called a crime. Do you agree? If yes, why? If no, what is your experience?", "Who is the most arrogant character in Game of Thrones?", "I'm currently in Class XII. I'll be giving NDA-2 2016 in september. Will I be call for SSB if I clear the written test?", "What are some examples of Indian etiquette?", "If I changed my Instagram username, can Instagram developers find me by my old username?", "What is the deepest lake in Europe, and how does this lake's flora and fauna compare to that of Lake Geneva?", "What is keynesian economics and does it work?", "Why does Uber not offer a way to book a round trip?", "I have secured 2970 in my common merit list for NIFT. Will I get into the fashion design course in any college?", "What are some good, reputable resources for selling domains?", "Why do we intialize the object in Java by default constructor?", "Which is the best site to download TV Series?", "What is sin(x)=1?", "If Warren Buffertt or Bill Gates were to die, how would the IRS collect 50% of their assets?", "What will be my approximate salary per month with this salary structure?", "Which engineering college has best labortary?", "Why are plasma TVs heavier than LCDs, and why is it bad to lay them down?", "What would happen if we didn't have faces?", "\"What is the meaning of \"\"kill one`s way to\"\"?\"", "Is it better to buy or rent a house in Singapore?", "Is there any good Java open source demo project about Design Pattern on GitHub?", "Can you develop a decent competency in distributed systems by your own on your laptop or do you need a a real distributed infrastructure to play with?", "Which sentence is right?", "When will Pandora be available in India?", "How do I hide mental state?", "What is salary in Huawei for fresher?", "What software license should I sign with a company with no restrictions as to my own usage of the code with no liability to the company?", "Who invented sex?", "Should we take into account what others say or trust only our mind?", "How do I calculate the aggregate percentage of engineering in case of backlogs?", "How do I get the details of a person who has transferred money into my account?", "Did Nikola Tesla have children?", "What is product market fit?", "Is the Preamble our part of the Constitution in India?", "What is Product Hunt's technology stack?", "Is there any secret hidden from people of the world by the government of countries?", "What are the best TTC apps for an Android device?", "Did Steve jobs followed his passion?", "Who make the best rolling paper?", "How do I convince my boyfriend to get physical after a 1 year commitment? I am a 19 year old girl.", "What are some of the main functions of the skin and its shape?", "Are pyramid schemes for stupid people?", "Can gmail be hacked? How?", "What is it like to play Oregon Trail?", "Why does a boat float on water?", "How does a red dwarf die?", "What is one key criteria or computer part that makes a computer fast for gaming?", "What are some of the best desktop and laptop hardware repairing training in Kolkata which will teach me practically and make me a self-dependent professional?", "I am a first year B.Tech student and I want to do MBA after UG. Which is the right time to start preparing? Is it advisable to join MBA directly?", "How do I hide my IP address?", "Which headphones leak the least amount of sound?", "Is procurement a good field for an EXTC engineer?", "What does it feel like to be a mother with social anxiety disorder and have a child or children who also has social anxiety disorder?", "Is there a way to filter all psychopath/sociopath-related questions on Quora?", "How profitable is investing in the stock market? And how does one start doing it?", "What is a landing page?", "What is the best series to watch after Breaking Bad?", "What is the best books for C programming for beginners?", "What's causing the rise of marriages that end in divorce?", "How can I speak English smoothly without any coaching?", "What are the scopes of mechanical engineering in India?", "I completed my bachelor's with second division, can I get admission in good colleges for a master's if I crack the GATE with 99 percentile marks?", "Which one is correct: between you and I or between you and me?", "How can I download Photoshop on a Mac?", "What are problems faced by Q&A websites?", "Quora: What has a higher chance of lasting into the 2030s-2040s: Wordpress or Quora?", "I am currently in 10 class and i want to become an aerospace engineer in future, what should be my future steps to become an aerospace engineer?", "Which phone should I buy at this moment?", "What is the biggest achievement of your life?", "Which business has a good scope in Chennai?", "Is it right to say all mobile devices use apps? Also which other features make Mobile Devices so successful compared to its counterparts?", "What is some good advice for getting the highest possible score on the reading section of the SAT?", "How healthy would it be to lose 30 pound in 5 weeks?", "Assuming you want to measure a social phenomena, how do you proceed to create a new measurement? Where do you start?", "Will Quora be blocked in Mainland China by the Chinese government? If so, when?", "What is the process of getting a surgical residency in UK after completing MBBS from India?", "Can I connect two PCs on seperate LANs just using their IP as we do in LAN? WiIl my router automatically figure out? If not then how it can be done?", "I'm interested in a soluble protein, and I am hypothesising that it is a decoy receptor as it lacks a cytoplasmic tail. However, can decoy receptors cause death by binding to immune cells?", "\"If God is \"\"All Powerful\"\" then why can't he just kill Satan?\"", "What is a suitable inpatient drug and alcohol rehab center near Treutlen County GA?", "How can you draw the Lewis Structure for NH2OH?", "How do companies record fixed line phone calls?", "Why were the Japanese so merciless to Chinese people during World War II?", "What is the longest amount of time anyone has ever slept?", "How do I gain more profit from stock trading?", "What is the meaning of PQWL, RLWL, GNWL, RLGN, RSWL, CKWL, in a railway waiting list?", "How do you become a BevMo member?", "What should I wear to a high school prom?", "Does the Android Device Manager app use the internet on a device that you are locating?", "How many 4 digit odd numbers can be formed using digits 0 to 9 such that if one of the digits of the number is 5, its next digit should be 6?", "In the west ,the old buildings were made of stones while those were made of woods in the east countries", "What are some examples of moral topics for an essay?", "What are the effects of bleach in gas tanks?", "How can a person become really boring to be with?", "\"The best freestyle I've ever heard is Lowkey's \"\"Fire in the Booth\"\", does anyone know any freestyle's that top that?\"", "How do we make friends?", "How do I get a guy at school to notice me?", "How can I register a marriage in India?", "How can I raise funding for my startup?", "A girl I know added me on Facebook. We never talk. She seems to be shy and me too. We belong to some group of around 20 people, and I'm the only one she add (no mutual friends on Facebook). I sent her a message after I approved her request, but she didn't reply. what is the meaning of this and what sign is she trying to show me?", "What are the best two minute poems?", "I started playing squash a few months back. I loved the sport and a thought hit me that I should take up this sport at a professional level. My age is 25. Is it possible for me to turn into a pro and represent my country at the highest level if I get started now or is it too late?", "\"How can I write a good outline of the play \"\"Hamlet\"\"?\"", "Is it possible for a single developer to build and launch a AAA mobile game app?", "What is the best childhood memory you have?", "Why does my beagle puppy seems depressed?", "In your opinion, who is the best classmate you've ever met? What makes that person the best?", "What is a signal?", "Can we get below a 100 rank in the GATE CE with preparation of 3 months?", "What can be other career/job profiles for someone with a degree in computer engineering?", "Can you substitute canola oil for vegetable oil?", "Why are the tyres of the car black? Why can't it be any other?", "How do I solve crashing and lagging of games in Android?", "I've got an AIR 745 in AIIMS with UR rank 580. Which AIIMS can I get in the first counselling?", "Will Trump and Tillerson embolden Putin to enforce more law and order in Russia?", "How do I plan my revision for GATE 17 in one month?", "How many hours / week need to be practised in the gym to get a good shaped body with muscles for men? I have a skinny body.", "Is a size 8 1/2 in shoes pretty big for a woman?", "What are some things new employees should know going into their first day at Denbury Resources?", "How do I do a homemade perm?", "How do green and hazel eyes differ?", "What is urban loneliness?", "How much does Netflix cost a month?", "Should I buy the iPad Air or wait for the next iPad Air (iPad Air 2)?", "Can I join the Air Force?", "What are companies that have competed in the shopping vertical search space?", "If Clinton drops out due to her health problems, who would replace her?", "Which chimney is better for indian style cooking: straight line chimney or hooded chimney?", "How good do foot massages feel?", "What breaks a person spirit?", "What is the incubation period for the common cold?", "Something we did or didn't do in the past is taking atoll of our live after more than a decade we can't change it but why are we connecting or today with?", "Why isn't there any international song contest like Eurovision?", "\"Are there any cases of \"\"Homer Simpson Syndrome\"\" in nature, where an organism has an unusually large amount of cerebrospinal fluid?\"", "Is it worth seeing all the disturbing shit on Quora?", "Does anybody feel like they're going to die young?", "Can everyone fall in love?", "Is this possible to put some bacteria-like tiny organisms in Martian climate?", "If you could go back in time and do one thing, what would it be?", "What do military personnel think of doctors joining the military?", "What are keyboard shortcuts for refresh?", "What is your review of Gandhi'S Passion: The Life And Legacy Of Mahatma Gandhi (Book) By Stanley Wolpert (author)?", "If you were to build a website/web app (think small social network scale) right now, what languages/tools/frameworks/etc. would you use?", "What is the meaning of word jiyr?", "When sending an iMessage I won't come up saying delivered however the person can still read the message and reply back, but then all the iMessages I sent will send as texts?", "What is the Difference Between RAW and R&AW?", "What should I do about my small penis problem and my love for a girl who is interested in me?", "What can you make out from this poem?", "What is the best way to give a PowerPoint presentation?", "How can I delete someone from the WhatsApp contact list without deleting him/her from the main contacts list?", "My AIIMS 2016 rank is 1068(UR). Which AIIMS will I get an admission to?", "Is a high school senior dating a high school freshman taboo?", "Is there a Latin Unicode character for a backwards capital G?", "How does RedMart build awareness?", "What is the best name for a social cancer platform?", "How can I effectively plan risk management sessions with SMEs while they are busy with test activities?", "How can I improve my efficiency?", "What does the word yoga mean in Sanskrit?", "What is the best way to impress a girl in a meeting?", "Can I use any image from google/website in my blog, along with mentioning the credits for the image?", "Do modern navies allow the taking of prize ships?", "What is a meme?", "Does the amount of lives saved by products of innovation fuelled by wars surpasses the amount of lives lost in said wars?", "My company has been approached by an investor. He said he has many contacts that would help with the marketing of the product. He will also provide his own developers to make the final product (after the beta) for no charge. How do I know or calculate how much equity in the company he should receive?", "Why is simply being an American so attractive and have so much value in the world?", "If your mother and your wife fell into a river at the same time, who would you save first and why?", "Could the U.S. build a submarine aircraft carrier? What would its pros and cons be?", "What are your favorite French novels and why?", "What are some of the latest technologies geared towards helping people with disabilities?", "How can one learn PCB design online?", "If someone conducts an IQ competition between Alia Bhatt and Rahul Gandhi, whose chances are better to win the contest?", "What is the relationship between machine learning and either philosophy of mathematics or epistemology?", "What are some good and cheap hotels or hostels within walking distance of the train station in Vilnius?", "What is the process to get divorced in India if you are a Hindu? What is the expected time frame?", "What is the smartest zodiac sign?", "Why is it so difficult to toast bread while cutting it?", "Why is it so hard to score marks in XLRI?", "What are some IT Management theories?", "What do you think about Trump's latest speech?", "What the world would be if there weren't world wars?", "How many keywords are there in A.P.L. Programming Language in the latest version?", "How do I approach a girl whom I have never met?", "How can I get rid of my acne and acne scars?", "What is nonlinearity in data? How it is determined?", "How can you get thicker thighs?", "Indian constitution constitutes both Articles and Schedules. What is the need for both Articles and Schedules? Aren't Articles sufficient to guide?", "Why is the gym always busy in April and when will it slow down?", "What is the best 7 day itinerary for family with toddler to New Zealand?", "What should I do to get my ex-girlfriend back if she does not even want to talk to me?", "What is an ESA (Emotional Support Animal)?", "What is integral of [math]\\dfrac{ln(1+x^2)}{\\sqrt{1-x}}[/math] ?", "What's the best anti-virus software for Windows?", "Why don't better people run for U.S. President?", "What is in vape?", "How does Google earth work? How does images taken through satillite will be combined? What is the camera resolution used?", "What is the difference between H1 and H1-B visa?", "Is sex really important in a relationship?", "Do tattoo artists make good money? What is the process of becoming a tattoo artist or opening shop?", "What goals should I set?", "What is considered a good IQ?", "Do women or men want sex more? If so, biologically or culturally?", "What software can I use to make a mobile app?", "F(n) in O(g(n)) implies lg(f(n)) in O(lg(g(n))),where lg(g(n)) >=1,f(n) >=1 for large n. True of false?", "What would ISPs block if we didnt have net neutrality?", "What is the worst beer in the world?", "Can I have a container of goods shipped from China directly to my property?", "Where do the dresses go after being used in a movie by actors and actresses, what happened to those costumes after one time use?", "Can we eat ice cream when the weather is cold?", "What are some of the coolest office spaces in 2014?", "Why are you interested in the role at HSBC?", "What is the law of attraction?", "How did Microsoft build its Tay AI?", "How much time do Top Writers spend on Quora?", "How tall is Ben Higgins from The Bachelor?", "Is it safe to play with stray dogs?", "Who does Ash Ketchum like?", "How would I best justify the cost of buying a new Thermomix?", "What is the best algorithm to word 3 match game?", "Can those who meditate reach a state of consciousness devoid of thoughts?", "What are the best classified ads site in Denmark?", "What are the best place to visit in India with friends in December?", "What is the best movie song?", "Where can I find a complete list of songs for the Age of Adaline movie?", "How do I ride a bicycle?", "What is meant by matching a load?", "What is function overloading?", "What will you do if you fail in your life?", "What is s/o?", "What are some of the best nightclubs in dubai?", "Which is a good solar panel installation provider near Aliso Viejo, California CA?", "How does the data rate differ from the bandwidth?", "Why can't I see photos by a certain follower in instagram news feed,but when I get in his profile I can see them?", "Does supply-side economics (Reaganomics) work?", "4 pipes inlet and 2 pipes outlets, find water inlet?", "I want marine engineering in IMU. My rank in IMUCET-2015 is 5681. What are the chances of getting this course?", "What are some sensible trolls and memes?", "Why are my questions not answered on Quora?", "What are some good podcasts about music?", "What does VC mean in the merchant cash advance industry?", "How do I integrate root of tanx?", "What is the difference between a pornstar and a prostitute?", "What is the purpose of the steam drum on a water tube boiler or a HRSG?", "When did Scandinavians stop worshiping Norse gods?", "Why does Dr. Pepper have 23 flavors?", "What is a 'pivot' in a business?", "What are some latest Hindu baby boy name starting with “Dh” for my nephew?", "Why do some parents kiss their children on the lips?", "How do people manage to travel outside, attend college and work in the coldest parts of the world?", "What is your review of iOS 7?", "If two similar cars have a front collision at 50mph, each one gets similar damage as if they hit a concrete wall at 100mph or 50mph?", "What is a professional soccer player's diet like?", "What's the procedure to become Collector?", "What are some jobs that involve adventure?", "Provide an example of indirect discrimination that could impact on this key diversity target group?", "Which is the best story from Ruskin Bond?", "How can a woman act mature in front of a man?", "Where can I find a wordpress theme that allows you to pay the user for a service instead of the user posting a job or gig like fiverr?", "What are atif aslam's best songs?", "What site is better: Reddit or Quora?", "Why do some people ask questions on Quora that could easily be answered by using a search engine?", "What is the average placement for CSE at IEM Kolkata?", "Who should Win 2015 FIFA Ballon D'Or Award?", "Is it possible to file your taxes from previous years?", "What is the best way to curl short hair?", "Which are the most memorable moments in football?", "Which camera should a beginner at professional photography buy?", "How do I know that the food I am eating is 'safe to eat'?", "How much stock is Amazon giving in a job offer?", "What are the tips and hacks for getting the classes that you want as a freshman at NYU?", "Which fruits and vegetables help to increase the blood?", "Will not having enough money / credit to purchase something ever be seen as a UX flaw to be solved like any other?", "How do I get a job with a B.Tech. (CSE)?", "What does the below German sentence mean in context of a job interview?", "What advice would you give to someone who is depressed?", "How do you ask a guy friend to hang out?", "What PM Modi should do to control such a negative tide against him?", "How many merchants exist on ebay? How many of them have more than 1000 items listed?", "I feel like I'm surrounded by friends who, even if unintentionally, don't take me seriously and simply treat me like the happy-go-lucky clown of the group. Do I leave this group of friends or how do I deal with it?", "What is the way to read human brain/face reading?", "What are the best English songs of 2015?", "How many millions of people have been killed in the past two years by the U.S. jet fighters flying day and night over the Middle East countries?", "How do the tourist attractions on the Scandinavian Highlands compare to attractions in Slovenia?", "Why should I visit your country?", "How much is a Bob Ross painting worth? How much should I bid on eBay?", "\"Does \"\"an eye for an eye\"\" apply in legal situations?\"", "Do men wear the same wedding/engagement ring as women?", "Is there hostel in SIG?", "My crush likes a girl and I like him. I can't let him go. What should I do?", "Is Donald Trump's hair real and what about his skin color?", "What happens when a virus, bacterium etc interacts with a cancer cell?", "If time travel is possible, would our universe be in the first and original timeline and no one from the other timelines would be able to interfere?", "What is the chemical equation for calcium and water?", "Where can I find best hotel in Bhopal for holidays?", "How is CGPA calculated for BE?", "Do we have subsidies on renewable energy in India?", "What is the meaning and significance of GDP per capita? Why does India have such a low GDP (nominal) per capita?", "Is it possible for a Chinese girl to be in a relationship with an Indian boy?", "What's the most times you should call someone?", "What do software engineering interns do?", "What is the reason OYO Room Hotels may deny check-in to single guest (not couple) providing ID proof of the same city as the hotel itself?", "\"What is a good answer to the invalidating response of \"\"I'm sorry you feel that way\"\"?\"", "How can I go to USA by boat?", "What is the range of number of days in a leap year?", "What is the scope of Mechanical Engineering?", "What sani will do in 12th house?", "What are some of the interesting facts about India?", "Are fears rational?", "How much marks in need in mains to get ECE in Hyderabad?", "What material should I use for the 1Z0-435 exam?", "Who are the best architects in the world?", "Would I go to jail if abuse somebody badly on Facebook in India?", "How much would it cost to design and develop a website like 'tripadvisor.com'?", "What are the circles on Micheal Phelps back/shoulder?", "It is very difficult to express my thoughts. I know the subject, but I can't combine and articulate my thoughts. What should I do?", "How do you determine the chemical formula for aluminum carbonate?", "What does it feel like to lose your virginity to a prostitute?", "Multi line number picker?", "Write the essay in ISC board exam, in the beginning or after finishing all the sections?", "Why do people put old pets like dogs, cats and horses to sleep rather than allowing them to die naturally?", "What is this beat?", "Difference between Stack and Heap Allocation in java, c++, c?", "How many students were recruited by Amazon at NIT, Delhi?", "Does God exist?", "What is it like to be prom king or queen?", "What makes cotton a comfortable fabric?", "Who was the first Vice President of Kenya?", "What countries start with the letter A?", "Could Facebook (post-WhatsApp) eventually compete with telecom carriers?", "What does Homogenisation of an equation in math mean?", "How can I get rid of all this like back black neck and other parts on my skin, is there any liquid, soap or something?", "Is science a religion that must be believed in to be true?", "Who would win in a war between Russia and the US?", "Which is the best OTC cough syrup in India?", "Will my mobile get damaged if I use my mobile data in my PC via USB?", "How is iPhone 6s better than the Android flagships like Samsung Galaxy S7, LG G5 and One Plus 3?", "If a fly enters your car when you drive, and goes out of the car after 50 km, does it notice it's a different place? Does it change anything in its behavior? Does the fly care at all?", "Why are Americans so ignorant about other countries?", "How can the rate of mass transfer via thermal pump in a closed system be calculated?", "\"If I erase my iPhone, will the photos in my \"\"iCloud Photo Library\"\" be deleted?\"", "How can I do a summer internship abroad in biology?", "What is the difference between Scotch magic tape and Scotch transparent tape?", "How do I become an occupational therapist?", "What does test statistic mean for hypothesis testing?", "What are some good names for an NGO for education, training, Environment and other services?", "Can the Logitech wireless headset use the same nano as their wireless keyboard mouse combo?", "What is the best Final Fantasy game?", "Which Country and University is best to Study mechatronics?", "What is the definition of a nuclear family? What are the advantages and disadvantages of a nuclear family?", "How do you connect your wireless connection to the Virtual OS using Oracle VM VirtualBox Manager?", "Which is the best laptop to buy under 30k?", "How do I train my kitten not to be wild?", "How does a writer or director pitch a film or their script? How do you present that to a studio/producer?", "If someone is denied a STEM extension in the US, can he/she still apply for an H1B visa? What are all the possibilities under this condition?", "Which is the best coaching centre for IES (civil engineering) in India?", "Experimental set up of lamis theorem available?", "How is school changing in the 21st century in Japan?", "What are some inspirational quotes and stories?", "Why some of people still sleep all over the day?", "What would constitute a “perfect” day for you?", "How can I achieve my goals?", "What is the best way to learn C++ STL for programming contests?", "Is it true that fruits and vegetables help prevent cancer?", "Which language should I learn after C++?", "What differentiates a pizza as taught in Naples from one in NYC?", "Why is the pass percentage of chartered accountancy exams so low?", "What is the best programming language in 2016?", "What are challenges facing hotel managers?", "Which countries hate each other?", "What are some of the most creative cons performed by career con artists?", "\"What is the difference between \"\"don't we verb\"\" and \"\" do we not verb\"\"?\"", "What is the highest salary package in India?", "Which is the best custom rom for the Huawei Honor 3c 4G?", "Which one is better for embedded systems: ASU_CE (CS) or NCSU_CPE?", "What are some cultural faux pas in Germany?", "What are the 11 dimensions in string theory?", "What is a suitable solar panel installation provider near Lake Elsinore, California CA?", "How can I print passport size photos on my Mac?", "Will the earth be hit by a meteor?", "\"Slang: What does it mean to be called a \"\"Lucy\"\"?\"", "How do I remove Google bar on Moto G3?", "I'm traveling to the US from the UAE and I have a 2 hour layover in Riyadh, Saudi Arabia. Will I need to obtain a travel visa ahead of my trip?", "How dangerous would it be if a blue whale bumps into me? Can I be killed?", "As an NRI, do I need to file income tax returns for the TDS on the interest earned for the money kept in the NRO account?", "CAN I GET A GREEN CARD AS WALL?", "I am trying to get an off-campus interview at Zoho - I sent several emails to the HR but didn't get any response. What do I do?", "What are some phone with best cameras under Rs. 6500 in India?", "What are the best MS in Data Science/Analytics Programs in the US?", "How are foreign currency exchange rates governed in banks?", "Are there any plugins for integrating payment portals like PayU or Citrus in WordPress?", "What are indicators of a chemical change?", "Should I drop this year to give the JEE or join JECRC college (the one which is affiliated to RTU)?", "A ball thrown horizontally from the top of a building 55m high strikes the ground at a point 35m from the building. What is the (a) time to reach the ground, (b) the initial speed of the ball, and (c) the velocity by which the ball will strike the ground?", "Who is Olivera Despina?", "Which is the best Li Ning badminton racket I can buy?", "Is there a proof in the Bible that Jesus was buried three days and nights?", "What would the world be like if nobody questioned authority?", "What is the chemical formula for sodium carbonate?", "What are the best night clubs in Dubai?", "What is an ideal timetable for studying 17 hours a day to prepare for IES/IAS?", "How can I import Excel data into MySQL?", "How can I predict my future?", "To what extent does the US constitution allow a state to implement full socialism?", "How do I delete thousands of old unread emails in outlook.com?", "Where can I buy cheap MLB jerseys in New York City?", "What are the best places to find themed fleece fabric?", "How can I delete my old YouTube account which I forgot the password?", "What data science and machine learning career opportunities are there at Google?", "What are some local laws in regards to nudity in Vermont, and how do they differ from nudity laws in Georgia?", "How is device management used in an operating system?", "Is timetravel possible?", "Why do I have to lie so much?", "How can I tag people in Facebook using Instagram?", "What is sales force automation?", "How is philosophical logic related to mathematical logic?", "Has anyone had any success using onion juice to regrow their hair?", "How do people hack into social media accounts?", "How do I start with SparkSQL? And what is the best tutorial available for it?", "When puppies are separated from their litter-mates at a young age, do the dog siblings recognize each other years later?", "Java (programming language): What are some recommended books, and online resources for learning Java for beginner, intermediate, and advanced programmers?", "What kind of algorithms or machine learning technology is used in Cortana, Google now and IOS siri?", "What is the way to verify that a Royal Enfield bike that's been delivered is brand new?", "What is the best beer?", "What are the creepiest paranormal experiences one ever had?", "How do I keep my teeth clean?", "How does doc2vec represent feature vector of a document? Can anyone explain mathematically how the process is done?", "What is the (closest) VSCO film equivalent of the VSCO Cam A6 preset?", "I'm in high school and aspire to be in the United Nations. What steps should I take in college and as a young adult to make my dreams come true?", "What are the molecular building blocks of lipids? What are their functions?", "Was Nietzsche gay?", "What's the biggest coincidence that has ever happened to you?", "I transferred my money from the US to my regular Indian savings account over a period of time. Will it be taxable in India?", "How do I get into McKinsey, BCG, Bain, if I am not from a tier-I management institute?", "Can you sign a document on behalf of someone else?", "\"How is Grendel defeated in \"\"Beowulf\"\"?\"", "I found the best site to help me out. Can anyone help to donate money for my further study?", "What kinds of hats do you have?", "Why is the 1960s considered a cultural decade?", "What is the best compliment you pass on a girl ever?", "How might have Bill Clinton and Hillary Rodham each turned out if they hadn't met at Yale Law School?", "How can I decide with whom do I go during New Year's eve? I have been asked by two women, and I like both of them?", "What are the benefits and drawbacks of living in a joint family?", "Can I get any private medical college in 207 marks?", "Do you think that the petition asking those in the electoral college to vote for Clinton will succeed?", "What does a hug at the end of a first date mean?", "Did Margot Robbie learn gymnastics just for her role as Harley Quinn?", "What are some ways to prove you love someone?", "How can I get rid of a pimple on my hand?", "How do I get hired at ArcelorMittal, Shell, Cairn Energy?", "What happens at high-school parties?", "What are the mechanics of cramps?", "\"I find the term \"\"Asian\"\" incredibly inaccurate since Indians, Israeli, Iranians, and Russians are also in Asia. Why is it that some people get called white or black, but the word yellow for people from East Asia is considered racist? What is a different term for them?\"", "What are the pros and cons of joining NUS High School?", "Is there a way to adjust the playback speed in the YouTube Android app?", "What is the best Android emulator for Mac?", "Which are some of the best universities in India to pursue a PhD?", "Who is the best doctor for hair loss treatment in bangalore?", "What tool is used to make this video ?", "How do I take good photos using Canon EOS 750D? Also suggest some good lenses for capturing Portraits & Landscapes using EOS 750D?", "Which combat sport currently generates more money: MMA (UFC) or Boxing?", "Which is the best book of physics for cracking aipmt?", "What are some good books for graph theory where one can understand advanced algorithms which can be used in competitive programming?", "What should I start learning with for a beginner, VHDL or Verilog, for a career in VLSI front end?", "What is the StumbleUpon app?", "How can I seek advice on when to play the lottery?", "Why is there multiple inheritance in C++ but not in Java?", "Is 401(k) a pension plan and how much does employer contribute to the 401(k)?", "What universities does Charles River recruit new grads from? What majors are they looking for?", "What is true value?", "How do you remove rat trap glue?", "Which is better for the GATE mechanical: MADE EASY or ACE Hyderabad?", "How do people kill themselves?", "What's the best motorcycle for beginners?", "Where can I find a willing mentor?", "How do I make my legs tighter?", "Is it possible to download a low resolution version of a high resolution image from a URL?", "What traffic laws in Singapore are particularly hard for foreign drivers to get used to?", "Hello iam from India how is I phone in chor bszaar?", "What is a girl's biggest turn off?", "What is the integration of ((cos²x) ÷ (1+tanx))?", "How do you delete a suspended Twitter account?", "Why would I want a Raspberry Pi?", "What made Undertale so great, and how do I make a game similar to it?", "Who provides best broadband internet in New Delhi?", "Why do we need two fluxes in a synchronous generator or a synchronous motor?", "What would happen if a person got merit out of the SSB? Will he have to give the SSB again?", "What's one easy way to waste a life?", "What should every UC Berkeley undergraduate do before they graduate?", "Fitness: What is the best cardio exercise to lose weight?", "What is wrong with the following sentences?", "How do I find the best web design agency in Ontario?", "What is the biggest problem with Africans on Quora?", "How much importance does the XLRI (Xavier Labour Relations Institute) give to work experience for their BM (Business Management) program?", "What oil is in oil change?", "\"Does \"\"ice and fire\"\" mean White Walkers and Dragons or Jon and Dany?\"", "Is it human nature to talk about others behind their backs?", "Who is the almighty Narayana? Lord Vishnu, Lord Shiva or Lord Krishna?", "Can I use 110V 60 hz CFL with 220V 50 Hz?", "Who is better between Dravid & Dhoni?", "Who is not giving toll tax?", "Why is PayTM being promoted by the BJP despite Alibaba, a Chinese firm, being its largest shareholder?", "What should you do after fainting?", "If hole is positive why is diode neutral?", "How can I get up early in the morning(8:00am)?", "What exactly is secret about the secret service?", "How much power consumes a 5hp 3 phase motor in 1 hour?", "I eat healthily, exercise daily. I wake up at 2-3 am and lie in bed awake unable to fall asleep for 2-3 hours. What can do so I STAY asleep at night?", "How much money can I make from a YouTube video with 5,000 views?", "What happens if citizens continue to use old 500 and 100 notes after Nov 9? We can still exchange those notes till Dec 30.", "Is IPC 279 a criminal case?", "I don't want marriage, children, or a typical life. I want to focus my life on meditation and knowledge. Which lifestyles could realistically suit me?", "Which is the best skin whitening cream in India?", "What are the advantages/disadvantages of a all-in-one network or separate devices for security?", "How much time does it take for a male to ejaculate during masturbation?", "Can a police detective go back to being a patrol officer?", "How do you make banana juice?", "What does anal sex feel like?", "I am travelling to Thailand from India. Which Currency should I carry with me. US Dollars or Thai Baht or Indian Rupee?", "I have a Samsung Galaxy Note Edge and Google Maps works only when the mobile data is on. How can I use Google Maps via WiFi?", "What is the best online course for studying basic computer science?", "What positive lessons can an atheist teach a religious person about being happy?", "Which car services are available in London, ON? How good are they compared to taxis and relative to each other?", "How can I blur the background and focus the object with an 18-55mm lens using a Nikon D3300?", "How many hours should I spend Quora each day?", "Is a BE CSE a good course?", "Is it worthwhile doing MBA from NITs?", "In all honesty, can a girl be attractive/sexy with a big wide nose?", "Is there any cure for Crohn's disease?", "Jay bazzinotti: do you have any pictures of yourself that you wouldn't mind sharing?", "How many people die of laughing each year?", "\"What are some of the best examples of \"\"life is ten percent what happens to you and ninety percent how you react to it\"\"?\"", "I got a job offer from a company and client is wells fargo.is it ok to join company? Is there any chances to move on payroll of wells fargo", "What movie website can I watch movies on without credit card information?", "How is a charity organization run and taxed in the US?", "How do I lie to my parents?", "What is a good web site for online chiropractic CE and chiropractic webinars?", "What are the best places (stores) to buy wedding dresses for men in Mumbai and Delhi?", "What are the essential skills that a Java web developer should have? Are jQuery and JSF some of them?", "How many calories should a 60 lb dog eat per day?", "What are the best budget rums?", "What are the best programming languages to learn today?", "Which is better for mechanical engineering, PDPU or Nirma?", "I am an international student in Ethiopia. I really want to apply for a summer program in the US? Where do you suggest I apply?", "Do VCs don't provide funding because of a young CEO running the company?", "What is a cloud?", "How do I renew msn premium?", "What would happen if Bill Gates bought three billion dollars worth of stock and then sold them all at once?", "How do unicellular organisms maintain homeostasis for survival?", "How do I cure a squinted eye with natural exercises?", "How can I book tickets on IRCTC using ICICI payment gateway?", "How should I start preparing for CAT?", "What material should I use to pass the C2150-202 exam?", "Why aren't even harmonics significant when compared to odd harmonics in power system?", "I am a structural engineer but I am confused whether I can do business analytics, I need some suggestions?", "Spotify: Do artists get paid for offline listens on Spotify?", "Why do we celebrate mother's day?", "Why don't people reply to my questions?", "\"Was Flipkart's \"\"Big Billion Day\"\" sale a success or a failure? Why?\"", "Do Americans see $1 the same way Indians see 1 Indian Rupee?", "What is the best climate to live in for permaculture?", "A poker hand consists of 5 cards. It will come from a well-shuffled deck of cards. What is the probability of having 4 Queens and any face card?", "Can I move my SIM card from one iPhone 4S to another?", "What is your review of www.buttermyresume.com?", "What does groupcommerce.com do?", "What's the nicest thing anyone has ever done for you?", "What hotel in Agra would be safe for unmarried couples, without the harassment of police, hotel staff, and moral police?", "What are all the Thai restaurants in Palo Alto?", "What is the structural difference between a protein and a peptone?", "What is full form of L E D?", "What was your favorite Halloween costume, and why?", "What are the best books on Data Structure to prepare for theory based exam?", "Which was your dream that you can not complete?", "Is it possible to create a Facebook ad campaign for a client that is not on Facebook?", "How old is too old to start medical school?", "Where can I learn to create a GUI using GTK on C/C?", "How can millennials better engage with church?", "What are some examples of saturated and unsaturated solutions?", "Does reality believe in philosophy more during the summer than it does in the autumn?", "What's it like in the navy?", "How do I find the even factors of a number?", "Are there any organs in the human body that can be regrown completely?", "How can I become less jealous?", "How can I find my look-alike?", "Is banking sector should be degitized?", "Am I getting enough required vitamins and minerals?", "What are the last things an astronaut does before going into space?", "How is the opportunity cost of economic growth in Israel determined?", "What is the use of hair in the nose, underarm & groin area?", "How did the 2008 financial crisis affect Germany?", "Why are Tamilians obsessed with fat heroines?", "MySQL: How to avoid reading stale data from Slaves? Do I always need to read from Master?", "How much percentile can one expect with 31-32 marks in XAT 2017?", "Could Donald Trump be a Democratic plant? Is he trying to help Hillary Clinton?", "Does the foreskin generally retract when the penis becomes erect?", "Why are fossil fuels unsustainable?", "What is the best way to get rid of pimples?", "Do many people still believe in alchemy, or is it only a few?", "Can I sell in USD with a EU bank account?", "Why does it make my wife upset when I try to convince her not to leave?", "What are the best writings/books on the psychology and personality traits of dictators?", "If he thinks sex is only to get a nut and would prefer to masturbate most of the time instead of having sex with me, should I break up with him? Or am I am taking this too personal?", "\"How do you say \"\"Do you have a passport and visa?\"\" in simplified Chinese?\"", "Why is Judaism seen as not only a religion but a culture and heritage?", "What should you do when your sugar cookie dough is too dry?", "How can I factorize [math]x^{10}+x^5+1[/math]?", "I have a two month old knee injury, how can I still continue to lose weight?", "Is neem oil good for hair?", "What is the value of the square root of (-1)?", "Am I eligible to apply for the UGC NET exam with a distance learning degree? Is there a specific list of colleges from which we can do distance learning degree that are accepted by UGC NET?", "How do I develop myself?", "My boyfriend wants to have sex with me . And I have mixed feelings regarding that. Should I do it or not ?", "What is the difference between statistics and machine learning?", "If the Game of Thrones houses were Hogwarts houses, which would be which?", "How can I get rid of thorn trees?", "What are the basic elements of a good business idea? How can you tell if this is worth your blood, sweat and tears?", "What do anti-ship missiles do differently from other missiles?", "I had been gifted BEATS headphones and they now aren't working, does no one repair these in bangalore? I don't have the warranty", "What's the best way to earn Rs 10000 in one month?", "What is the best running show under 150$?", "What are the best resources for learning about mobile app UI design?", "Is it true that Facebook pre-IPO employees don't have to pay taxes on their options and RSUs?", "What does a cold symbolize in poetry?", "What are the strongest majors in terms of job prospects and what are the weakest majors at Metro State?", "What is Trey Knight's first start-up?", "How do I get word count in Microsoft Word 2003?", "What do fashion brand manager do?", "What are the most irrelevant questions you came across? Ex- do the subway drivers know that they are carrying coins on the carriages in subway surfer?", "What colors make red?", "How can we find angel investors for my first startup in India?", "\"What is the difference between \"\"on time\"\" and \"\"in time\"\"?\"", "Which is the best digital marketing course?", "How do I have sex with a prostitute?", "I got C grade in hindi, class 10 FA-1 exam.What is the maximun cgpa i can score in final?", "Why was Katrina Kaif's Cannes debut a flop?", "How would your life change if your IQ dropped by 20 points?", "How websites earn? Does they get payed when website is visited by large number of people or when large number of visitors click on adds on the site?", "I am a medical student and want to make an app for patients. I want to use NLP to parse queries of patient. Where to start and which NLP to use?", "Are we actually immortal?", "What is the difference between resting heart rate and normal heart rate?", "Why do interior designers travel?", "I'm curious, is there any prophecy regarding Tom Riddle? The significant one like Harry, because Tom Riddle existence is kinda essential.", "Should I have a weasel as a pet?", "Does HIV only affect humans?", "If I view someone on LinkedIn and then block them, can they see I viewed them?", "When we see a mosquito flying in our car, is he actually flying at the speed of our car?", "Snooker: I know how to clear the colours on their spots - do I just need time to do it correctly?", "Why do media and politicians not deal with the core of the Kashmir issue instead of running around the fringes?", "How do Google employees that live in Seattle commute to the Google Kirkland office?", "What is the most resistant material on earth?", "I have lost my phone, so I deactivated the SIM-card. How can I delete my WhatsApp account?", "What are the advantages of the 2nd law of thermodynamics over the first law?", "Why is only one of The Chronicles of Narnia movies on iTunes?", "What are some of the best merchandising campaigns?", "How can I cast my vote via post?", "What are some contrasting aspects of Hinduism?", "Is there any mobile app through which I can download music?", "What are some major social faux pas to avoid when visiting Nigeria?", "How happy are you?", "How do I become a good writer from just being an avid reader?", "Where was Percy Spencer when he invented the microwave?", "What have you learnt from your life until now?", "How can I hire and incentivize interns to help with my new application if we don't have any revenue?", "If objects appear colored because all visible spectrum gets absorbed by it except the color it reflects, what is the color of a red tomato placed inside an iron box under earth? Is is colorless, like a Schrodinger's cat event?", "I've tried to confirm my email on Quora and it says I'll get an email but I don't get it. Why?", "What does a complete beginner need to know before getting into tennis?", "Why is a broken mirror bad luck?", "How can I join a startup company?", "Who invented the air conditioner?", "What universities does Parkway Properties recruit new grads from? What majors are they looking for?", "What does being a freelancer mean and what do they do?", "How would I find the equation of the tangent to x^2+y^2=100 at the point on the circumference with x coordinate 6 and a positive y coordinate?", "Can someone who developed schizoid personality disorder change?", "What are the legal separation laws in PA and how do they compare with the ones in Delaware?", "Will Bernie Sanders win California?", "Was the partition of India necessary?", "How much does it cost to book a good wedding venue?", "How do I reduce the pain of eyes?", "How do you treat a distended eardrum?", "Is the Bermuda Triangle literally mysterious?", "What is the technology stack of Vivino?", "Which is the best smartphone I can buy under Rs.6000?", "Why am I not getting any freelance jobs on Upwork?", "Resident Evil: Was the Hive built after Raccoon City?", "What is the difference between automotive and automobile engineering?", "What is the geographic distribution of Foursquare users?", "How are supernova and black holes related?", "Why do some white people hate non-white people?", "What is the next number in the series? 2,4,7,10,15,18,...", "How much would it cost to build the pyramids today?", "As a B.Arch student, what is the process for applying as a Junior architect in Singapore?", "Is it true that if British hadn't ruled Indian caste system won't be criticized?", "Should someone born an asian stay in Asia or try and make it in the West as a minority? Why?", "Why/How do some people become so ignorant?", "How can you determine the chemical formula for magnesium and copper sulfate?", "What does Denmark's economy depend on?", "\"For insurance purposes, what is \"\"an act of god\"\"?\"", "If I start to exercise a lot, stop eating and drinking, will I lose a significant amount of weight in a year?", "What do Italian mythical creatures represent?", "How is the movie Kaththi featuring Vijay and Samantha in the lead and directed by A.R. Murugadoss?", "How many international students in USA?", "What should you do if you test positive for opiates?", "How can I reset my phone number in irctc app when I have forgotten the password?", "What is the best way to cook pork?", "How can I stop thinking of a person?", "I am good programmer on H1b visa. What are some of the good employers that I should target to get green card?", "\"Is referring to an American house as a \"\"mansion\"\" considered derogatory?\"", "Is it worth pursuing a graduate degree in mathematics?", "What reasons can a landlord give for retaining a security deposit?", "How do you convert a PDF to a layered PSD?", "What is Explorate? How does it work and how is it different from other shopping apps?", "Why do people love the Linux operating system?", "What are the most popular publications in the 'investment'?", "Why is Colorado considered a swing state and how is it important to the elections?", "What are some examples of autotrophs or heterotrophs?", "My height is 5'6 and I'm 14 year old boy, my mom is 5'4 and my dad is 5'7. How tall will I be?", "How do l see who viewed my videos on Instagram?", "I completed my B.tech in 5 years. Can I get admitted into US universities?", "What did Ivanka Trump do at Wharton?", "What are the popular job search sites in India for Mid-Level Experienced MBA Professional apart from Naukri.com and iimjobs.com?", "Why wasn't The Vietnam war censored as much as WW I or II?", "What are the good oil and acyrlic paint brushes to buy online?", "Music Production: Can anyone tell me where can I find a free download for Nuendo 5?", "Do women in big cities like New York notice/feel attraction to guys on the street? I feel very few women notice me at all/make eye contact.", "What causes a wart to turn black? How can it be treated?", "Where can I find free Premiere Pro title templates?", "A girl kissed me on my lips after I REJECTED her proposal. What should I do, I am damn confused?", "How do I remove the smell of vomit from a mattress?", "What is the use of computer architecture and organization to a programmer?", "What is the meaning of Urdu word 'Mazhab'?", "How can one get an interview with one of the big four consulting firms?", "What do you mean by iPhone is disabled?", "What are the most amazing facts about a country?", "Will Lionel Messi keep scoring as many goals as he is scoring now, once Cristiano Ronaldo retires?", "Will YouTube replace TV in 5-10 years in the US?", "Can anyone get Bunsen burners?", "What is a recommendation for article spinner software?", "If A and B are two vectors, what is the angle between (A + B) and (A × B)?", "What type of app sells the most?", "Can Virat Kohli be a good captain?", "Why is a 3 pass heat exchanger not made?", "Why are Mountain states so Republican?", "How do I buy Instagram followers?", "What happens with a foreign startup at Y Combinator after the 3 month program?", "Why is Zeus so powerful?", "I want to attack Great Britain. How can I defeat the British Army?", "Indian Judiciary: Is it not necessary to have a transparent and unbiased appointment procedure of judges in lower courts, high courts, and the Supreme Court in view of controversy created by Justice Katju?", "How do we know the bright spots in the HST Hubble Deep Field are galaxies and not stars?", "What do volts and amperage mean?", "What is the cheapest toothpaste?", "Preparing for civil services but my parents are worried, they are asking me to join in some software company.I don't know what to do?", "Is religion mass delusion?", "Which is the best institute to study PGCFR course. Doing PGCFR after an mba or the same without an mba which option is more advisable?", "At what age do boys' height increases?", "What is the highest inhabitable mountain location in southeastern Turkey?", "Who owns the Internet?", "Is there a music app you can use that don't use data after downloading music?", "Who invented words?", "Why is Maharashtra the richest state in India??", "What are the different types of mechanical seal?", "Why is salt ground?", "Did Japan start WWII by bombing Pearl Harbor?", "What is your success story?", "Why are the contestants on Hell's Kitchen so cocky and nasty to each other, and are they actually like this or was it for good television?", "What is meant by dollar loss rate in terms of credit cards?", "I'm a +2 CBSE non-medical student. Is there any provision to give a single bio-paper instead of repeating +2 with all 5 subjects?", "Is it bad that I do not want to make a man leave his family because they have children, and I would rather them grow up with a father, as my dad left when I was young to be with another woman and we never had a relationship since then?", "What is the difference between using Turbo C and GNU C/C++?", "What does the following statement mean?", "Is it possible to code a desktop app that plugs on LinkedIn and sucks in the contact list, to be augmented withs tags and attributes locally?", "What would happen if I would lick a cat?", "Is he right person for me?", "Why doesn't Hayao Miyazaki make more movies?", "What causes a bad person to become a good one?", "What is the difference in raw sugar and refined sugar?", "How do I Get Started with my career in Ethical hacking?", "Are there any countries that have never been disturbed by a natural disaster? Which ones?", "Why did Germany lose WWII?", "How do nested loops work?", "What are some major social faux pas to avoid when visiting Syria?", "If the Modi Government is serious about fighting corruption, why doesn't it pass the anti-corruption Lokpal bill?", "How do I learn Java without knowing C or C++? Or what topics should I cover from C or C++ to learn Java?", "What's the difference between the emotions of a girl and a boy?", "What do Star Wars fans think of the Palpatine theory about Rey in Force Awakens?", "What is a good alternative to ZOLA Software?", "How do I present my answers in RMO?", "Japanese: Do westerners smell bad?", "What I should do to be enthusiastic?", "How was FDR elected four times when the limit was two terms?", "What can I do with a 6 Mbps for download and 1 Mbps speed for upload internet?", "What is the intro to Avatar: The Last Airbender?", "Is it good to take LIC endowment plan?", "How can I get job in MNC?", "What are some things new employees should know going into their first day at Education Realty Trust?", "How can I learn to be a great father for my future kids?", "Is Patanjali shares available in BSE or NSE?", "Like electric charge there are no magnetic charges in a magnetic field. This statement refers to Gauss Law, Faraday’s law, Newton law, All of above?", "What universities does Teletech recruit new grads from? What majors are they looking for?", "What are some common household acids?", "How does spin affect the trajectory of a body in motion, such as a bullet, ball, or missile? Do fluid profiles over spinning & non-spinning bodies differ?", "Do you ever have to leave your house?", "What are the 14 leadership principles of Amazon?", "How do I delete suggested users on Instagram?", "How can I avail business loan from Mudra Bank? What all documents I need to prepare for the same.", "How much does it cost to buy weed brownies?", "Who does not use Quora?", "Why has the UK retained the monarchy?", "Combination of SAP bi and fico?", "From where, I could get the exact on road price of all branded 35 to 50 HP farm tractors in India?", "Since terrorists believe what they're doing is correct, how difficult is it to interrogate them? What specific precautions/tactics are used?", "It bothers me to see a black man with a white woman but it does not bother me to see a white man with a black woman. Why might this bother me?", "What is the biggest question about food?", "Is there a smart way of property investment I could make for under 10K pounds anywhere in UK or Ireland or generally in EU?", "What are the most interesting products and innovations that Steel Dynamics is coming out with in 2016?", "Can I use the previous Manhattan GMAT guide (5th ed designed for 2013 official GMAT guide) in combination with the GMAT official guide of 2016?", "Who is the most favoured assassin in Assassin's Creed series?", "How many valence electrons does oxygen have?", "What is Esther Duflo like in person?", "What is the difference between a turboprop and a jet engine?", "\"By what process do humans \"\"remember to remember\"\"?\"", "What is your review of Adidas AG (company)?", "What does it feel like to get stabbed?", "How do I deal with close minded teachers?", "Is Socrates a hoax? Or not?", "Why should I jailbreak my iPhone?", "What is environmental context in design?", "Are hate crimes terrorism?", "Was it ever possible for Germany to win World War II?", "How many papers you cleared at once in engineering?", "How can I join merchant navy after B.Sc hotel management?", "How do I overcome my fear of work?", "Why do some artists tune their guitars a half or whole step down?", "Is it ok to lie and say you're in school for a master's degree on your resume when you're not?", "Do the Japanese have shame for the military crimes committed by their army in the 20th century (like the Nanking incident, for instance) like the Germans have shame for theirs during World War II?", "How do you go about integrating a video player like Vine / Instagram on iOS?", "Inserted a m4V movie using the video tag. Plays in chrome and Safari but not in Firefox. I get no error message saying that it is not supported. Just a gray box. Any ideas why?", "Jobs for mechanical engineer after masters in australia?", "What happens if someone overdoses on cetirizine hcl using about 26 pills?", "How do I write an irresistible subject line for a cold email?", "I have a crush on a co-worker but we don't work in the same team and have no communication whatsoever. How can I ask her out without coming off as creepy or spoiling work place relations?", "How quality check is done in e retails?", "How do snails poop?", "Which Indian movies meet Hollywood standards?", "Where is the Baraka River located, and how does it compare to the Yellow River?", "What work experience will get someone with an engineering background to an M7 business school?", "Should I choose a company with low pay but nice colleagues or high pay with office politics?", "Can I take industrial training after b.tech?", "\"What is considered to be an equivalent of \"\"The Feynman lectures on Physics\"\" for Logic?\"", "How is internal mobility at Two Sigma?", "What was the best dish you have ever been served on board an airplane?", "What can I do to become an automobile engineer, after graduation in mechanical engineering?", "How many bones would it take to gnaw off my own shinbone?", "Why are there different blood types?", "How do I stop fantasizing about girls?", "What is the equation of lines having slope -1?", "What happens when systolic and diastolic pressures are close together?", "What are some things new employees should know going into their first day at HD Supply?", "How have I motivated others?", "How can we prepare for an IIT-JEE just by self-studying?", "How do I start the preparation for civil service examination from ground zero?", "How can I get in shape quickly?", "Who likes Miley Cyrus?", "When should you downvote a comment?", "How much can I make playing poker?", "What are the objectives of smart city plan?", "How many hours do you spend playing clash of clans?", "I'm not an IITian and graduated in 2016. I have CGPA around 8.4 and pretty good scores in X and XII. Can you advice considering following details?", "What has Barack Obama done that gets so many people angry?", "Where can I eat authentic Italian food in London?", "Can Evernote or OneNote be used to substitute paper lab notebook that is legally valid for intellectual property protection purposes?", "Why does Quora allow people to turn off comments?", "For how long a dog can stand on his back legs?", "How do I make life more interesting?", "What is junk food?", "What is the most efficient way I can learn Texas Hold’Em Poker?", "How can a person philosophically explain the difference between the words subjectivity and objectivity?", "Should I work for McKinsey or Google?", "Can the Yamaha Clavinova CVP 709 GP do everything a Tyros 5 can?", "Romania: What are some key characteristics of Romanian people?", "How do I ship household utensils from Chennai, India to Herning, Denmark at the lowest cost?", "What does it feel like to go from skinny to ripped?", "Mean ± SEM or Mean (SD)? Which is the best use for presenting data in graphical or tabular form?", "How many Android phone users receive SMS from their banks in India?", "Which trek is better for a first timer: Dzongri Trek or Sandakphu (with Phalut) trek?", "How did being aware of politically incorrect phrases rise in popularity in the U.S.?", "How do I stay alive hungry?", "Where can I find Dishonored in Pokémon GO ?", "How Many days it takes to open a SBI account?", "What can a Chinese speaker do to become fluent in English?", "How can I create a blog about motivation and self-improvement?", "Is jailbreaking an iPhone safe?", "Why does my puppy seems depressed?", "How can I use avocado oil for hair growth?", "Which is the best business with low investment and high profit?", "What is address of line 1 and line 2?", "What are some ways to train the human mind to resist certain temptations?", "How do I calculate a semester percentage from SGPA in ITER?", "How are Android apps developed? What is the programming language used?", "If the members of NITK Electrical and Electronics batch 2016 were Game Of Thrones characters, who would be whom?", "How could I gain weight in a healthy way?", "What makes a man attractive to women?", "Can we use pneumatic motor to generate electricity somehow?", "What is the difference between Vamana Jayathi and Onam?", "My startup is currently in the pre-launch, product development stage. We are making projections for our marketing campaign. Our budget is $1,500 to start off for organic tactics. How do I get the CAC?", "Do diets cause depression? If so, how?", "How do people die?", "Why do lawyers run the world and not engineers?", "Is Made Easy handwritten notes enough for the GATE exam?", "How do I spend a day fully?", "How do I cook soup?", "What are the best books for Data Structures (No Algorithms)?", "Why doesn't an IES officer get security like an IAS officer?", "Is there a site where you can safely synchronize and archive all your internet activity, emails, chat, Android and Windows app data? A storage service that doesn't have the option to be deleted?", "Why does Redfin not provide an API?", "What should be the beam depth and column size for 6 metre span between the columns?", "Is it useful to see a life coach regularly?", "How are prokaryotic and eukaryotic cells different?", "How are Paper Boat juices health wise compared to Real and Tropicana?", "What is the role of youth in Indian politics?", "Should India use Army against maoists? Why?", "How can I become fluent in English?", "I need help for me and my doyfreind?", "Is Punjabi also an official language of Canada?", "What is Palm Pre?", "Are there any other special exams other than engineering or medical exams after 2nd year of pre university?", "What type of government does Guatemala have? How does it compare to the one in Venezuela?", "Do I need a type of degree to help overweight teens reach a healthy weight?", "How do I get pass the awkwardness of sitting alone at lunch?", "How can I stop being scared of talking to people?", "Which one is the best micron accuracy 3d scanner for industrial design?", "Is there a reason why it is beneficial to follow people or be followed on Quora?", "If Einstein's theory of general relativity says that gravity is the result of curved spacetime and that matter, such as a planet, has no force whatsoever that pulls other matter towards it, how are we able to walk on the Earth without falling off? Is there a force pushing on us?", "What is the etymology of 夏天?", "A convex lens with a focal length of 20 cm is placed in front of a convex mirror with a focal length of 7.5 cm. A luminous object is placed in front of the convex lens at a distance of 40 cm from it. What is the distance between the mirror and the lens to get the object's erect image coincident with the object?", "What are the best places to visit in Kerala?", "How do I approach a girl without failure and fear of rejection?", "How can you prove e^πi+1=0?", "How do you evaluate the book Polly Anna?", "Can you delete someone's picture on Instagram?", "I have blocked someone on Instagram but I still appear on their following list. Can they have bypassed the block feature and still can see my profile?", "\"How is the word \"\"scornful\"\" used in a sentence?\"", "What type of government does Turkey have? How does it compare to the one in Japan?", "Why doesn't honey go bad?", "How does Ally bank offer higher rates than other online banks?", "How many men are needed to take down a chimpanzee bare-handed?", "Is class X score important for IIM's IPM?", "What's the street value of A332?", "Does a car heater use gas?", "Why don’t textbooks in India tell our children about the sacrifices their ancestors made to retain and protect the culture of the nation?", "What is the difference between an L1 and an H1-B visa?", "Who is the best batsman of all time?", "Could Apple and Samsung ever merge?", "Will Jimmy Fallon ever have Jimmy Kimmel on his show?", "Would an external USB 3.0 CD/DVD drive be faster than an external USB 2.0 CD/DVD drive?", "Are fate and destiny interconnected", "We are planning to launch a website. What are good Beta Tester Group in Facebook?", "Is white a colour?", "Which is the best online dating apps?", "What is the most meaningful/interesting thank you note you've ever received after a design interview?", "Where can I find boohoo.com voucher codes and promo codes?", "Coming from a lower-middle class family, how to survive financially in London while studying?", "What are customer service functions?", "Who has been the most worldly US President?", "What are the best ways to lose weight?", "Why do most of the motels have a connecting door between the rooms?", "How do I get the fields in dimension from other data source in tableau?", "My doctor has prescribed me with MDD XR 50 (desvenlafaxine) a few months ago for an anxiety disorder and depression. Now I want to stop it. But once I skip it, the next day I am vomiting, have irritation and indigestion-like symptoms. What should I do?", "How can you determine the chemical formula for calcium nitride?", "What is the age of consent in Washington?", "What is the best diet for a growing decathlete?", "Why would a man you love leave you and want you to hate him?", "When does a woman have the highest chance of getting pregnant? Is this before periods, during periods or after periods?", "Is Robert Frost related to THE Robert Frost?", "What would you do if your teenager were in an open relationship or a polyamorous relationship?", "What does a near death experience feel like?", "What is ‘Edgware’ and how does the lifestyle compare to the London Borough of Brent?", "I am a big fan of Murdoch Mysteries. What are the best history books about 19th and early 20th century Toronto?", "What are the best pages to follow on Facebook?", "How can I hack my husbands cellphone?", "Is DY Patil Navi Mumbai a good college?", "What's the best Bitcoin exchange?", "How can I search for pending patents that have not been issued yet?", "\"Fragrances: What is the difference between \"\"perfume\"\", \"\"eau de toilette\"\" and \"\"cologne\"\"?\"", "I don't like sale?", "How do numbers help your life?", "What are the most popular pizza toppings?", "Was the Republican Congress too tough on President Obama?", "\"How do I stop someone when they tell everyone what I told is \"\"bullshit\"\"? I didn't lie.\"", "Who are the best manufacturers of white label effervescent vitamins in Europe?", "How do I get people to donate things for a fundraiser?", "Is Income tax audit required?", "How do I change my Quora profile picture?", "How do I search the deep web?", "Why would a magnetized particle rotate in a magnetic field?", "Why is engineering more favoured?", "How do I deploy web application in a private cloud open nebula?", "Is there freedom of speech on Quora?", "What is the hardest part about being a teacher?", "What are the functions of software asset management?", "How do I give a creative speech?", "How rat poison kill humans?", "What do you expect your last thought will be?", "What questions shouldn't be answered?", "What are some interesting smartphone hacks?", "Which books/study materials should I follow for GATE (mechanical) if I am preparing on my own without any coaching?", "Who is the oldest person to play soccer?", "Is FIFA a good place to work?", "Am I the only one who prefers Monica and Chandler's relationship compared to Ross and Rachel's on Friends?", "Why are people so obsessed with boobs?", "Which are the best war fiction books?", "I want to do a project to boot my Nexus 7 tablet with Android and Linux with a few apps of my choice. How can I do this?", "Can you suggest me 15 minutes workout for widening chest?", "Is online coaching better than going for institutes like TIME and PT Education for CAT preparation?", "I have done MBA in international business and having 1.5 years of experience I need job out of India?", "Did the descendants of the leading Nazis officers change their last names?", "Where can the approach of tinkering find its applications? Apart from learning?", "What insects undergo incomplete metamorphosis?", "I'm in the UK and 4 months before I was made redundant someone was employed to do my job. Do I have a legal right to unfair dismissal?", "What are some examples of polymeric macromolecules?", "What is the most unusual question ever asked on Quora?", "Can I get in trouble for watching movies on YouTube that are not public domain/GNU/Fair Use?", "\"What is the meaning of \"\"extending the literature on something\"\"?\"", "What is the best Google Chat client for Mac OS X?", "I am on an H1B visa and based on the new rule I am planning to apply for an EAD for my spouse who is on H4. What would happen to my spouse's EAD application if I change employers and transfer my H1B to a new employer, (which also means my spouse will get a new H4) before the EAD is approved?", "How can you do scientific notation on a TI-84 calculator?", "What caused the Songhai Empire to fall?", "Did Marissa Mayer fail at turning Yahoo around?", "Someone has made a fake Instagram profile of my friend. Should we be worried? How can I find out who did it?", "What is the creepiest thing that society accepts as a cultural norm?", "How do you turn on touch screen on a Lenovo Laptop?", "What fruit would you consider to be like an hourglass body shape?", "How much can an Android App with 50,000+ downloads earn from ads only?", "What are some ways to get famous on Vine?", "What is your favorite movie of all-time?", "Why did Western media and USA rarely released /print the picture of Vietnam aggressive reclamation in South China Sea as they did against China?", "Harvard College Courses: What is general shopping advice for Sociology classes?", "How did GoPro gain initial traction?", "For my first web app which framework should I choose?", "What's awesome about being Pakistani?", "How do you type the plus and minus symbols in Excel?", "How do you describe yourself in an interview?", "How is Vistara Airlines different from any other airline?", "Can you get cheese on Five Guys fries?", "What is the difference between a rotary engine and a piston engine?", "What is freezing point of petrol?", "How long do you have to run a car engine to charge the battery back to the point it was at before starting the car?", "Is IT field in India going to drop because of Trump's new policies?", "Where do I learn Tanjore painting in Tanjore?", "How does one get scabies?", "What are the uses of imagery?", "Can you see who views your Instagram?", "What are the most pristine islands in Indonesia?", "How can I become your boyfriend?", "Benefits of NIOS board from Karnataka?", "What's the difference between a V4 and V6 engine?", "How can you tell the difference between a placebo effect or a real high from weed?", "Is Searchline database pvt ltd true or fake?", "Can I delete someones IG account?", "Is it bad to date a married man?", "Whose stand is more authoritative: that of a 'Sheikh' or that of a 'Mullah'?", "What is kitchkarma.com?", "What is the importance of atlas in mbbs & which atlas should I prefer? I am 1st prof student.", "Why do I feel so sad and sorrowful when I see happy couples?", "What are the best strategies for preparing for the bar exam?", "If my sister dies, does that make her husband no longer my brother-in-law? If he still is considered my brother-in-law, what if he remarries?", "Is there any real way to earn Rs. 5,000 - 10,000 per month in India working a few hours per day online?", "If Elon Musk wants to colonize Mars as a backup to save humanity, why not colonize the moon?", "Is it normal to have cheated in a relationship even though you wouldn't tolerate that behavior from your partner?", "What is the best way to remove pubic hair permanently?", "Does it cost to make a police report?", "What are some examples for physics school project acknowledgements?", "What are the nuances of reviewing a film? What all aspects should the review contain?", "How does someone become a medical writer?", "Why do dogs bark at rag-pickers?", "What is the biggest injustice you have ever faced?", "How can I clear IBM first round of placement? What is the cut off for first round ?", "What are some things new employees should know going into their first day at Cisco?", "As an atheist, you wake up in hell and in time realise God really exists. Whom do you ask for help?", "Meaning of pent?", "Why do I miss my home?", "Why are humans cruel?", "What is the purpose of philosophy on an educational level?", "How can I get the notes for Kannada literature for UPSC Mains exam?", "Is it too difficult for a Canadian immigrant to own an NFL team, unlike American citizens?", "Swedish HR is asking me to sign an employee contract which my reporting manager has not yet signed. Should I request them to sign the contract first?", "India: I have made a helicopter from tractor engine and is ready to fly, how do I convince my parents that I want to fly it?", "What's the most romantic thing?", "Cost estimation of 400 kV quad line?", "What are the 03 things that man live in HaNoi most interested?", "What types of body language is this woman displaying?", "What is a composite primary key in a relational database?", "What are some good guitar compressor pedals?", "Search Engine Optimization (SEO): How can I find out why my site has shot to the top of Google without even doing anything?", "Is there another way of counting the formula of surface area for a triangular prism other than the normal way? (a unique way)", "Why don't my headaches go away after a few days?", "How can I lose weight, I am 16 years old teenager?", "How do I link my MyBoy! Emulator to visual boy advanced? Is it even possible?", "As the stock price of Facebook currently is 77$ and in starting they offered it for around 35$ (back in May'12), if I had brought 10 shares back in 2012, how much profit I would have made till now?", "Was Season 4 Episode 10 of Game of Thrones the worst episode in the show yet?", "How should i find a good job?As i am so much confused whether to go for preparation of exams or job hunt.", "What are some good birthday gift ideas for my girlfriend?", "How do I report a personal line of credit on my taxes?", "Is time and space an illusion?", "Which product is attractive as Christmas presents? I want to custom some products as little Christmas presents. Which product can attract young people? I'm going to wholesale some customized electronics online, and sell them at Christmas.", "Can Donald Trump ban Muslims if he gets elected?", "What are the best gifts for a boyfriend on his Birthday?", "What are some major social faux pas to avoid when visiting Norway?", "How can you approach a strange girl in India and eventually ask her out?", "What is the difference between direct and indirect elections?", "What are some good ways to make a little extra money?", "Can I pay my HDFC credit card payment thru ICICI credit card?", "Which is better to live in, Mumbai or Manchester?", "What are common things that happen in movies that can actually happen in real life?", "Which are the most difficult mathematical questions ever asked in an entrance exam?", "Should the U.S. mortgage interest tax break be modified in some way given that it may encourage people to buy bigger, more expensive houses than they otherwise would?", "What is the government of Assam doing for the Assam floods?", "How did Voldemort progress into his final physical form from when he was a child?", "Which song is linkin park's best song?", "How do you get a girl to like you?", "Why do dogs chew their toys on people?", "What role did Japan play in World War One?", "What is the European Union?", "Why most people do not prefer DySP in MPSC?", "Has the de duplication of the Aadhaar data base done?", "Find the point on the curve y = x^2 - 2x + 3 where tangent is parallel to x axis.", "How much did SAT exams cost as of 2002 in Nigeria?", "Do employees at L-3 Communications have a good work-life balance? Does this differ across positions and departments?", "Why can't Yahoo allow me to type in a name or word and block all emails that have that name/word in them?", "My flight is from Manglore to Mumbai and Mumbai to Delhi T3 at mid night. Can I stay till 6 am by the time my receiver will pick me from the airport?", "What are the most interesting products and innovations that Level 3 Communications is coming out with in 2016?", "I'm currently pursuing B.E. (IT) at NSIT, Delhi, want to pursue MS from MIT/Stanford/other top American college. I am a sophomore. What should I do?", "I am trying to find a meaning to life, to give a purpose to my life. Is there any book that can help me find my answer, or at least give me the tools?", "If you get to meet God for 5 minutes, what is that one question you would ask him and why?", "I am basically from Msc cs.I did my project with .NET . But sincerely I dont know much about my project & about .Net. What should I do now? .I am interested to learn anyone of Android, php & java. As a fresher, which one of the above do you suggest me.", "Where can I find a copy of the Ashtavakra Gita in Hindi or Sanskrit?", "The U.S didn't really get involved in WW2 because of the Holocaust right? They didn't even care about how blacks and other races were treated at home.", "How many Facebook shares does Microsoft own?", "How do you find the angles of a triangle?", "Why do I always feel like a loser?", "\"What is the Urdu word for \"\"composition\"\"?\"", "A point charge q is located at a distance l from the infinitely conducting plane. What amount work has to be performed in order to slowly remove this charge very far from the plane?", "What are some historical events in 1998?", "How can one fly in their dreams?", "How much do partners at law firms get paid?", "Is it fun for movie stars to kiss other movie stars on-screen?", "I am 14 and can jump 5.30m/17feet in running long jump is that good?", "What does Alex K Chen think of brown vs. white rice?", "Is it too weird if I ask to bring my own PC to the company for programming?", "What are the best recipes using tomatoes?", "Do employees at Realty Income have a good work-life balance? Does this differ across positions and departments?", "I just found out after 5 years of marriage that my wife never really loved me. We had a daughter together as well, but still she feels nothing towards me. How do I handle this?", "What is the easiest way to crack gate?", "How did Jeremy Lin react the first time he heard about Linsanity?", "What universities does Kite Pharma recruit new grads from? What majors are they looking for?", "What region is the spiciest Mexican food from?", "I lost my Moto G mobile yesterday. I know the IMEI number.", "How can I meet beautiful women?", "To what extent can meditation change who you are?", "Can I book first class AC train ticket for one person in India?", "What is your biggest sexual secret?", "Who is Imam Mahdi?", "How can I make money online in Belarus?", "What do you do if your Maytag Washer stops working?", "What are the most credible news sources?", "How can I retrieve deleted photos from Mac OS X El Capitan?", "How do I deal with my really obnoxious co-worker?", "What are the Navy SEALs responsibilities?", "In your AI post, there isn't much of an intermediate step between AGI and ASI. Will we ever see the kind of human-like AI seen in movies (AGI