-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq_data.py
More file actions
86 lines (86 loc) · 3.82 KB
/
faq_data.py
File metadata and controls
86 lines (86 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
faqs = [
{
"id": 1,
"question": "What is CodeAlpha?",
"keywords": ["codealpha", "company", "platform", "internship", "about", "what"],
"answer": "CodeAlpha is an internship platform offering hands-on training in AI, Web Development, and more. Website: www.codealpha.tech"
},
{
"id": 2,
"question": "Who is the founder of CodeAlpha?",
"keywords": ["founder", "owner", "created", "who", "started", "ceo"],
"answer": "The founder information isn't in the internship document. Please contact services@codealpha.tech for details."
},
{
"id": 3,
"question": "Is there any fee for the internship?",
"keywords": ["fee", "cost", "price", "free", "paid", "money", "payment", "charge"],
"answer": "The internship is completely free. For certificate fees, contact CodeAlpha at services@codealpha.tech or WhatsApp +91 9336576683."
},
{
"id": 4,
"question": "Is there a certificate fee?",
"keywords": ["certificate fee", "certification cost", "pay for certificate", "certificate price"],
"answer": "Certificate fee details aren't specified. Contact services@codealpha.tech or WhatsApp +91 9336576683."
},
{
"id": 5,
"question": "How long is the internship?",
"keywords": ["duration", "length", "time", "months", "weeks", "long", "period"],
"answer": "The internship typically lasts 1 month, but you can complete tasks at your own pace."
},
{
"id": 6,
"question": "How many tasks do I need to complete?",
"keywords": ["tasks", "projects", "complete", "minimum", "count", "how many"],
"answer": "You need to complete minimum 2 or 3 tasks to get the internship certificate."
},
{
"id": 7,
"question": "Will I get a certificate?",
"keywords": ["certificate", "certification", "proof", "document", "award", "get"],
"answer": "Yes, you will receive a completion certificate after finishing 2-3 tasks successfully."
},
{
"id": 8,
"question": "How to submit my tasks?",
"keywords": ["submit", "submission", "form", "upload", "send", "where"],
"answer": "A submission form will be shared in your WhatsApp group. Submit only through that form."
},
{
"id": 9,
"question": "Where to upload my code?",
"keywords": ["github", "upload", "code", "repository", "repo", "host"],
"answer": "Upload to GitHub in a repository named: CodeAlpha_ProjectName"
},
{
"id": 10,
"question": "What programming languages can I use?",
"keywords": ["programming", "language", "python", "javascript", "html", "css", "code"],
"answer": "For AI tasks, use Python. For web development, use HTML, CSS, and JavaScript."
},
{
"id": 11,
"question": "How to contact CodeAlpha support?",
"keywords": ["contact", "support", "help", "email", "whatsapp", "phone", "reach"],
"answer": "Email: services@codealpha.tech | WhatsApp: +91 9336576683 | Website: www.codealpha.tech"
},
{
"id": 12,
"question": "Do I need to post on LinkedIn?",
"keywords": ["linkedin", "post", "share", "social media", "tag"],
"answer": "Yes. Share your internship status on LinkedIn tagging @CodeAlpha."
},
{
"id": 13,
"question": "What happens if I submit only 1 task?",
"keywords": ["one task", "single task", "incomplete", "only 1"],
"answer": "Submitting only one task is considered incomplete and certificates will not be issued."
},
{
"id": 14,
"question": "Can I choose which tasks to do?",
"keywords": ["choose", "select", "pick", "which tasks", "any"],
"answer": "Yes, complete any 2 or 3 of the 4 tasks listed in your domain."
}
]