Friday, 8 January 2021

Top 50 Linux Commands for SDET/Software QA and DevOps Interview question Set - 04? Linux Commands for Admin Profile 2021?


"Linux FUN FACTS"100% of the world’s 500 fastest supercomputers run Linux.

Let's learn Linux commands for SDET/QA/DevOps profile, do check previous posts with 40+ Linux commands and make your own cheat sheet with the entire list.
Happy Learning!

  Linux Commands Set-01 for SDET/DevOps INterview Questions

  Linux Commands Set-02 for SDET/DevOps

Linux Commands set-03 for SDET/DevOps Interview Questions

 45. Cron- set up scheduled tasks to run.
want to know more about cron job with examples: https://en.wikipedia.org/wiki/Cron#CRON_expression

46. nmcli – network management.
47. ping – send ICMP ECHO_REQUEST to network hosts.
48. traceroute Click Here For Answer
49. mtr – network diagnostic tool.
50. nslookup 
Click Here For Answer
51. host – perform DNS lookups in Linux.

Top 21 GIT interview questions: Click Here

 
52.
fdisk Click Here For Answer
53. wget – retrieve files over HTTP, HTTPS, FTP, and FTPS.
54. curl – transferring data using various network protocols. (supports more protocols than wget)

Know About DevOps-Click Here

 
55. dd – convert and copy files.
56. 
nc Click Here For Answer
57. 
parted – for creating and manipulating partition tables.

Top Kubernetes Commands-Click Here

 
58. blkid – command-line utility to locate/print block device attributes.
59. mkfs – build a Linux file system.
60. fsck – 
Click Here For Answer

  • What is Kali Linux:

Kali Linux is a Debian-based Linux distribution aimed at advanced Penetration Testing and Security Auditing. Kali Linux was released on the 13th March 2013 as a complete, top-to-bottom rebuild of BackTrack Linux, adhering completely to Debian development standards.
Refer the link to learn more on Kali Linux: https://www.kali.org/docs/introduction/what-is-kali-linux

  • ncdu – a disk utility for Unix systems.
  • touch – used to update the access date and/or modification date of a computer file or directory.

                                           

Linux Commands Set-01 for SDET/DevOps INterview Questions

  Linux Commands Set-02 for SDET/DevOps

Linux Commands set-03 for SDET/DevOps Interview Questions

 

What is LILO in Linux?

LILO (Linux Loader) is basically a bootloader for Linux that is used to load Linux into memory and start the OS. It is also known as a boot manager that facilitates a dual boot of a computer. It can function as either a master boot program or secondary boot program and performs various functions such as locating kernel, identifying other supporting programs, loading memory, and starting the kernel. If you want to use Linux OS, then you need to install a special bootloader i.e., LILO for it as it allows fast boot of Linux OS.

Python Interview Question Set for QAE - SDET - SDE:
https://automationreinvented.blogspot.com/search/label/Python

 API Testing Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Rest-API

 
Kubernetes Interview Question Set
https://automationreinvented.blogspot.com/search/label/Kubernetes

 
Docker Interview Question Set
https://automationreinvented.blogspot.com/2020/02/top-18-docker-commands-for-aytomation.html

 
Linux Interview question Set
https://automationreinvented.blogspot.com/search/label/Linux

 
Automation Testing/SDET Framework Design
https://automationreinvented.blogspot.com/search/label/FrameworkDesign


Java Related Interview Question Set

https://automationreinvented.blogspot.com/search/label/Java


GIT Interview Question Set:
https://automationreinvented.blogspot.com/search/label/GIT


Coding Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Coding%20Questions

Monday, 4 January 2021

Java Interview Questions for SDET/Automation Testing? MUST KNOW CONCEPT

 


For Automation Testing and SDET profile, two concepts of Java are very important: List & Array. Let's try to explore some of the concepts below. 

Check out the questions from 1 to 10 below:

Question set 21 to 30:
 
Question set 31 to 40:
 Question Set 31-40 

Question set 41 to 50:

Let's assume we have below arraylist:


ArrayList<String> arrlst = new ArrayList<>();


  •    How to convert List to array and array to list?

