PE&D (ECC) – Petroleum Engineering and Development (Expec Computer Center) interview مقابلة أرامكو

الموضوع في 'أرامكو، سابك | Aramco, Sabic' بواسطة Error_Handler, بتاريخ ‏31 مايو 2022.

  1. Error_Handler

    Error_Handler عضو

    انضم:
    ‏21 مايو 2022
    المشاركات:
    2
    التخصص:
    Software Engineering
    الجامعة:
    KFUPM
    سنة التخرج:
    2022
    الجنس:
    ذكر
    التقييمات:
    +0 / 0 / -0
    #1 Error_Handler, ‏31 مايو 2022
    آخر تعديل: ‏31 مايو 2022
    بسم الله الرحمن الرحيم
    دعواتكم لي ولوالدي

    تخصصي Software Engineering
    تخصص دقيق Cybersecurity

    قسمت الاسئلة الى ١١ قسم:

    ١- اسئلة شخصية
    ٢- اسئلة الـ Cybersecurity
    ٣- اسئلة الـ Networking
    ٤- اسئلة الـ Operating System
    ٥- اسئلة هندسة البرمجيات
    ٦- اسئلة الـ Python
    ٧- اسئلة الـ Java
    ٨- اسئلة الـ JavaScript
    ٩- اسئلة الـ Backend
    ١٠- اسئلة الـ Database
    ١١- اسئلة الـ Testing
    Personality
    Talk about yourself

    هنا اجابتي كانت طويله تضمنت:
    1- اسمي
    2- تخصصي
    3- معدلي
    4- متى متوقع تخرجي (وقتها كان باقي لي شهرين واتخرج)
    5- وين تدربت
    6- مشروع التخرج ما تكلمت عنه لأني كنت باقي ادرس بس احتمال كبير يسألونك عنه
    7- مدحت نفسي شوي
    8- بيسألونك عن الأنشطة والإنجازات اللي في السي في حقك
    9- سألوني عن الأنشطة اللي سويتها في نادي الحاسب بما أني كنت ذاكره في السي في

    وذكرت بعدها ان الجامعة تقدم عدة تخصصات دقيقة بإمكان الطالب الالتحاق بها بجانب تخصصه الأساسي

    البرامج المتاحة لتخصصي كانت (امن سيبراني، ذكاء اصطناعي)

    بناءً على اجابتي هذي تطرقوا للسؤال الثاني اللي هو

    Where do you see yourself among these fields
    ————————————————


    Cybersecurity
    Why did you chose Cybersecurity
    ————————————————
    What is encryption
    ————————————————
    What are types of encryption schemes
    النوعين هم symmetric وAsymmetric
    لازم تعرف كل واحد منهم والفرق بينهم
    ————————————————
    Give an application of Asymmetric encryption

    RSA encryption, where it uses both of private and public key for secure encryption
    ————————————————
    What is hashing
    ————————————————
    Algorithms of hashing

    MD4, MD6, SHA256, ....
    ————————————————
    What are the weaknesses of MD5

    It can generate the same digest for different inputs
    ————————————————
    When hashing should be used

    Storing passwords in a DB
    ————————————————
    How would you decrypt a hashed content

    Hashing is a one-way algorithm. Therefore, it cannot be decrypted or reversed within a reasonable time
    ————————————————
    What is best algorithm for hashing

    Secure Hashing Algorithm (SHA-256)
    ————————————————
    Mention some of the Cyber Attacks

    ذكرت عدة هجمات مثل

    1- XSS
    2- CSRF
    3- DoS
    4- SQL Injection
    5- Man-In-The-Middle
    ————————————————
    How to mitigate those cyber-attacks

    1- Sanitizing Inputs
    2- Secure Sessions
    3- include tokens
    4- Two Factor Authentication
    5- Limited requests to the server
    ————————————————
    If you are asking the user to enter a statement that is containing a greater than operation and you know that ">" is a dangerous symbol? what would you do
    ————————————————
    What is the meaning of Secure Software Development

    Considering security best practices from the beginning
    ————————————————


    Networking
    What tasks have you done with Wireshark
    ————————————————
    What are the network layers
    فيه نموذجين
    1- TCP/IP model
    2- OSI model
    اعرف طبقات كل نموذج واستعمالاته
    ————————————————
    What is the difference between Switch and Router

    السويتش يكون استعماله في الـ LAN
    الراوتر يكون استعماله في الـ WAN
    السويتش يكون استعماله في الطبقه ٢
    الرواتر يكون استعماله في الطبقه ٣
    ————————————————
    If you have two separate networks, what is the main thing for both in order to communicate

    Default Gateway
    ————————————————
    For streaming purposes, what would you use? TCP or UDP

    I will use UDP since it is fast in delivering packets
    ————————————————
    What is the network model
    ————————————————


    Operating System
    What are the differences between process and threads
    ————————————————
    What is the meaning of a deadlock
    ————————————————


    Software Engineering
    What are the requirements
    ————————————————
    What is the difference between functional and non-functional requirements
    ————————————————
    How can I test functional requirement
    ————————————————
    What is the difference between Agile and Waterfall? and if you have a clear requirements, which one of these methodologies will you choose
    ————————————————
    What is the development lifecycle
    ————————————————


    Python
    Is python considered as a case sensitive language

    Yes
    ————————————————
    What is difference between tuple and list in python
    ————————————————
    How can I use library in python
    ————————————————
    What kind of libraries have you used in python
    ————————————————
    How can you do cast in python
    ————————————————
    What is the inheritance in java
    ————————————————


    Java:
    What are the access modifiers in java? and what is the job of each one
    ————————————————
    What is object oriented in java
    ————————————————
    What is difference between array and linked list in java
    ————————————————
    How the element will be accessed in the linked list and how it will be accessed in the array
    ————————————————
    Why do we use sitter and getter method in java
    ————————————————
    What is the Polymorphism in java
    ————————————————


    JavaScript
    What was the frontend framework of the company I trained at
    ————————————————
    Have you worked before on angular

    No, but I can learn it as I learned other frameworks
    ————————————————


    Backend
    What do you know about the MVC model
    ————————————————


    Database
    How will you link two tables in a database

    By the foreign key
    ————————————————
    What is relational data base
    ————————————————
    What is difference between forging key and primary key
    ————————————————
    Give me query that can access the data in database
    ————————————————
    What is the key word that connect two tables
    ————————————————


    Testing
    What is difference between Blackbox and Whitebox
     
  2. Error_Handler

    Error_Handler عضو

    انضم:
    ‏21 مايو 2022
    المشاركات:
    2
    التخصص:
    Software Engineering
    الجامعة:
    KFUPM
    سنة التخرج:
    2022
    الجنس:
    ذكر
    التقييمات:
    +0 / 0 / -0
    المقابلة كانت مع شركة أرامكو والقسم كان
    PE&D ( ECC )
    Petroleum Engineering and Development ( EXPEC Computer Center )
     
جاري تحميل الصفحة...
مواضيع شبيهة - PE&D (ECC) – Petroleum Engineering Development (Expec Computer Center) interview مقابلة أرامكو
  1. Nass.Chm
    الردود:
    4
    المشاهدات:
    4,079
  2. KSA2030
    الردود:
    2
    المشاهدات:
    1,847
  3. PE-SALMAN
    الردود:
    11
    المشاهدات:
    5,411
  4. Alhathir554
    الردود:
    1
    المشاهدات:
    6,711
  5. Alhathir554
    الردود:
    2
    المشاهدات:
    3,850
  6. Turki_Alwoshail
    الردود:
    4
    المشاهدات:
    4,854
  7. Luffy-110
    الردود:
    1
    المشاهدات:
    5,200
  8. E_F_A_A
    الردود:
    13
    المشاهدات:
    12,257
  9. BIoKA
    الردود:
    0
    المشاهدات:
    522
  10. naa17
    الردود:
    0
    المشاهدات:
    841

مشاركة هذه الصفحة