-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
babc72c
commit 80d4333
Showing
21 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"Subjects": [ | ||
{ | ||
"Name": "Advertising, Personal Selling and Salesmanship", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Advertising, Personal Selling and Salesmanship" | ||
}, | ||
{ | ||
"Name": "Banking and Insurance", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Banking and Insurance" | ||
}, | ||
{ | ||
"Name": "Business Mathematics and Statistics", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Business Mathematics and Statistics" | ||
}, | ||
{ | ||
"Name": "Company Law", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Company Law" | ||
}, | ||
{ | ||
"Name": "Corporate Accounting", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Corporate Accounting" | ||
}, | ||
{ | ||
"Name": "Cost Accounting", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Cost Accounting" | ||
}, | ||
{ | ||
"Name": "E Commerce", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/E Commerce" | ||
}, | ||
{ | ||
"Name": "Finance for Everyone", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Finance for Everyone" | ||
}, | ||
{ | ||
"Name": "Financial Markets and Institutions", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Financial Markets and Institutions" | ||
}, | ||
{ | ||
"Name": "Fundamentals of Investment", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Fundamentals of Investment" | ||
}, | ||
{ | ||
"Name": "Hindi A", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Hindi A" | ||
}, | ||
{ | ||
"Name": "Hindi B", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Hindi B" | ||
}, | ||
{ | ||
"Name": "Hindi Bhasha aur Sahitya ka Udbhav aur Vikas", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Hindi Bhasha aur Sahitya ka Udbhav aur Vikas" | ||
}, | ||
{ | ||
"Name": "Human Resource Management", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Human Resource Management" | ||
}, | ||
{ | ||
"Name": "Interlocution to Political Theory", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Interlocution to Political Theory" | ||
}, | ||
{ | ||
"Name": "International Business", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/International Business" | ||
}, | ||
{ | ||
"Name": "Investing in Stock Markets", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Investing in Stock Markets" | ||
}, | ||
{ | ||
"Name": "Statistical Software - R", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/Statistical Software - R" | ||
} | ||
|
||
|
||
|
||
] | ||
} |
Binary file added
BIN
+934 KB
Question Papers/B.Com. Programme/Advertising, Personal Selling and Salesmanship/2023.pdf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.81 MB
Question Papers/B.Com. Programme/Business Mathematics and Statistics/2023.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+729 KB
Question Papers/B.Com. Programme/Financial Markets and Institutions/2023.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+382 KB
Question Papers/B.Com. Programme/Hindi Bhasha aur Sahitya ka Udbhav aur Vikas/2023.pdf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+435 KB
Question Papers/B.Com. Programme/Interlocution to Political Theory/2023.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
|
||
|
||
|
||
|
||
def list_folders(): | ||
# Get the current directory | ||
current_directory = os.getcwd() | ||
|
||
# List all items in the current directory | ||
items = os.listdir(current_directory) | ||
|
||
# Filter out only the directories | ||
folders = [item for item in items if os.path.isdir(os.path.join(current_directory, item))] | ||
|
||
return folders | ||
|
||
if __name__ == "__main__": | ||
folders = list_folders() | ||
print("Folders in the current subfolder:") | ||
for folder in folders: | ||
a = '''{{ | ||
"Name": "{}", | ||
"Solutions": "https://www.dhruvbadaya.in/CourseCode/Question Papers/B.Com. Programme/{}" | ||
}}''' | ||
print(a.format(folder,folder)+",") | ||
|