Skip to content

Commit

Permalink
Updated Bcom Programme 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
lightlessdays committed May 5, 2024
1 parent babc72c commit 80d4333
Show file tree
Hide file tree
Showing 21 changed files with 106 additions and 0 deletions.
79 changes: 79 additions & 0 deletions 6.json
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 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 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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
27 changes: 27 additions & 0 deletions Question Papers/B.Com. Programme/main.py
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)+",")

0 comments on commit 80d4333

Please sign in to comment.