Can anyone send management details to join java full stack developer course?

|
Niks1047 2022-09-17 07:22:54
Please give me a meeting id
Mursalim Ansariiii 2022-09-17 07:32:03
Anyone here from Java full stack 100% placement
Pabba Maneesha 2022-09-17 09:01:06
ansari 2022-09-17 07:21:19
Requirement :

(Full time freelancing )

Java developer

Experience :

6+ Year

Timing : 10 am to 7 pm

Package : 70 k per month

Location : WFH

vacancy : 3

contact
Number : 9-6-9-8-2,2,4,9,8,8

preferably India location

skill sets

Java

Micro services

Spring boot

Rest API

Pls post for freshers interviews

atish_nayak 2022-09-17 09:12:08
Search for pallindrome program!
sameer ali 2022-09-17 09:21:03
Any one from Java full stack venkatesh maipathi sir?
hussain8801 2022-09-17 09:26:32
Can anyone send management details to join java full stack developer course?
KK_01_K 2022-09-17 09:42:30
public class MyClass {
public static void main(String args[]) {
String name = “MADAM”;
System.out.println(“Reverse:: ” + new StringBuilder(name).reverse());
}
}
Phani Gamer 2022-09-17 09:45:43
KK_01_K 2022-09-17 09:42:30
public class MyClass {
public static void main(String args[]) {
String name = “MADAM”;
System.out.println(“Reverse:: ” + new StringBuilder(name).reverse());
}
}

How to write without using string builder…

KK_01_K 2022-09-17 10:06:58
Phani Gamer 2022-09-17 09:45:43
How to write without using string builder…

public class MyClass {
public static void main(String args[]) {
String name = “123”;
int i = 0, j = name.length()-1;
char[] duplicateStrArr = name.toCharArray();
while(i < j) {
char chr = duplicateStrArr[i];
duplicateStrArr[i] = duplicateStrArr[j];
duplicateStrArr[j] = chr;
++i; –j;
}
System.out.println(“Reverse:: ” + new String(duplicateStrArr));
}
}

Vitthal Bhosale 2022-09-17 10:38:58
You’re welcome
M®. VINNY 2022-09-17 10:51:47
Anyone joining python 11Am class by KVR sir??
justin 2022-09-17 11:12:28
Any one pls send the… yesterday class link for core java
justin 2022-09-17 11:13:04
By kishan sir
Harapriya Rout 2022-09-17 11:23:01
Anyone joining Oracle 11am class by…. Vijay sir….
HeyDMC 2022-09-17 11:26:49
I joined 4 pm Oracle
HeyDMC 2022-09-17 11:27:34
Today is 2nd class😁
Harapriya Rout 2022-09-17 11:30:20
Ok
ansari 2022-09-17 11:52:03
Pabba Maneesha 2022-09-17 09:01:06
Pls post for freshers interviews

Ok

Shobha K 2022-09-17 12:01:22
I want to learn big data course any training please let me know
Murali Krishna Eerla 2022-09-17 12:11:07
C false
$aikirañ Reddy 2022-09-17 12:30:00
B
Pandu1622 2022-09-17 12:34:59
M®. VINNY 2022-09-17 10:51:47
Anyone joining python 11Am class by KVR sir??

Yes

Chaudhary,s 2022-09-17 13:04:03
Can anyone here from 2: 00 pm , devsecops batch
KK_01_K 2022-09-17 13:37:11
ClassNotFoundExcecption :-

This occurs when the Class Loader is trying to load classes using
Class.forName(),
ClassLoader.loadClass() or ClassLoader.findSystemClass()
but no definition for the class with the specified name is found.

The java.lang.ClassNotFoundException is a checked exception in java so it must be explicitly handled in methods which can throw this exception – either by using a try-catch block or by throwing it using the throws clause.

public class ClassNotFoundException extends ReflectiveOperationException

Ex:-
when a JDBC driver is attempted to be loaded using Class.forName() and the driver’s JAR file is not present in the classpath.

Sufyan_5132 2022-09-17 13:39:14
any group for java coding?
where we can practice
Dhruv999999 2022-09-17 13:58:30
Anirudhhhhhhhh 2022-09-16 21:11:34
Is AWS is a prerequisite of devops?

No

Pandu1622 2022-09-17 14:11:58
M®. VINNY 2022-09-17 10:51:47
Anyone joining python 11Am class by KVR sir??

@mr.vinny i am joined

C V 2022-09-17 14:27:47
Manipulation with ArrayList is slow because it internally uses an array. If any element is removed from the array, all the other elements are shifted in memory but Manipulation with LinkedList is faster than ArrayList because it uses a doubly linked list, so no bit shifting is required in memory.
KK_01_K 2022-09-17 14:45:31
C V 2022-09-17 14:27:47
Manipulation with ArrayList is slow because it internally uses an array. If any element is removed from the array, all the other elements are shifted in memory but Manipulation with LinkedList is faster than ArrayList because it uses a doubly linked list, so no bit shifting is required in memory.