Click here for Answer

  •   How to remove a SubList from a List in Java ?

    Ans: List.subList(int fromIndex, int toIndex).clear()


  • How to do Sorting of An Array?

    Click Here For Answer 


  •  Difference between ArrayList and HashMap in Java?

    ==>ArrayList implement List Interface while HashMap is an implementation of Map interface.

    ==>
    ArrayList maintains the insertion order while HashMap does not maintain insertion order.

    ==>
    ArrayList allows duplicate elements while HashMap doesn’t allow duplicate keys but does allow duplicate values.


  • How to add element  to arrlst?

      Ans: arrlst.add(element);  

  •  Does list maintains insertion order?

    Ans:
    Both the ArrayList and LinkedList
    maintain the elements insertion order which means while displaying ArrayList and LinkedList elements the result set would be having the same order in which the elements got inserted into the List.


    Top Kubernetes Commands-Click Here


  • How to get length of Array and List?

 Click Here For Answer

  •     How to add element at any index?

     Ans: arr.add(index,element);

  • Selenium Interview Question SET-1
  • Selenium Interview Question SET-2
  • Selenium Interview Questions SET-3
  • Selenium Interview Question SET-4
 

*******************************************************************
For any doubts or career guidance, reach out to me 

****************************************

TOP 15 BDD - CUCUMBER Interview Q&A


************************************************

✍️AUTHORLinkedIn Profile

************************************************

Learn (API-Microservice)Testing+ Selenium UI Automation-SDET with Self Paced Videos prepared by FAANG employees and LIVE Doubt Session 

SDET TRANING VIDEOS AVAILABLE with Live Doubt Session(course-1 below,API TRaining Videos With Class Notes and Coding Set) and (API+UI, both course-1 & 2 below) Check Training Page for Course Content or reach out @whatsapp +91-9619094122. 
This includes classnotes, 300+ interview questions, 3 projects, Java Coding question set for product companies along with career guidance from FAANG employees for Automation and SDET.

For more details whatsapp : https://lnkd.in/dnBWDM33

*************************************************

SeleniumWebdriver Automation Testing Interview Questions:

https://automationreinvented.blogspot.com/search/label/SeleniumWebdriver

API Testing Interview Question Set:

https://automationreinvented.blogspot.com/2022/03/top-80-api-testing-interview-questions.html

DevOps Interview Q&A:

https://automationreinvented.blogspot.com/2021/11/top-11-devops-interview-questions-and.html 

Kubernetes Interview Question Set

https://automationreinvented.blogspot.com/search/label/Kubernetes

Docker Interview Question Set

https://automationreinvented.blogspot.com/Docker

Linux Interview question Set

https://automationreinvented.blogspot.com/search/label/Linux

Automation Testing/SDET Framework Design

https://automationreinvented.blogspot.com/search/label/FrameworkDesign

Java Related Interview Question Set

https://automationreinvented.blogspot.com/search/label/Java

GIT Interview Question Set:

https://automationreinvented.blogspot.com/2021/09/top-40-git-interview-questions-and.html

Coding Interview Question Set:

https://automationreinvented.blogspot.com/search/label/Coding%20Questions

Mobile Testing Interview Question Set:

https://automationreinvented.blogspot.com/search/label/Mobile%20Testing

Python Interview Question Set for QAE - SDET - SDE:

https://automationreinvented.blogspot.com/search/label/Python


 


 


All Time Popular Posts

Most Featured Post

𝗦𝘁𝗶𝗹𝗹 𝘀𝘁𝗿𝘂𝗴𝗴𝗹𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗝𝗮𝘃𝗮 𝗰𝗼𝗱𝗶𝗻𝗴 𝗿𝗼𝘂𝗻𝗱𝘀?

❓ 𝗦𝘁𝗶𝗹𝗹 𝘀𝘁𝗿𝘂𝗴𝗴𝗹𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗝𝗮𝘃𝗮 𝗰𝗼𝗱𝗶𝗻𝗴 𝗿𝗼𝘂𝗻𝗱𝘀? The issue isn’t your logic—it’s the lack of pattern recogniti...