A Computer Engineering student passionate about C++, Cyber Security, and Artificial Intelligence. I aim to master C++ and explore how AI interacts with information security. Curious by nature β I dig deep and avoid surface-level answers.
- Computer Engineering β Damascus University (ongoing)
- Entrepreneurship β University of the People (ongoing)
- Various Coursera specializations
- Advanced OOP course with Dr. Mohammed Abu Hadhoud
- C++ & Python
- Cyber Security
- Artificial Intelligence
- Object-Oriented Programming
-
Deep analysis of malicious code β Studying and analyzing how malware operates and detection methods.
-
Building defensive and offensive cyber tools β Developing security tools for research and learning purposes.
-
Mastering Object-Oriented Programming β Through advanced projects and practical applications.
-
Understanding AI's role in information security β Exploring the intersection of these two important fields.
- C++: Advanced object-oriented programming and system development
- Python: Data processing, automation, and security scripting
- C: Low-level programming and system architecture
- Malware Analysis: Reverse engineering and behavior analysis
- Security Tools: Network security and intrusion detection
- Penetration Testing: Application security and vulnerability assessment
- Machine Learning: Security applications and pattern recognition
- Data Processing: Analysis and visualization
- AI Security: Exploring AI vulnerabilities and defenses
-
Multiple Coursera Courses β Completed various specialized courses in programming, cybersecurity, and artificial intelligence.
-
Deep practical understanding of OOP β Developed expertise in object-oriented programming through real projects and practical applications.
-
Built and shipped academic & personal projects β Developed complete projects from concept to implementation, demonstrating full software development lifecycle skills.
- Arabic β Native
- English β Intermediate
#include <iostream>
#include <string>
class Nazeer {
private:
std::string passion = "C++, Cyber Security, and AI";
std::string university = "Damascus University";
bool isLearning = true;
public:
void displayInfo() {
std::cout << "Name: Nazeer" << std::endl;
std::cout << "Studying at: " << university << std::endl;
std::cout << "Passionate about: " << passion << std::endl;
}
bool isStillLearning() {
return isLearning;
}
};
int main() {
Nazeer me;
me.displayInfo();
if (me.isStillLearning()) {
std::cout << "Always learning and growing!" << std::endl;
}
return 0;
}