when an ArrayList is initialized, a default capacity of 10.
No default capacity in a LinkedList. In LinkedList, an empty list is created when a LinkedList is initialised.

Additional memory is required for LinkedList(LL) in order to store the nextNode and element whereas ArrayList(AR) doesn’t require any extra memory.

Internal Data structure:
AL -> dynamic array
LL -> Doubly Linked List

ArrayList only implements List, LinkedList implements Both List and Queue.

O(1) time complexity for a search operation and a linked list has O(n/2) complexity. 

To Explore:-
LL-> descendingIterator()😊

Avinash Shrivastava 2022-09-17 14:47:23
No class defination error?
Avinash Shrivastava 2022-09-17 14:48:10
How to use sessions in spring boot
Niks1047 2022-09-17 15:02:55
Please share me hk sir’s meeting id
@ # 2022-09-17 15:38:15
What is main difference between save () & persist () in hibernate
@ # 2022-09-17 15:38:46
N what is difference between get() & load() method
Aravind901 2022-09-17 16:31:26
SankarKarra 2022-09-16 12:12:07
package com.ex;
public class ChooseOptionEX {
public static void main(String[] args) {
System.out.println(10+20+”Cap”);
System.out.println(“Cap”+10+20);
}
}
//choose one option.

A 1020Cap
Cap1020

B 30Cap
Cap30

C 30Cap
Cap1020

D Cap1020
Cap30

C
If both arguments are number + operater act as addition
If atleast one argument is string + operater act as string concatenation

narendramane 2022-09-17 16:35:40
javalatestupdates-45011.jpg
Enroll Now: https://bit.ly/3xvElqb
Free Demo On Advanced Java by Mr. Nataraj.
Demo On: 22nd September @ 4:00 PM (IST)
Join us on Telegram: https://t.me/javalatestupdates
AeBLaa 2022-09-17 16:50:48
narendramane 2022-09-17 16:35:40
javalatestupdates-45011.jpg
Enroll Now: https://bit.ly/3xvElqb
Free Demo On Advanced Java by Mr. Nataraj.
Demo On: 22nd September @ 4:00 PM (IST)
Join us on Telegram: https://t.me/javalatestupdates

4.00 or 9.00

Ratna Bhukya 2022-09-17 16:51:31
sameer ali 2022-09-17 09:21:03
javalatestupdates-45011.jpg
Any one from Java full stack venkatesh maipathi sir?

Yes iam

Hamaad Afraan 2022-09-17 17:12:43
narendramane 2022-09-17 16:35:40
javalatestupdates-45011.jpg
Enroll Now: https://bit.ly/3xvElqb
Free Demo On Advanced Java by Mr. Nataraj.
Demo On: 22nd September @ 4:00 PM (IST)
Join us on Telegram: https://t.me/javalatestupdates

What is servlet?

Sambhav Dash 2022-09-17 17:19:21
Hamaad Afraan 2022-09-17 17:12:43
javalatestupdates-45011.jpg
What is servlet?

It’s backend technology of java, part of java enterprise edition.

Sai Krishna 2022-09-17 17:21:01
Is anyone available here who joined venkatesh mansani sir advanced java 4pm batch which is started in August month
Sachin 2022-09-17 18:00:45
Anyone have dsa
Keshav Gupta 2022-09-17 18:03:08
Anyone have DSA then plsss ping me
Anirudhhhhhhhh 2022-09-17 18:18:56
Dhruv999999 2022-09-17 13:58:30
javalatestupdates-45011.jpg
No

Ok Thanqq

Sud 2022-09-17 18:31:54
Anybody here from 7:30 PM java batch by Venkatesh sir?
Harshitha Jabba 2022-09-17 18:34:56
Yes
Saiteja 2022-09-17 18:40:03
Hamaad Afraan 2022-09-17 17:12:43
javalatestupdates-45011.jpg
What is servlet?

it is specification used to develop web-applications by using java lang

Vidhant Bansal 2022-09-17 18:46:51
Anybody with Core Java Venkatesh Sir 7:30 pm recordings? Ping me
sushma varma1317 2022-09-17 18:47:13
Only 10 vedios available
KK_01_K 2022-09-17 19:02:09
Avinash Shrivastava 2022-09-17 14:47:23
javalatestupdates-45011.jpg
No class defination error?

NoClassDefFoundError:-
This occurs when compiler has successfully compiled the class, but the Class Loader is not able to locate the class file at the runtime.

|