Posts

How an electronic engineer placed in Samsung Company by struggling

Image
Subscribe  

Check whether a character is an alphabet or not.

import java.util.Scanner; public class Main {  public static void main(String[] args) {      Scanner sc = new Scanner(System.in);      boolean av = false;    System.out.println("Enter the Alphabet ");   char ch = sc.next().charAt(0);   for(int i = 'A'; i<='Z'; i++){       if(ch == i){            av = true;           break;           }   }   if(av ==false){for(int i = 'a'; i<='a'; i++){       if(ch == i){            av = true;           break;           }   }}         if(av==true){System.out.println(ch + " is an Alphabet");}   else{System.out.println(ch + " is not ...

CODING questions practice links

100 questions https://java2blog.com/java-coding-interview-questions/ 18 gfg java https://java2blog.com/java-coding-interview-questions/ 50 java q DSA also https://java2blog.com/java-coding-interview-questions/ 60 questions of java https://java2blog.com/java-coding-interview-questions/ category wise java coding q https://java2blog.com/java-coding-interview-questions/ companywise and category wise java coding q https://leetcode.com/problemset/all/ best practice platform gfg practice section by filtering company and concepts explore gfg practice section explore 10 website to more https://www.zdnet.com/education/computers-tech/practice-coding-problems/ 15 java imp but theoretically concept https://www.tutorialspoint.com/why-the-java-file-name-should-be-always-the-same-as-a-public-class-name https://igetintopc.com/adobe-photoshop-2021-portable-free-download/

interface in Java by lakshmanse

interface Intfac{    void see(); } class One implements Intfac{   public void wish(){     System.out.println("Hello users 👋"); } public void see(){   System.out.println("Hello users Can you 🙈 See"); } } class Main extends One {   public static void main(String[] args) {     System.out.println("Hello world!"); One obj = new One(); obj.wish(); obj.see();      } }

Microsoft hiring process explained

Image

who does what ? [ what is the difference between software developer and full stack developer]>>>

Image

A very big sum (long long int sum )

#include <iostream> using namespace std; int main() { int n; long long int sum=0; cin >> n; vector<int> arr(n); for(int arr_i = 0;arr_i < n;arr_i++) { cin >> arr[arr_i]; sum+=arr[arr_i]; } cout<<sum; return 0; }