RRB NTPC Recruitment 2024
RRB NTPC invites Online applications for the recruitment of 11558 Non-Technical Popular Categories (NTPC)
Read MoreRRB NTPC invites Online applications for the recruitment of 11558 Non-Technical Popular Categories (NTPC)
Read More1. Protestantism (Protestant Work Ethic)
Economic Influence: Max Weber’s theory of the “Protestant Work Ethic” suggests that Protestant values, especially Calvinism, helped fuel the development of capitalism in Western Europe. Hard work, frugality, and self-discipline were seen as virtues that led to economic success.
Impact: Countries with strong Protestant traditions, such as Germany, the UK, and the US, have historically seen significant economic growth.
1. AI-Driven Content Creation
Tools like ChatGPT, Jasper, and others are helping bloggers create high-quality, optimized content quickly. AI can assist with topic generation, SEO, and even full article writing, streamlining content production.
6th STD :-
நிருமித்த – உருவாக்கிய
விளைவு – விளைச்சல்
சமூகம் – மக்கள் குழு
அசதி – சோர்வு
சுடர் – ஒளி
ஆழிப்பெருக்கு – கடல்கோள்
மேதினி – உலகம்
திராவிட மொழிகளின் ஒப்பிலக்கணம் – ராபர்ட் கால்டுவெல்
மொழிபெயர்ப்பும் ஒலிபெயர்ப்பும் – மணவை முஸ்தபா
மாணவர்களுக்கான தமிழ் – என். சொக்கன்
கண்ணுக்குப் புலப்படாத தண்ணீரும் புலப்படும் உண்மைகளும் – மா. அமரேசன்
அழகின் சிரிப்பு – பாவேந்தர் பாரதிதாசன்
“திருவள்ளுவனைப் பெற்றதால் பெற்றதே புகழ் வையகமே” – பாரதிதாசன்.
“திருக்குறளில் இல்லாது இல்லை, இணை இல்லை முப்பாலுக்கு இந்நிலத்தே” – பாரதிதாசன்.
மலையத்துவசன் மகன் ஞானப்பிரகாசம் என்பவர் 1812-ல் திருக்குறளை முதன் முதலில் பதிப்பித்து வெளியிட்டார்.
a. Create a list called happy with the elements “laughter”, “ joy”, “success”, “smile” and
“pleasure”.
b. Lowercase the 4th element.
c. Reverse the last element
d. Capitalize the first element.
e. print first three elements.
a. Make a multilevel dictionary called life. Use the strings “animals”, “plants” and “others”
for the topmost keys.
b. Make the “animals” key refer to another dictionary with the keys “cats”, “dogs”,”rabbits”.
c. Make “cats” key refer to a list of strings with the values “rosy”,”cuty”,
“whity”, “blacky”
d. Make all other keys refer to empty dictionaries.
e. print the top level keys of life.
f. print the keys for life[“animals”]
g. print the values for life[“animals”][“cats”]
a. Use a list comprehension to make a list of even numbers in range(10)
b. Use a set comprehension to create a set odd from odd numbers in range(10)
c. Use a dictionary comprehension to create a dictionary squares. Use range(10) to return the
keys and use the square of each key as its value.
Write a Python class Employee with attributes like emp_id, emp_name, emp_salary, and
emp_dept and methods like calc Salary, assign Dept, and emp Details.
Sample Employee Data:
"AKASH", "E7876", 50000, "ACCOUNTING"
"JAMES", "E7499", 45000, "RESEARCH"
"MANOJ", "E7900", 50000, "SALES"
"SRUTHI", "E7698", 55000, "OPERATIONS"
Use assign Dept method to change the department of an employee.
Use emp Details method to print the details of an employee.
Use calc Salary method takes two arguments: salary and hours_worked, which is the
number of hours worked by the employee. If the number of hours worked is more than 50,
the method computes overtime and adds it to the salary.
Overtime is calculated as following
formula:
overtime = hours_worked - 50
overtime amount = (overtime * (salary / 50))
Write a Python class Bank Account with attributes like account_number, balance, date_of_opening
and customer_name, and methods like deposit, withdraw, and check_balance.
Use Inheritance to do additional banking operations.
Use NumPy and experiment all methods with a dataset.
Use Pandas and perform machine learning techniques on a dataset.
Use Pandas and Matplotlib for creating various charts and graphs.
Program's List